assignment_operations
Creates, updates, deletes, gets or lists a assignment_operations
resource.
Overview
Name | assignment_operations |
Type | Resource |
Id | azure.blueprints.assignment_operations |
Fields
- vw_assignment_operations
- assignment_operations
Name | Datatype | Description |
---|---|---|
id | text | String Id used to locate any resource on Azure. |
name | text | Name of this resource. |
assignmentName | text | field from the properties object |
assignmentOperationName | text | field from the properties object |
assignment_state | text | field from the properties object |
blueprint_version | text | field from the properties object |
deployments | text | field from the properties object |
resourceScope | text | field from the properties object |
time_created | text | field from the properties object |
time_finished | text | field from the properties object |
time_started | text | field from the properties object |
type | text | Type of this resource. |
Name | Datatype | Description |
---|---|---|
id | string | String Id used to locate any resource on Azure. |
name | string | Name of this resource. |
properties | object | Properties of AssignmentOperation. |
type | string | Type of this resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | assignmentName, assignmentOperationName, resourceScope | Get a blueprint assignment operation. |
list | SELECT | assignmentName, resourceScope | List operations for given blueprint assignment within a subscription or a management group. |
SELECT
examples
List operations for given blueprint assignment within a subscription or a management group.
- vw_assignment_operations
- assignment_operations
SELECT
id,
name,
assignmentName,
assignmentOperationName,
assignment_state,
blueprint_version,
deployments,
resourceScope,
time_created,
time_finished,
time_started,
type
FROM azure.blueprints.vw_assignment_operations
WHERE assignmentName = '{{ assignmentName }}'
AND resourceScope = '{{ resourceScope }}';
SELECT
id,
name,
properties,
type
FROM azure.blueprints.assignment_operations
WHERE assignmentName = '{{ assignmentName }}'
AND resourceScope = '{{ resourceScope }}';