vw_deployment_operations_at_tenant_scopes
Creates, updates, deletes, gets or lists a vw_deployment_operations_at_tenant_scopes
resource.
Overview
Name | vw_deployment_operations_at_tenant_scopes |
Type | View |
Id | azure.resources.vw_deployment_operations_at_tenant_scopes |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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",
deploymentName,
operationId
FROM azure.resources.deployment_operations_at_tenant_scopes
WHERE deploymentName = 'replace-me';
SELECT
id as id,
operationId as operation_id,
json_extract_path_text(properties, '$.provisioningOperation') as "provisioning_operation",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.timestamp') as "timestamp",
json_extract_path_text(properties, '$.duration') as "duration",
json_extract_path_text(properties, '$.serviceRequestId') as "service_request_id",
json_extract_path_text(properties, '$.statusCode') as "status_code",
json_extract_path_text(properties, '$.statusMessage') as "status_message",
json_extract_path_text(properties, '$.targetResource') as "target_resource",
json_extract_path_text(properties, '$.request') as "request",
json_extract_path_text(properties, '$.response') as "response",
deploymentName,
operationId
FROM azure.resources.deployment_operations_at_tenant_scopes
WHERE deploymentName = 'replace-me';