UNPKG

@azure/arm-compute

Version:
170 lines 6.35 kB
"use strict"; /* * 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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.CommunityGalleryImagesImpl = void 0; const tslib_1 = require("tslib"); const pagingHelper_js_1 = require("../pagingHelper.js"); const coreClient = tslib_1.__importStar(require("@azure/core-client")); const Mappers = tslib_1.__importStar(require("../models/mappers.js")); const Parameters = tslib_1.__importStar(require("../models/parameters.js")); /// <reference lib="esnext.asynciterable" /> /** Class containing CommunityGalleryImages operations. */ class CommunityGalleryImagesImpl { client; /** * Initialize a new instance of the class CommunityGalleryImages class. * @param client Reference to the service client */ constructor(client) { this.client = client; } /** * List community gallery images inside a gallery. * @param location The name of Azure region. * @param publicGalleryName The public name of the community gallery. * @param options The options parameters. */ list(location, publicGalleryName, options) { const iter = this.listPagingAll(location, publicGalleryName, 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, publicGalleryName, options, settings); }, }; } async *listPagingPage(location, publicGalleryName, options, settings) { let result; let continuationToken = settings?.continuationToken; if (!continuationToken) { result = await this._list(location, publicGalleryName, options); let page = result.value || []; continuationToken = result.nextLink; (0, pagingHelper_js_1.setContinuationToken)(page, continuationToken); yield page; } while (continuationToken) { result = await this._listNext(location, publicGalleryName, continuationToken, options); continuationToken = result.nextLink; let page = result.value || []; (0, pagingHelper_js_1.setContinuationToken)(page, continuationToken); yield page; } } async *listPagingAll(location, publicGalleryName, options) { for await (const page of this.listPagingPage(location, publicGalleryName, options)) { yield* page; } } /** * List community gallery images inside a gallery. * @param location The name of Azure region. * @param publicGalleryName The public name of the community gallery. * @param options The options parameters. */ _list(location, publicGalleryName, options) { return this.client.sendOperationRequest({ location, publicGalleryName, options }, listOperationSpec); } /** * Get a community gallery image. * @param location The name of Azure region. * @param publicGalleryName The public name of the community gallery. * @param galleryImageName The name of the community gallery image definition. * @param options The options parameters. */ get(location, publicGalleryName, galleryImageName, options) { return this.client.sendOperationRequest({ location, publicGalleryName, galleryImageName, options }, getOperationSpec); } /** * ListNext * @param location The name of Azure region. * @param publicGalleryName The public name of the community gallery. * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ _listNext(location, publicGalleryName, nextLink, options) { return this.client.sendOperationRequest({ location, publicGalleryName, nextLink, options }, listNextOperationSpec); } } exports.CommunityGalleryImagesImpl = CommunityGalleryImagesImpl; // Operation Specifications const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); const listOperationSpec = { path: "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.CommunityGalleryImageList, }, default: { bodyMapper: Mappers.CloudError, }, }, queryParameters: [Parameters.apiVersion3], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.location, Parameters.publicGalleryName, ], headerParameters: [Parameters.accept], serializer, }; const getOperationSpec = { path: "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.CommunityGalleryImage, }, default: { bodyMapper: Mappers.CloudError, }, }, queryParameters: [Parameters.apiVersion3], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.location, Parameters.publicGalleryName, Parameters.galleryImageName, ], headerParameters: [Parameters.accept], serializer, }; const listNextOperationSpec = { path: "{nextLink}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.CommunityGalleryImageList, }, default: { bodyMapper: Mappers.CloudError, }, }, urlParameters: [ Parameters.$host, Parameters.nextLink, Parameters.subscriptionId, Parameters.location, Parameters.publicGalleryName, ], headerParameters: [Parameters.accept], serializer, }; //# sourceMappingURL=communityGalleryImages.js.map