vw_workflow_run_operations
Creates, updates, deletes, gets or lists a vw_workflow_run_operations
resource.
Overview
Name | vw_workflow_run_operations |
Type | View |
Id | azure.logic_apps.vw_workflow_run_operations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.waitEndTime') as "wait_end_time",
json_extract_path_text(properties, '$.startTime') as "start_time",
json_extract_path_text(properties, '$.endTime') as "end_time",
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.code') as "code",
json_extract_path_text(properties, '$.error') as "error",
json_extract_path_text(properties, '$.correlationId') as "correlation_id",
json_extract_path_text(properties, '$.correlation') as "correlation",
json_extract_path_text(properties, '$.workflow') as "workflow",
json_extract_path_text(properties, '$.trigger') as "trigger",
json_extract_path_text(properties, '$.outputs') as "outputs",
json_extract_path_text(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';