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

NameDatatypeDescription
idstringFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
identityobjectManaged identity for the resource.
propertiesobjectThe properties of a task.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
getSELECTregistryName, resourceGroupName, subscriptionId, taskNameReturns a task with extended information that includes all secrets.

SELECT examples

Returns a task with extended information that includes all secrets.

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