community_galleries
Creates, updates, deletes, gets or lists a community_galleries
resource.
Overview
Name | community_galleries |
Type | Resource |
Id | azure.compute.community_galleries |
Fields
- vw_community_galleries
- community_galleries
Name | Datatype | Description |
---|---|---|
name | text | Resource name |
artifact_tags | text | field from the properties object |
community_metadata | text | field from the properties object |
disclaimer | text | field from the properties object |
identifier | text | The identifier information of community gallery. |
location | text | Resource location |
publicGalleryName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type |
Name | Datatype | Description |
---|---|---|
name | string | Resource name |
identifier | object | The identifier information of community gallery. |
location | string | Resource location |
properties | object | Describes the properties of a community gallery. |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, publicGalleryName, subscriptionId | Get a community gallery by gallery public name. |
SELECT
examples
Get a community gallery by gallery public name.
- vw_community_galleries
- community_galleries
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 }}';
SELECT
name,
identifier,
location,
properties,
type
FROM azure.compute.community_galleries
WHERE location = '{{ location }}'
AND publicGalleryName = '{{ publicGalleryName }}'
AND subscriptionId = '{{ subscriptionId }}';