Skip to main content

shared_galleries

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

Overview

Nameshared_galleries
TypeResource
Idazure.compute.shared_galleries

Fields

NameDatatypeDescription
artifact_tagstextfield from the properties object
galleryUniqueNametextfield from the properties object
identifiertextThe identifier information of shared gallery.
locationtextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTgalleryUniqueName, location, subscriptionIdGet a shared gallery by subscription id or tenant id.
listSELECTlocation, subscriptionIdList shared galleries by subscription id or tenant id.

SELECT examples

List shared galleries by subscription id or tenant id.

SELECT
artifact_tags,
galleryUniqueName,
identifier,
location,
subscriptionId
FROM azure.compute.vw_shared_galleries
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';