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
The following fields are returned by SELECT
queries:
- get
The request was successful; the request was well-formed and received properly.
Name | Datatype | Description |
---|---|---|
id | string | The resource ID. |
name | string | The name of the resource. |
identity | object | Identity for the resource. |
location | string | The location of the resource |
properties | object | The properties associated with the task run, i.e., request and result of the run |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , registryName , taskRunName | Gets the detailed information for a given task run that includes all secrets. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
registryName | string | The name of the container registry. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
taskRunName | string | The name of the task run. |
SELECT
examples
- get
Gets the detailed information for a given task run that includes all secrets.
SELECT
id,
name,
identity,
location,
properties,
systemData,
type
FROM azure.container_registry.task_runs_details
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND registryName = '{{ registryName }}' -- required
AND taskRunName = '{{ taskRunName }}' -- required
;