vw_images
Creates, updates, deletes, gets or lists a vw_images
resource.
Overview
Name | vw_images |
Type | View |
Id | azure.sphere.vw_images |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.image') as "image",
JSON_EXTRACT(properties, '$.imageId') as "image_id",
JSON_EXTRACT(properties, '$.imageName') as "image_name",
JSON_EXTRACT(properties, '$.regionalDataBoundary') as "regional_data_boundary",
JSON_EXTRACT(properties, '$.uri') as "uri",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.componentId') as "component_id",
JSON_EXTRACT(properties, '$.imageType') as "image_type",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
catalogName,
imageName
FROM azure.sphere.images
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND catalogName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.image') as "image",
json_extract_path_text(properties, '$.imageId') as "image_id",
json_extract_path_text(properties, '$.imageName') as "image_name",
json_extract_path_text(properties, '$.regionalDataBoundary') as "regional_data_boundary",
json_extract_path_text(properties, '$.uri') as "uri",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.componentId') as "component_id",
json_extract_path_text(properties, '$.imageType') as "image_type",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
catalogName,
imageName
FROM azure.sphere.images
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND catalogName = 'replace-me';