deployment_operations_at_subscription_scopes
Creates, updates, deletes, gets or lists a deployment_operations_at_subscription_scopes
resource.
Overview
Name | deployment_operations_at_subscription_scopes |
Type | Resource |
Id | azure.resources.deployment_operations_at_subscription_scopes |
Fields
The following fields are returned by SELECT
queries:
- get
- list
OK - Returns information about the deployment operation.
Name | Datatype | Description |
---|---|---|
id | string | Full deployment operation ID. |
operationId | string | Deployment operation ID. |
properties | object | Deployment properties. |
OK - Return an array of deployment operations.
Name | Datatype | Description |
---|---|---|
id | string | Full deployment operation ID. |
operationId | string | Deployment operation ID. |
properties | object | Deployment properties. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | deploymentName , operationId , subscriptionId | Gets a deployments operation. | |
list | select | deploymentName , subscriptionId | $top | Gets 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.
Name | Datatype | Description |
---|---|---|
deploymentName | string | The name of the deployment. |
operationId | string | The ID of the operation to get. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
$top | integer (int32) | The number of results to return. |
SELECT
examples
- get
- list
Gets a deployments operation.
SELECT
id,
operationId,
properties
FROM azure.resources.deployment_operations_at_subscription_scopes
WHERE deploymentName = '{{ deploymentName }}' -- required
AND operationId = '{{ operationId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Gets all deployments operations for a deployment.
SELECT
id,
operationId,
properties
FROM azure.resources.deployment_operations_at_subscription_scopes
WHERE deploymentName = '{{ deploymentName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND $top = '{{ $top }}'
;