shared_galleries
Creates, updates, deletes, gets or lists a shared_galleries
resource.
Overview
Name | shared_galleries |
Type | Resource |
Id | azure.compute.shared_galleries |
Fields
- vw_shared_galleries
- shared_galleries
Name | Datatype | Description |
---|---|---|
artifact_tags | text | field from the properties object |
galleryUniqueName | text | field from the properties object |
identifier | text | The identifier information of shared gallery. |
location | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
identifier | object | The identifier information of shared gallery. |
properties | object | Specifies the properties of a shared gallery |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | galleryUniqueName, location, subscriptionId | Get a shared gallery by subscription id or tenant id. |
list | SELECT | location, subscriptionId | List shared galleries by subscription id or tenant id. |
SELECT
examples
List shared galleries by subscription id or tenant id.
- vw_shared_galleries
- shared_galleries
SELECT
artifact_tags,
galleryUniqueName,
identifier,
location,
subscriptionId
FROM azure.compute.vw_shared_galleries
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
identifier,
properties
FROM azure.compute.shared_galleries
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';