Skip to main content

deployment_operations_at_tenant_scopes

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

Overview

Namedeployment_operations_at_tenant_scopes
TypeResource
Idazure.resources.deployment_operations_at_tenant_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
getselectdeploymentName, operationIdGets a deployments operation.
listselectdeploymentName$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.
$topinteger (int32)The number of results to return.

SELECT examples

Gets a deployments operation.

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