import * as msRest from "@azure/ms-rest-js"; import * as Models from "../models"; import { ComputeManagementClientContext } from "../computeManagementClientContext"; /** Class representing a UsageOperations. */ export declare class UsageOperations { private readonly client; /** * Create a UsageOperations. * @param {ComputeManagementClientContext} client Reference to the service client. */ constructor(client: ComputeManagementClientContext); /** * Gets, for the specified location, the current compute resource usage information as well as the * limits for compute resources under the subscription. * @param location The location for which resource usage is queried. * @param [options] The optional parameters * @returns Promise */ list(location: string, options?: msRest.RequestOptionsBase): Promise; /** * @param location The location for which resource usage is queried. * @param callback The callback */ list(location: string, callback: msRest.ServiceCallback): void; /** * @param location The location for which resource usage is queried. * @param options The optional parameters * @param callback The callback */ list(location: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; /** * Gets, for the specified location, the current compute resource usage information as well as the * limits for compute resources under the subscription. * @param nextPageLink The NextLink from the previous successful call to List operation. * @param [options] The optional parameters * @returns Promise */ listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback */ listNext(nextPageLink: string, callback: msRest.ServiceCallback): void; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param options The optional parameters * @param callback The callback */ listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; } //# sourceMappingURL=usageOperations.d.ts.map