UNPKG

@azure/arm-compute

Version:
130 lines 4.4 kB
/* * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ 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 VirtualMachineSizes operations. */ export class VirtualMachineSizesImpl { client; /** * Initialize a new instance of the class VirtualMachineSizes class. * @param client Reference to the service client */ constructor(client) { this.client = client; } /** * This API is deprecated. Use [Resources * Skus](https://docs.microsoft.com/rest/api/compute/resourceskus/list) * @param location The name of 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); let page = result.value || []; continuationToken = result.nextLink; setContinuationToken(page, continuationToken); yield page; } while (continuationToken) { result = await this._listNext(location, continuationToken, options); continuationToken = result.nextLink; let page = result.value || []; setContinuationToken(page, continuationToken); yield page; } } async *listPagingAll(location, options) { for await (const page of this.listPagingPage(location, options)) { yield* page; } } /** * This API is deprecated. Use [Resources * Skus](https://docs.microsoft.com/rest/api/compute/resourceskus/list) * @param location The name of Azure region. * @param options The options parameters. */ _list(location, options) { return this.client.sendOperationRequest({ location, options }, listOperationSpec); } /** * ListNext * @param location The name of 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.Compute/locations/{location}/vmSizes", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.VirtualMachineSizeListResult, }, default: { bodyMapper: Mappers.CloudError, }, }, queryParameters: [Parameters.apiVersion], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.location, ], headerParameters: [Parameters.accept], serializer, }; const listNextOperationSpec = { path: "{nextLink}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.VirtualMachineSizeListResult, }, default: { bodyMapper: Mappers.CloudError, }, }, urlParameters: [ Parameters.$host, Parameters.nextLink, Parameters.subscriptionId, Parameters.location, ], headerParameters: [Parameters.accept], serializer, }; //# sourceMappingURL=virtualMachineSizes.js.map