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