Skip to main content

vw_action_plan_operation_attempts

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

Overview

Namevw_action_plan_operation_attempts
TypeView
Idazure_stack.deployment_admin.vw_action_plan_operation_attempts

Fields

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

SQL Definition

SELECT
id as id,
name as name,
location as location,
type as type,
JSON_EXTRACT(properties, '$.startTime') as "start_time",
JSON_EXTRACT(properties, '$.endTime') as "end_time",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
location,
planId,
operationId
FROM azure_stack.deployment_admin.action_plan_operation_attempts
WHERE subscriptionId = 'replace-me' AND location = 'replace-me' AND planId = 'replace-me' AND operationId = 'replace-me';