Skip to main content

community_gallery_images

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

Overview

Namecommunity_gallery_images
TypeResource
Idazure.compute.community_gallery_images

Fields

NameDatatypeDescription
nametextResource name
architecturetextfield from the properties object
artifact_tagstextfield from the properties object
disallowedtextfield from the properties object
disclaimertextfield from the properties object
end_of_life_datetextfield from the properties object
eulatextfield from the properties object
featurestextfield from the properties object
galleryImageNametextfield from the properties object
hyper_v_generationtextfield from the properties object
identifiertextThe identifier information of community gallery.
locationtextResource location
os_statetextfield from the properties object
os_typetextfield from the properties object
privacy_statement_uritextfield from the properties object
publicGalleryNametextfield from the properties object
purchase_plantextfield from the properties object
recommendedtextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource type

Methods

NameAccessible byRequired ParamsDescription
getSELECTgalleryImageName, location, publicGalleryName, subscriptionIdGet a community gallery image.
listSELECTlocation, publicGalleryName, subscriptionIdList community gallery images inside a gallery.

SELECT examples

List community gallery images inside a gallery.

SELECT
name,
architecture,
artifact_tags,
disallowed,
disclaimer,
end_of_life_date,
eula,
features,
galleryImageName,
hyper_v_generation,
identifier,
location,
os_state,
os_type,
privacy_statement_uri,
publicGalleryName,
purchase_plan,
recommended,
subscriptionId,
type
FROM azure.compute.vw_community_gallery_images
WHERE location = '{{ location }}'
AND publicGalleryName = '{{ publicGalleryName }}'
AND subscriptionId = '{{ subscriptionId }}';