import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { ReservationsSummaries } from "../operationsInterfaces"; import { ConsumptionManagementClient } from "../consumptionManagementClient"; import { ReservationSummary, Datagrain, ReservationsSummariesListByReservationOrderOptionalParams, ReservationsSummariesListByReservationOrderAndReservationOptionalParams, ReservationsSummariesListOptionalParams } from "../models"; /** Class containing ReservationsSummaries operations. */ export declare class ReservationsSummariesImpl implements ReservationsSummaries { private readonly client; /** * Initialize a new instance of the class ReservationsSummaries class. * @param client Reference to the service client */ constructor(client: ConsumptionManagementClient); /** * Lists the reservations summaries for daily or monthly grain. * @param reservationOrderId Order Id of the reservation * @param grain Can be daily or monthly * @param options The options parameters. */ listByReservationOrder(reservationOrderId: string, grain: Datagrain, options?: ReservationsSummariesListByReservationOrderOptionalParams): PagedAsyncIterableIterator; private listByReservationOrderPagingPage; private listByReservationOrderPagingAll; /** * Lists the reservations summaries for daily or monthly grain. * @param reservationOrderId Order Id of the reservation * @param reservationId Id of the reservation * @param grain Can be daily or monthly * @param options The options parameters. */ listByReservationOrderAndReservation(reservationOrderId: string, reservationId: string, grain: Datagrain, options?: ReservationsSummariesListByReservationOrderAndReservationOptionalParams): PagedAsyncIterableIterator; private listByReservationOrderAndReservationPagingPage; private listByReservationOrderAndReservationPagingAll; /** * Lists the reservations summaries for the defined scope daily or monthly grain. * @param scope The scope associated with reservations summaries operations. This includes * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}' for BillingAccount scope (legacy), * and * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/billingProfiles/{billingProfileId}' * for BillingProfile scope (modern). * @param grain Can be daily or monthly * @param options The options parameters. */ list(scope: string, grain: Datagrain, options?: ReservationsSummariesListOptionalParams): PagedAsyncIterableIterator; private listPagingPage; private listPagingAll; /** * Lists the reservations summaries for daily or monthly grain. * @param reservationOrderId Order Id of the reservation * @param grain Can be daily or monthly * @param options The options parameters. */ private _listByReservationOrder; /** * Lists the reservations summaries for daily or monthly grain. * @param reservationOrderId Order Id of the reservation * @param reservationId Id of the reservation * @param grain Can be daily or monthly * @param options The options parameters. */ private _listByReservationOrderAndReservation; /** * Lists the reservations summaries for the defined scope daily or monthly grain. * @param scope The scope associated with reservations summaries operations. This includes * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}' for BillingAccount scope (legacy), * and * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/billingProfiles/{billingProfileId}' * for BillingProfile scope (modern). * @param grain Can be daily or monthly * @param options The options parameters. */ private _list; /** * ListByReservationOrderNext * @param reservationOrderId Order Id of the reservation * @param nextLink The nextLink from the previous successful call to the ListByReservationOrder method. * @param options The options parameters. */ private _listByReservationOrderNext; /** * ListByReservationOrderAndReservationNext * @param reservationOrderId Order Id of the reservation * @param reservationId Id of the reservation * @param nextLink The nextLink from the previous successful call to the * ListByReservationOrderAndReservation method. * @param options The options parameters. */ private _listByReservationOrderAndReservationNext; /** * ListNext * @param scope The scope associated with reservations summaries operations. This includes * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}' for BillingAccount scope (legacy), * and * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/billingProfiles/{billingProfileId}' * for BillingProfile scope (modern). * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ private _listNext; } //# sourceMappingURL=reservationsSummaries.d.ts.map