deployment_operations
Creates, updates, deletes, gets or lists a deployment_operations
resource.
Overview
Name | deployment_operations |
Type | Resource |
Id | azure.resources.deployment_operations |
Fields
- vw_deployment_operations
- deployment_operations
Name | Datatype | Description |
---|---|---|
id | text | Full deployment operation ID. |
deploymentName | text | field from the properties object |
duration | text | field from the properties object |
operationId | text | Deployment operation ID. |
operation_id | text | field from the properties object |
provisioning_operation | text | field from the properties object |
provisioning_state | text | field from the properties object |
request | text | field from the properties object |
resourceGroupName | text | field from the properties object |
response | text | field from the properties object |
service_request_id | text | field from the properties object |
status_code | text | field from the properties object |
status_message | text | field from the properties object |
subscriptionId | text | field from the properties object |
target_resource | text | field from the properties object |
timestamp | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Full deployment operation ID. |
operationId | string | Deployment operation ID. |
properties | object | Deployment operation properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | deploymentName, operationId, resourceGroupName, subscriptionId | Gets a deployments operation. |
get_at_management_group_scope | SELECT | deploymentName, groupId, operationId | Gets a deployments operation. |
get_at_scope | SELECT | deploymentName, operationId, scope | Gets a deployments operation. |
get_at_subscription_scope | SELECT | deploymentName, operationId, subscriptionId | Gets a deployments operation. |
get_at_tenant_scope | SELECT | deploymentName, operationId | Gets a deployments operation. |
list | SELECT | deploymentName, resourceGroupName, subscriptionId | Gets all deployments operations for a deployment. |
list_at_management_group_scope | SELECT | deploymentName, groupId | Gets all deployments operations for a deployment. |
list_at_scope | SELECT | deploymentName, scope | Gets all deployments operations for a deployment. |
list_at_subscription_scope | SELECT | deploymentName, subscriptionId | Gets all deployments operations for a deployment. |
list_at_tenant_scope | SELECT | deploymentName | Gets all deployments operations for a deployment. |
SELECT
examples
Gets all deployments operations for a deployment.
- vw_deployment_operations
- deployment_operations
SELECT
id,
deploymentName,
duration,
operationId,
operation_id,
provisioning_operation,
provisioning_state,
request,
resourceGroupName,
response,
service_request_id,
status_code,
status_message,
subscriptionId,
target_resource,
timestamp
FROM azure.resources.vw_deployment_operations
WHERE deploymentName = '{{ deploymentName }}';
SELECT
id,
operationId,
properties
FROM azure.resources.deployment_operations
WHERE deploymentName = '{{ deploymentName }}';