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
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. This cannot be changed after the resource is created. |
properties | object | The properties of a task. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | The tags 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 , taskName | Returns 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.
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. |
taskName | string | The name of the container registry task. |
SELECT
examples
- get
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
;