UNPKG

@azure/arm-compute

Version:
25 lines 1.87 kB
import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { CommunityGalleryImageVersion, CommunityGalleryImageVersionsListOptionalParams, CommunityGalleryImageVersionsGetOptionalParams, CommunityGalleryImageVersionsGetResponse } from "../models/index.js"; /** Interface representing a CommunityGalleryImageVersions. */ export interface CommunityGalleryImageVersions { /** * List community gallery image versions inside an 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. */ list(location: string, publicGalleryName: string, galleryImageName: string, options?: CommunityGalleryImageVersionsListOptionalParams): PagedAsyncIterableIterator<CommunityGalleryImageVersion>; /** * Get a community gallery image version. * @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 galleryImageVersionName The name of the community gallery image version. 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, publicGalleryName: string, galleryImageName: string, galleryImageVersionName: string, options?: CommunityGalleryImageVersionsGetOptionalParams): Promise<CommunityGalleryImageVersionsGetResponse>; } //# sourceMappingURL=communityGalleryImageVersions.d.ts.map