import * as msRest from "@azure/ms-rest-js"; import * as Models from "../models"; import { SubscriptionClientContext } from "../subscriptionClientContext"; /** Class representing a Operations. */ export declare class Operations { private readonly client; /** * Create a Operations. * @param {SubscriptionClientContext} client Reference to the service client. */ constructor(client: SubscriptionClientContext); /** * Lists all of the available Microsoft.Resources REST API operations. * @param [options] The optional parameters * @returns Promise */ list(options?: msRest.RequestOptionsBase): Promise; /** * @param callback The callback */ list(callback: msRest.ServiceCallback): void; /** * @param options The optional parameters * @param callback The callback */ list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; /** * Lists all of the available Microsoft.Resources REST API operations. * @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=operations.d.ts.map