/// <summary> /// Lists the transactions by customer id for given start date and end date. /// <see href="https://docs.microsoft.com/en-us/rest/api/consumption/" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='nextPageLink'> /// The NextLink from the previous successful call to List operation. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <IPage <Transaction> > ListByCustomerNextAsync(this ITransactionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByCustomerNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }
/// <summary> /// Lists the transactions by customer id for given start date and end date. /// <see href="https://docs.microsoft.com/en-us/rest/api/consumption/" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='billingAccountName'> /// billing Account Id. /// </param> /// <param name='customerName'> /// Customer name. /// </param> /// <param name='startDate'> /// Start date /// </param> /// <param name='endDate'> /// End date /// </param> /// <param name='filter'> /// May be used to filter by transaction kind. The filter supports 'eq', 'lt', /// 'gt', 'le', 'ge', and 'and'. It does not currently support 'ne', 'or', or /// 'not'. Tag filter is a key value pair string where key and value is /// separated by a colon (:). /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <IPage <Transaction> > ListByCustomerAsync(this ITransactionsOperations operations, string billingAccountName, string customerName, string startDate, string endDate, string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByCustomerWithHttpMessagesAsync(billingAccountName, customerName, startDate, endDate, filter, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }
/// <summary> /// Lists the transactions by invoice section name for given start date and end /// date. /// <see href="https://docs.microsoft.com/en-us/rest/api/billing/" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='billingAccountName'> /// billing Account Id. /// </param> /// <param name='billingProfileName'> /// Billing Profile Id. /// </param> /// <param name='invoiceSectionName'> /// InvoiceSection Id. /// </param> /// <param name='startDate'> /// Start date /// </param> /// <param name='endDate'> /// End date /// </param> /// <param name='filter'> /// May be used to filter by transaction kind. The filter supports 'eq', 'lt', /// 'gt', 'le', 'ge', and 'and'. It does not currently support 'ne', 'or', or /// 'not'. Tag filter is a key value pair string where key and value is /// separated by a colon (:). /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <TransactionListResult> ListByInvoiceSectionAsync(this ITransactionsOperations operations, string billingAccountName, string billingProfileName, string invoiceSectionName, string startDate, string endDate, string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByInvoiceSectionWithHttpMessagesAsync(billingAccountName, billingProfileName, invoiceSectionName, startDate, endDate, filter, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }
/// <summary> /// Get the transaction. /// <see href="https://docs.microsoft.com/en-us/rest/api/billing/" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='billingAccountName'> /// billing Account Id. /// </param> /// <param name='billingProfileName'> /// Billing Profile Id. /// </param> /// <param name='transactionName'> /// Transaction name. /// </param> /// <param name='startDate'> /// Start date /// </param> /// <param name='endDate'> /// End date /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <Transaction> GetAsync(this ITransactionsOperations operations, string billingAccountName, string billingProfileName, string transactionName, string startDate, string endDate, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(billingAccountName, billingProfileName, transactionName, startDate, endDate, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }
/// <summary> /// Lists the transactions for an invoice. Transactions include purchases, /// refunds and Azure usage charges. /// <see href="https://docs.microsoft.com/en-us/rest/api/billing/" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='billingAccountName'> /// The ID that uniquely identifies a billing account. /// </param> /// <param name='invoiceName'> /// The ID that uniquely identifies an invoice. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <IPage <Transaction> > ListByInvoiceAsync(this ITransactionsOperations operations, string billingAccountName, string invoiceName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByInvoiceWithHttpMessagesAsync(billingAccountName, invoiceName, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }
/// <summary> /// Lists the transactions by customer id for given start date and end date. /// <see href="https://docs.microsoft.com/en-us/rest/api/consumption/" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='billingAccountName'> /// billing Account Id. /// </param> /// <param name='customerName'> /// Customer name. /// </param> /// <param name='startDate'> /// Start date /// </param> /// <param name='endDate'> /// End date /// </param> /// <param name='filter'> /// May be used to filter by transaction kind. The filter supports 'eq', 'lt', /// 'gt', 'le', 'ge', and 'and'. It does not currently support 'ne', 'or', or /// 'not'. Tag filter is a key value pair string where key and value is /// separated by a colon (:). /// </param> public static IPage <Transaction> ListByCustomer(this ITransactionsOperations operations, string billingAccountName, string customerName, string startDate, string endDate, string filter = default(string)) { return(operations.ListByCustomerAsync(billingAccountName, customerName, startDate, endDate, filter).GetAwaiter().GetResult()); }
/// <summary> /// Lists the transactions by billing account name for given start and end /// date. /// <see href="https://docs.microsoft.com/en-us/rest/api/billing/" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='nextPageLink'> /// The NextLink from the previous successful call to List operation. /// </param> public static IPage <Transaction> ListByBillingAccountNext(this ITransactionsOperations operations, string nextPageLink) { return(operations.ListByBillingAccountNextAsync(nextPageLink).GetAwaiter().GetResult()); }
/// <summary> /// Get the transaction. /// <see href="https://docs.microsoft.com/en-us/rest/api/billing/" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='billingAccountName'> /// billing Account Id. /// </param> /// <param name='billingProfileName'> /// Billing Profile Id. /// </param> /// <param name='transactionName'> /// Transaction name. /// </param> /// <param name='startDate'> /// Start date /// </param> /// <param name='endDate'> /// End date /// </param> public static Transaction Get(this ITransactionsOperations operations, string billingAccountName, string billingProfileName, string transactionName, string startDate, string endDate) { return(operations.GetAsync(billingAccountName, billingProfileName, transactionName, startDate, endDate).GetAwaiter().GetResult()); }
/// <summary> /// Lists the transactions by invoice section name for given start date and end /// date. /// <see href="https://docs.microsoft.com/en-us/rest/api/billing/" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='billingAccountName'> /// billing Account Id. /// </param> /// <param name='billingProfileName'> /// Billing Profile Id. /// </param> /// <param name='invoiceSectionName'> /// InvoiceSection Id. /// </param> /// <param name='startDate'> /// Start date /// </param> /// <param name='endDate'> /// End date /// </param> /// <param name='filter'> /// May be used to filter by transaction kind. The filter supports 'eq', 'lt', /// 'gt', 'le', 'ge', and 'and'. It does not currently support 'ne', 'or', or /// 'not'. Tag filter is a key value pair string where key and value is /// separated by a colon (:). /// </param> public static TransactionListResult ListByInvoiceSection(this ITransactionsOperations operations, string billingAccountName, string billingProfileName, string invoiceSectionName, string startDate, string endDate, string filter = default(string)) { return(operations.ListByInvoiceSectionAsync(billingAccountName, billingProfileName, invoiceSectionName, startDate, endDate, filter).GetAwaiter().GetResult()); }
/// <summary> /// Lists the transactions by billing profile name for given start date and end /// date. /// <see href="https://docs.microsoft.com/en-us/rest/api/billing/" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='billingAccountName'> /// billing Account Id. /// </param> /// <param name='billingProfileName'> /// Billing Profile Id. /// </param> /// <param name='periodStartDate'> /// Start date /// </param> /// <param name='periodEndDate'> /// End date /// </param> /// <param name='filter'> /// May be used to filter by transaction kind. The filter supports 'eq', 'lt', /// 'gt', 'le', 'ge', and 'and'. It does not currently support 'ne', 'or', or /// 'not'. Tag filter is a key value pair string where key and value is /// separated by a colon (:). /// </param> public static TransactionListResult ListByBillingProfile(this ITransactionsOperations operations, string billingAccountName, string billingProfileName, string periodStartDate, string periodEndDate, string filter = default(string)) { return(operations.ListByBillingProfileAsync(billingAccountName, billingProfileName, periodStartDate, periodEndDate, filter).GetAwaiter().GetResult()); }
/// <summary> /// Lists the transactions for an invoice. Transactions include purchases, /// refunds and Azure usage charges. /// <see href="https://docs.microsoft.com/en-us/rest/api/billing/" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='billingAccountName'> /// The ID that uniquely identifies a billing account. /// </param> /// <param name='invoiceName'> /// The ID that uniquely identifies an invoice. /// </param> public static IPage <Transaction> ListByInvoice(this ITransactionsOperations operations, string billingAccountName, string invoiceName) { return(operations.ListByInvoiceAsync(billingAccountName, invoiceName).GetAwaiter().GetResult()); }