Package version:

Interface SharedGalleryImageVersions

Interface representing a SharedGalleryImageVersions.

interface SharedGalleryImageVersions {
    get(location: string, galleryUniqueName: string, galleryImageName: string, galleryImageVersionName: string, options?: SharedGalleryImageVersionsGetOptionalParams): Promise<SharedGalleryImageVersion>;
    list(location: string, galleryUniqueName: string, galleryImageName: string, options?: SharedGalleryImageVersionsListOptionalParams): PagedAsyncIterableIterator<SharedGalleryImageVersion>;
}

Methods

Methods

  • Get a shared gallery image version by subscription id or tenant id.

    Parameters

    • location: string

      Resource location.

    • galleryUniqueName: string

      The unique name of the Shared Gallery.

    • galleryImageName: string

      The name of the Shared Gallery Image Definition from which the Image Versions are to be listed.

    • galleryImageVersionName: string

      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: ..

    • Optionaloptions: SharedGalleryImageVersionsGetOptionalParams

      The options parameters.

    Returns Promise<SharedGalleryImageVersion>