shared_gallery_images
Creates, updates, deletes, gets or lists a shared_gallery_images
resource.
Overview
Name | shared_gallery_images |
Type | Resource |
Id | azure.compute.shared_gallery_images |
Fields
- vw_shared_gallery_images
- shared_gallery_images
Name | Datatype | Description |
---|---|---|
architecture | text | field from the properties object |
artifact_tags | text | field from the properties object |
disallowed | text | field from the properties object |
end_of_life_date | text | field from the properties object |
eula | text | field from the properties object |
features | text | field from the properties object |
galleryImageName | text | field from the properties object |
galleryUniqueName | text | field from the properties object |
hyper_v_generation | text | field from the properties object |
identifier | text | The identifier information of shared gallery. |
location | text | field from the properties object |
os_state | text | field from the properties object |
os_type | text | field from the properties object |
privacy_statement_uri | text | field from the properties object |
purchase_plan | text | field from the properties object |
recommended | 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 | Describes the properties of a gallery image definition. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | galleryImageName, galleryUniqueName, location, subscriptionId | Get a shared gallery image by subscription id or tenant id. |
list | SELECT | galleryUniqueName, location, subscriptionId | List shared gallery images by subscription id or tenant id. |
SELECT
examples
List shared gallery images by subscription id or tenant id.
- vw_shared_gallery_images
- shared_gallery_images
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 }}';
SELECT
identifier,
properties
FROM azure.compute.shared_gallery_images
WHERE galleryUniqueName = '{{ galleryUniqueName }}'
AND location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';