workflows
Creates, updates, deletes, gets or lists a workflows
resource.
Overview
Name | workflows |
Type | Resource |
Id | azure.storage_sync.workflows |
Fields
- vw_workflows
- workflows
Name | Datatype | Description |
---|---|---|
command_name | text | field from the properties object |
created_timestamp | text | field from the properties object |
last_operation_id | text | field from the properties object |
last_status_timestamp | text | field from the properties object |
last_step_name | text | field from the properties object |
operation | text | field from the properties object |
resourceGroupName | text | field from the properties object |
status | text | field from the properties object |
steps | text | field from the properties object |
storageSyncServiceName | text | field from the properties object |
subscriptionId | text | field from the properties object |
workflowId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Workflow Properties object. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, storageSyncServiceName, subscriptionId, workflowId | Get Workflows resource |
list_by_storage_sync_service | SELECT | resourceGroupName, storageSyncServiceName, subscriptionId | Get a Workflow List |
abort | EXEC | resourceGroupName, storageSyncServiceName, subscriptionId, workflowId | Abort the given workflow. |
SELECT
examples
Get a Workflow List
- vw_workflows
- workflows
SELECT
command_name,
created_timestamp,
last_operation_id,
last_status_timestamp,
last_step_name,
operation,
resourceGroupName,
status,
steps,
storageSyncServiceName,
subscriptionId,
workflowId
FROM azure.storage_sync.vw_workflows
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND storageSyncServiceName = '{{ storageSyncServiceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.storage_sync.workflows
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND storageSyncServiceName = '{{ storageSyncServiceName }}'
AND subscriptionId = '{{ subscriptionId }}';