Skip to main content

shared_gallery_images

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

Overview

Nameshared_gallery_images
TypeResource
Idazure.compute.shared_gallery_images

Fields

NameDatatypeDescription
architecturetextfield from the properties object
artifact_tagstextfield from the properties object
disallowedtextfield 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
galleryUniqueNametextfield from the properties object
hyper_v_generationtextfield from the properties object
identifiertextThe identifier information of shared gallery.
locationtextfield from the properties object
os_statetextfield from the properties object
os_typetextfield from the properties object
privacy_statement_uritextfield from the properties object
purchase_plantextfield from the properties object
recommendedtextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTgalleryImageName, galleryUniqueName, location, subscriptionIdGet a shared gallery image by subscription id or tenant id.
listSELECTgalleryUniqueName, location, subscriptionIdList shared gallery images by subscription id or tenant id.

SELECT examples

List shared gallery images by subscription id or tenant id.

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