vw_container_registry_setup_status
Creates, updates, deletes, gets or lists a vw_container_registry_setup_status
resource.
Overview
Name | vw_container_registry_setup_status |
Type | View |
Id | azure_stack.container_registry_admin.vw_container_registry_setup_status |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.errorMessage') as "error_message",
subscriptionId,
location
FROM azure_stack.container_registry_admin.container_registry_setup_status
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.errorMessage') as "error_message",
subscriptionId,
location
FROM azure_stack.container_registry_admin.container_registry_setup_status
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';