Skip to main content

community_gallery_image_versions

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

Overview

Namecommunity_gallery_image_versions
TypeResource
Idazure.compute.community_gallery_image_versions

Fields

NameDatatypeDescription
nametextResource name
artifact_tagstextfield from the properties object
disclaimertextfield 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
identifiertextThe identifier information of community gallery.
locationtextResource location
publicGalleryNametextfield from the properties object
published_datetextfield from the properties object
storage_profiletextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource type

Methods

NameAccessible byRequired ParamsDescription
getSELECTgalleryImageName, galleryImageVersionName, location, publicGalleryName, subscriptionIdGet a community gallery image version.
listSELECTgalleryImageName, location, publicGalleryName, subscriptionIdList community gallery image versions inside an image.

SELECT examples

List community gallery image versions inside an image.

SELECT
name,
artifact_tags,
disclaimer,
end_of_life_date,
exclude_from_latest,
galleryImageName,
galleryImageVersionName,
identifier,
location,
publicGalleryName,
published_date,
storage_profile,
subscriptionId,
type
FROM azure.compute.vw_community_gallery_image_versions
WHERE galleryImageName = '{{ galleryImageName }}'
AND location = '{{ location }}'
AND publicGalleryName = '{{ publicGalleryName }}'
AND subscriptionId = '{{ subscriptionId }}';