-
Notifications
You must be signed in to change notification settings - Fork 4
2.9 Invoice statistics
Aliaksandr Krasitski edited this page Aug 28, 2015
·
1 revision
You have a possibility to receive invoicing data for a given account alias for a given month. Note that the data returned are usage estimates only, and does not represent an actual bill.
InvoiceData data = invoiceService.getInvoice(2015, 5);
Calendar previousMonthDate = Calendar.getInstance();
previousMonthDate.add(Calendar.MONTH, -2);
InvoiceData data = invoiceService.getInvoice(previousMonthDate.getTime(), "accountAlias");
InvoiceData data = invoiceService.getInvoice(LocalDate.now().minusMonths(3));
- [Getting Started] (./1.-Getting-started)
- User Guide - Basic Functions
- Server management
- Server actions
- Managing groups
- Group actions
- Searching templates
- Searching data centers
- Invoice statistics
- SDK configuration
- User Guide - Advanced Functions
- Configuring remote servers over SSH
- Defining a group hierarchy
- Billing statistics
- Server monitoring statistics
- Policies management
- Shared load balancers management
- User Guide - Framework adapters