task_runs_details
Creates, updates, deletes, gets or lists a task_runs_details
resource.
Overview
Name | task_runs_details |
Type | Resource |
Id | azure.container_registry.task_runs_details |
Fields
Name | Datatype | Description |
---|---|---|
identity | object | Managed identity for the resource. |
location | string | The location of the resource |
properties | object | The properties of task run. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | registryName, resourceGroupName, subscriptionId, taskRunName | Gets the detailed information for a given task run that includes all secrets. |
SELECT
examples
Gets the detailed information for a given task run that includes all secrets.
SELECT
identity,
location,
properties
FROM azure.container_registry.task_runs_details
WHERE registryName = '{{ registryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND taskRunName = '{{ taskRunName }}';