Skip to main content

task_runs_details

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

Overview

Nametask_runs_details
TypeResource
Idazure.container_registry.task_runs_details

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
idstringThe resource ID.
namestringThe name of the resource.
identityobjectIdentity for the resource.
locationstringThe location of the resource
propertiesobjectThe properties associated with the task run, i.e., request and result of the run
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, registryName, taskRunNameGets 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.

NameDatatypeDescription
registryNamestringThe name of the container registry.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
taskRunNamestringThe name of the task run.

SELECT examples

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
;