vw_images
Creates, updates, deletes, gets or lists a vw_images
resource.
Overview
Name | vw_images |
Type | View |
Id | azure.dev_center.vw_images |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.publisher') as "publisher",
JSON_EXTRACT(properties, '$.offer') as "offer",
JSON_EXTRACT(properties, '$.sku') as "sku",
JSON_EXTRACT(properties, '$.recommendedMachineConfiguration') as "recommended_machine_configuration",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.hibernateSupport') as "hibernate_support",
subscriptionId,
resourceGroupName,
devCenterName,
galleryName,
imageName,
projectName
FROM azure.dev_center.images
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND projectName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.publisher') as "publisher",
json_extract_path_text(properties, '$.offer') as "offer",
json_extract_path_text(properties, '$.sku') as "sku",
json_extract_path_text(properties, '$.recommendedMachineConfiguration') as "recommended_machine_configuration",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.hibernateSupport') as "hibernate_support",
subscriptionId,
resourceGroupName,
devCenterName,
galleryName,
imageName,
projectName
FROM azure.dev_center.images
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND projectName = 'replace-me';