community_gallery_image_versions
Creates, updates, deletes, gets or lists a community_gallery_image_versions
resource.
Overview
Name | community_gallery_image_versions |
Type | Resource |
Id | azure.compute.community_gallery_image_versions |
Fields
- vw_community_gallery_image_versions
- community_gallery_image_versions
Name | Datatype | Description |
---|---|---|
name | text | Resource name |
artifact_tags | text | field from the properties object |
disclaimer | 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 |
identifier | text | The identifier information of community gallery. |
location | text | Resource location |
publicGalleryName | 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 |
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 gallery image version. |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | galleryImageName, galleryImageVersionName, location, publicGalleryName, subscriptionId | Get a community gallery image version. |
list | SELECT | galleryImageName, location, publicGalleryName, subscriptionId | List community gallery image versions inside an image. |
SELECT
examples
List community gallery image versions inside an image.
- vw_community_gallery_image_versions
- community_gallery_image_versions
SELECT
name,
artifact_tags,
disclaimer,
end_of_life_date,
exclude_from_latest,
galleryImageName,
galleryImageVersionName,
identifier,
location,
publicGalleryName,
published_date,
storage_profile,
subscriptionId,
type
FROM azure.compute.vw_community_gallery_image_versions
WHERE galleryImageName = '{{ galleryImageName }}'
AND location = '{{ location }}'
AND publicGalleryName = '{{ publicGalleryName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
name,
identifier,
location,
properties,
type
FROM azure.compute.community_gallery_image_versions
WHERE galleryImageName = '{{ galleryImageName }}'
AND location = '{{ location }}'
AND publicGalleryName = '{{ publicGalleryName }}'
AND subscriptionId = '{{ subscriptionId }}';