Skip to main content

tasks_details

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

Overview

Nametasks_details
TypeResource
Idazure.container_registry.tasks_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. This cannot be changed after the resource is created.
propertiesobjectThe properties of a task.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
tagsobjectThe tags of the resource.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, registryName, taskNameReturns a task with extended information 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.
taskNamestringThe name of the container registry task.

SELECT examples

Returns a task with extended information that includes all secrets.

SELECT
id,
name,
identity,
location,
properties,
systemData,
tags,
type
FROM azure.container_registry.tasks_details
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND registryName = '{{ registryName }}' -- required
AND taskName = '{{ taskName }}' -- required
;