Skip to main content

deployment_operations_at_scopes

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

Overview

Namedeployment_operations_at_scopes
TypeResource
Idazure.resources.deployment_operations_at_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
getselectscope, deploymentName, operationIdGets a deployments operation.
listselectscope, 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.
operationIdstringThe ID of the operation to get.
scopestringThe scope at which the operation is performed.
$topinteger (int32)The number of results to return.

SELECT examples

Gets a deployments operation.

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