vw_gallery_images
Creates, updates, deletes, gets or lists a vw_gallery_images
resource.
Overview
Name | vw_gallery_images |
Type | View |
Id | azure_stack.azure_stack_hci.vw_gallery_images |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
JSON_EXTRACT(properties, '$.containerId') as "container_id",
JSON_EXTRACT(properties, '$.imagePath') as "image_path",
JSON_EXTRACT(properties, '$.osType') as "os_type",
JSON_EXTRACT(properties, '$.cloudInitDataSource') as "cloud_init_data_source",
JSON_EXTRACT(properties, '$.hyperVGeneration') as "hyper_v_generation",
JSON_EXTRACT(properties, '$.identifier') as "identifier",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.status') as "status",
subscriptionId,
resourceGroupName,
galleryImageName
FROM azure_stack.azure_stack_hci.gallery_images
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
json_extract_path_text(properties, '$.containerId') as "container_id",
json_extract_path_text(properties, '$.imagePath') as "image_path",
json_extract_path_text(properties, '$.osType') as "os_type",
json_extract_path_text(properties, '$.cloudInitDataSource') as "cloud_init_data_source",
json_extract_path_text(properties, '$.hyperVGeneration') as "hyper_v_generation",
json_extract_path_text(properties, '$.identifier') as "identifier",
json_extract_path_text(properties, '$.version') as "version",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.status') as "status",
subscriptionId,
resourceGroupName,
galleryImageName
FROM azure_stack.azure_stack_hci.gallery_images
WHERE subscriptionId = 'replace-me';