Skip to main content

vw_deployment_operations_at_scopes

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

Overview

Namevw_deployment_operations_at_scopes
TypeView
Idazure.resources.vw_deployment_operations_at_scopes

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
operationId as operation_id,
JSON_EXTRACT(properties, '$.provisioningOperation') as "provisioning_operation",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.timestamp') as "timestamp",
JSON_EXTRACT(properties, '$.duration') as "duration",
JSON_EXTRACT(properties, '$.serviceRequestId') as "service_request_id",
JSON_EXTRACT(properties, '$.statusCode') as "status_code",
JSON_EXTRACT(properties, '$.statusMessage') as "status_message",
JSON_EXTRACT(properties, '$.targetResource') as "target_resource",
JSON_EXTRACT(properties, '$.request') as "request",
JSON_EXTRACT(properties, '$.response') as "response",
scope,
deploymentName,
operationId
FROM azure.resources.deployment_operations_at_scopes
WHERE scope = 'replace-me' AND deploymentName = 'replace-me';