shared_gallery_image_versions
Creates, updates, deletes, gets or lists a shared_gallery_image_versions
resource.
Overview
Name | shared_gallery_image_versions |
Type | Resource |
Id | azure.compute.shared_gallery_image_versions |
Fields
- vw_shared_gallery_image_versions
- shared_gallery_image_versions
Name | Datatype | Description |
---|---|---|
artifact_tags | text | field from the properties object |
end_of_life_date | text | field from the properties object |
exclude_from_latest | text | field from the properties object |
galleryImageName | text | field from the properties object |
galleryImageVersionName | 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 |
published_date | text | field from the properties object |
storage_profile | 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 version. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | galleryImageName, galleryImageVersionName, galleryUniqueName, location, subscriptionId | Get a shared gallery image version by subscription id or tenant id. |
list | SELECT | galleryImageName, galleryUniqueName, location, subscriptionId | List shared gallery image versions by subscription id or tenant id. |
SELECT
examples
List shared gallery image versions by subscription id or tenant id.
- vw_shared_gallery_image_versions
- shared_gallery_image_versions
SELECT
artifact_tags,
end_of_life_date,
exclude_from_latest,
galleryImageName,
galleryImageVersionName,
galleryUniqueName,
identifier,
location,
published_date,
storage_profile,
subscriptionId
FROM azure.compute.vw_shared_gallery_image_versions
WHERE galleryImageName = '{{ galleryImageName }}'
AND galleryUniqueName = '{{ galleryUniqueName }}'
AND location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
identifier,
properties
FROM azure.compute.shared_gallery_image_versions
WHERE galleryImageName = '{{ galleryImageName }}'
AND galleryUniqueName = '{{ galleryUniqueName }}'
AND location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';