Skip to main content

assignment_operations

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

Overview

Nameassignment_operations
TypeResource
Idazure.blueprints.assignment_operations

Fields

NameDatatypeDescription
idtextString Id used to locate any resource on Azure.
nametextName of this resource.
assignmentNametextfield from the properties object
assignmentOperationNametextfield from the properties object
assignment_statetextfield from the properties object
blueprint_versiontextfield from the properties object
deploymentstextfield from the properties object
resourceScopetextfield from the properties object
time_createdtextfield from the properties object
time_finishedtextfield from the properties object
time_startedtextfield from the properties object
typetextType of this resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTassignmentName, assignmentOperationName, resourceScopeGet a blueprint assignment operation.
listSELECTassignmentName, resourceScopeList 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.

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 }}';