UNPKG

@azure/arm-appservice

Version:
121 lines 4.23 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { setContinuationToken } from "../pagingHelper.js"; import * as coreClient from "@azure/core-client"; import * as Mappers from "../models/mappers.js"; import * as Parameters from "../models/parameters.js"; /// <reference lib="esnext.asynciterable" /> /** Class containing GetUsagesInLocation operations. */ export class GetUsagesInLocationImpl { client; /** * Initialize a new instance of the class GetUsagesInLocation class. * @param client Reference to the service client */ constructor(client) { this.client = client; } /** * List usages in cores for all skus used by a subscription in a given location, for a specific quota * type. * @param location The name of the Azure region. * @param options The options parameters. */ list(location, options) { const iter = this.listPagingAll(location, options); return { next() { return iter.next(); }, [Symbol.asyncIterator]() { return this; }, byPage: (settings) => { if (settings?.maxPageSize) { throw new Error("maxPageSize is not supported by this operation."); } return this.listPagingPage(location, options, settings); }, }; } async *listPagingPage(location, options, settings) { let result; let continuationToken = settings?.continuationToken; if (!continuationToken) { result = await this._list(location, options); const page = result.value || []; continuationToken = result.nextLink; setContinuationToken(page, continuationToken); yield page; } while (continuationToken) { result = await this._listNext(location, continuationToken, options); continuationToken = result.nextLink; const page = result.value || []; setContinuationToken(page, continuationToken); yield page; } } async *listPagingAll(location, options) { for await (const page of this.listPagingPage(location, options)) { yield* page; } } /** * List usages in cores for all skus used by a subscription in a given location, for a specific quota * type. * @param location The name of the Azure region. * @param options The options parameters. */ _list(location, options) { return this.client.sendOperationRequest({ location, options }, listOperationSpec); } /** * ListNext * @param location The name of the Azure region. * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ _listNext(location, nextLink, options) { return this.client.sendOperationRequest({ location, nextLink, options }, listNextOperationSpec); } } // Operation Specifications const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); const listOperationSpec = { path: "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/usages", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.CsmUsageQuotaCollection, }, default: { bodyMapper: Mappers.DefaultErrorResponse, }, }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.$host, Parameters.subscriptionId, Parameters.location1], headerParameters: [Parameters.accept], serializer, }; const listNextOperationSpec = { path: "{nextLink}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.CsmUsageQuotaCollection, }, default: { bodyMapper: Mappers.DefaultErrorResponse, }, }, urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.nextLink, Parameters.location1, ], headerParameters: [Parameters.accept], serializer, }; //# sourceMappingURL=getUsagesInLocation.js.map