Skip to main content

vw_tasks

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

Overview

Namevw_tasks
TypeView
Idazure.container_registry.vw_tasks

Fields

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

SQL Definition

SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
systemData as system_data,
identity as identity,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.creationDate') as "creation_date",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.platform') as "platform",
JSON_EXTRACT(properties, '$.agentConfiguration') as "agent_configuration",
JSON_EXTRACT(properties, '$.agentPoolName') as "agent_pool_name",
JSON_EXTRACT(properties, '$.timeout') as "timeout",
JSON_EXTRACT(properties, '$.step') as "step",
JSON_EXTRACT(properties, '$.trigger') as "trigger",
JSON_EXTRACT(properties, '$.credentials') as "credentials",
JSON_EXTRACT(properties, '$.logTemplate') as "log_template",
JSON_EXTRACT(properties, '$.isSystemTask') as "is_system_task",
subscriptionId,
resourceGroupName,
registryName,
taskName
FROM azure.container_registry.tasks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND registryName = 'replace-me';