vw_task_runs
Creates, updates, deletes, gets or lists a vw_task_runs
resource.
Overview
Name | vw_task_runs |
Type | View |
Id | azure.container_registry.vw_task_runs |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
systemData as system_data,
identity as identity,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.runRequest') as "run_request",
JSON_EXTRACT(properties, '$.runResult') as "run_result",
JSON_EXTRACT(properties, '$.forceUpdateTag') as "force_update_tag",
subscriptionId,
resourceGroupName,
registryName,
taskRunName
FROM azure.container_registry.task_runs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND registryName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
systemData as system_data,
identity as identity,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.runRequest') as "run_request",
json_extract_path_text(properties, '$.runResult') as "run_result",
json_extract_path_text(properties, '$.forceUpdateTag') as "force_update_tag",
subscriptionId,
resourceGroupName,
registryName,
taskRunName
FROM azure.container_registry.task_runs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND registryName = 'replace-me';