Skip to main content

deployment_operations_at_management_group_scopes

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

Overview

Namedeployment_operations_at_management_group_scopes
TypeResource
Idazure.resources.deployment_operations_at_management_group_scopes

Fields

The following fields are returned by SELECT queries:

OK - Returns information about the deployment operation.

NameDatatypeDescription
idstringFull deployment operation ID.
operationIdstringDeployment operation ID.
propertiesobjectDeployment properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectgroupId, deploymentName, operationIdGets a deployments operation.
listselectgroupId, deploymentName$topGets all deployments operations for a deployment.

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.

NameDatatypeDescription
deploymentNamestringThe name of the deployment.
groupIdstringThe management group ID.
operationIdstringThe ID of the operation to get.
$topinteger (int32)The number of results to return.

SELECT examples

Gets a deployments operation.

SELECT
id,
operationId,
properties
FROM azure.resources.deployment_operations_at_management_group_scopes
WHERE groupId = '{{ groupId }}' -- required
AND deploymentName = '{{ deploymentName }}' -- required
AND operationId = '{{ operationId }}' -- required
;