UNPKG

@azure/arm-compute

Version:
56 lines 3.41 kB
import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { SharedGalleryImageVersions } from "../operationsInterfaces/index.js"; import { ComputeManagementClient } from "../computeManagementClient.js"; import { SharedGalleryImageVersion, SharedGalleryImageVersionsListOptionalParams, SharedGalleryImageVersionsGetOptionalParams, SharedGalleryImageVersionsGetResponse } from "../models/index.js"; /** Class containing SharedGalleryImageVersions operations. */ export declare class SharedGalleryImageVersionsImpl implements SharedGalleryImageVersions { private readonly client; /** * Initialize a new instance of the class SharedGalleryImageVersions class. * @param client Reference to the service client */ constructor(client: ComputeManagementClient); /** * List shared gallery image versions by subscription id or tenant id. * @param location The name of Azure region. * @param galleryUniqueName The unique name of the Shared Gallery. * @param galleryImageName The name of the Shared Gallery Image Definition from which the Image * Versions are to be listed. * @param options The options parameters. */ list(location: string, galleryUniqueName: string, galleryImageName: string, options?: SharedGalleryImageVersionsListOptionalParams): PagedAsyncIterableIterator<SharedGalleryImageVersion>; private listPagingPage; private listPagingAll; /** * List shared gallery image versions by subscription id or tenant id. * @param location The name of Azure region. * @param galleryUniqueName The unique name of the Shared Gallery. * @param galleryImageName The name of the Shared Gallery Image Definition from which the Image * Versions are to be listed. * @param options The options parameters. */ private _list; /** * Get a shared gallery image version by subscription id or tenant id. * @param location The name of Azure region. * @param galleryUniqueName The unique name of the Shared Gallery. * @param galleryImageName The name of the Shared Gallery Image Definition from which the Image * Versions are to be listed. * @param galleryImageVersionName The name of the gallery image version to be created. Needs to follow * semantic version name pattern: The allowed characters are digit and period. Digits must be within * the range of a 32-bit integer. Format: <MajorVersion>.<MinorVersion>.<Patch> * @param options The options parameters. */ get(location: string, galleryUniqueName: string, galleryImageName: string, galleryImageVersionName: string, options?: SharedGalleryImageVersionsGetOptionalParams): Promise<SharedGalleryImageVersionsGetResponse>; /** * ListNext * @param location The name of Azure region. * @param galleryUniqueName The unique name of the Shared Gallery. * @param galleryImageName The name of the Shared Gallery Image Definition from which the Image * Versions are to be listed. * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ private _listNext; } //# sourceMappingURL=sharedGalleryImageVersions.d.ts.map