Skip to main content

vw_workflow_run_operations

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

Overview

Namevw_workflow_run_operations
TypeView
Idazure.logic_apps.vw_workflow_run_operations

Fields

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

SQL Definition

SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.waitEndTime') as "wait_end_time",
JSON_EXTRACT(properties, '$.startTime') as "start_time",
JSON_EXTRACT(properties, '$.endTime') as "end_time",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.code') as "code",
JSON_EXTRACT(properties, '$.error') as "error",
JSON_EXTRACT(properties, '$.correlationId') as "correlation_id",
JSON_EXTRACT(properties, '$.correlation') as "correlation",
JSON_EXTRACT(properties, '$.workflow') as "workflow",
JSON_EXTRACT(properties, '$.trigger') as "trigger",
JSON_EXTRACT(properties, '$.outputs') as "outputs",
JSON_EXTRACT(properties, '$.response') as "response",
subscriptionId,
resourceGroupName,
workflowName,
runName,
operationId
FROM azure.logic_apps.workflow_run_operations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workflowName = 'replace-me' AND runName = 'replace-me' AND operationId = 'replace-me';