Skip to main content

shared_gallery_image_versions

Creates, updates, deletes, gets or lists a shared_gallery_image_versions resource.

Overview

Nameshared_gallery_image_versions
TypeResource
Idazure.compute.shared_gallery_image_versions

Fields

NameDatatypeDescription
artifact_tagstextfield from the properties object
end_of_life_datetextfield from the properties object
exclude_from_latesttextfield from the properties object
galleryImageNametextfield from the properties object
galleryImageVersionNametextfield from the properties object
galleryUniqueNametextfield from the properties object
identifiertextThe identifier information of shared gallery.
locationtextfield from the properties object
published_datetextfield from the properties object
storage_profiletextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTgalleryImageName, galleryImageVersionName, galleryUniqueName, location, subscriptionIdGet a shared gallery image version by subscription id or tenant id.
listSELECTgalleryImageName, galleryUniqueName, location, subscriptionIdList shared gallery image versions by subscription id or tenant id.

SELECT examples

List shared gallery image versions by subscription id or tenant id.

SELECT
artifact_tags,
end_of_life_date,
exclude_from_latest,
galleryImageName,
galleryImageVersionName,
galleryUniqueName,
identifier,
location,
published_date,
storage_profile,
subscriptionId
FROM azure.compute.vw_shared_gallery_image_versions
WHERE galleryImageName = '{{ galleryImageName }}'
AND galleryUniqueName = '{{ galleryUniqueName }}'
AND location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';