vw_project_catalog_image_definitions
Creates, updates, deletes, gets or lists a vw_project_catalog_image_definitions
resource.
Overview
Name | vw_project_catalog_image_definitions |
Type | View |
Id | azure.dev_center.vw_project_catalog_image_definitions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.imageReference') as "image_reference",
JSON_EXTRACT(properties, '$.fileUrl') as "file_url",
JSON_EXTRACT(properties, '$.latestBuild') as "latest_build",
subscriptionId,
resourceGroupName,
projectName,
catalogName,
imageDefinitionName
FROM azure.dev_center.project_catalog_image_definitions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND projectName = 'replace-me' AND catalogName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.imageReference') as "image_reference",
json_extract_path_text(properties, '$.fileUrl') as "file_url",
json_extract_path_text(properties, '$.latestBuild') as "latest_build",
subscriptionId,
resourceGroupName,
projectName,
catalogName,
imageDefinitionName
FROM azure.dev_center.project_catalog_image_definitions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND projectName = 'replace-me' AND catalogName = 'replace-me';