Skip to main content

vw_images

Creates, updates, deletes, gets or lists a vw_images resource.

Overview

Namevw_images
TypeView
Idazure.sphere.vw_images

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

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';