Skip to main content

community_galleries

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

Overview

Namecommunity_galleries
TypeResource
Idazure.compute.community_galleries

Fields

NameDatatypeDescription
nametextResource name
artifact_tagstextfield from the properties object
community_metadatatextfield from the properties object
disclaimertextfield from the properties object
identifiertextThe identifier information of community gallery.
locationtextResource location
publicGalleryNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource type

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, publicGalleryName, subscriptionIdGet a community gallery by gallery public name.

SELECT examples

Get a community gallery by gallery public name.

SELECT
name,
artifact_tags,
community_metadata,
disclaimer,
identifier,
location,
publicGalleryName,
subscriptionId,
type
FROM azure.compute.vw_community_galleries
WHERE location = '{{ location }}'
AND publicGalleryName = '{{ publicGalleryName }}'
AND subscriptionId = '{{ subscriptionId }}';