Skip to main content

vw_workflows

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

Overview

Namevw_workflows
TypeView
Idazure.storage_sync.vw_workflows

Fields

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

SQL Definition

SELECT
JSON_EXTRACT(properties, '$.lastStepName') as "last_step_name",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.operation') as "operation",
JSON_EXTRACT(properties, '$.steps') as "steps",
JSON_EXTRACT(properties, '$.lastOperationId') as "last_operation_id",
JSON_EXTRACT(properties, '$.commandName') as "command_name",
JSON_EXTRACT(properties, '$.createdTimestamp') as "created_timestamp",
JSON_EXTRACT(properties, '$.lastStatusTimestamp') as "last_status_timestamp",
subscriptionId,
resourceGroupName,
storageSyncServiceName,
workflowId
FROM azure.storage_sync.workflows
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND storageSyncServiceName = 'replace-me';