tasks_details
Creates, updates, deletes, gets or lists a tasks_details
resource.
Overview
Name | tasks_details |
Type | Resource |
Id | azure.container_registry.tasks_details |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
identity | object | Managed identity for the resource. |
properties | object | The properties of a task. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | registryName, resourceGroupName, subscriptionId, taskName | Returns 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 }}';