Skip to main content

workflows

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

Overview

Nameworkflows
TypeResource
Idazure.storage_sync.workflows

Fields

NameDatatypeDescription
command_nametextfield from the properties object
created_timestamptextfield from the properties object
last_operation_idtextfield from the properties object
last_status_timestamptextfield from the properties object
last_step_nametextfield from the properties object
operationtextfield from the properties object
resourceGroupNametextfield from the properties object
statustextfield from the properties object
stepstextfield from the properties object
storageSyncServiceNametextfield from the properties object
subscriptionIdtextfield from the properties object
workflowIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, storageSyncServiceName, subscriptionId, workflowIdGet Workflows resource
list_by_storage_sync_serviceSELECTresourceGroupName, storageSyncServiceName, subscriptionIdGet a Workflow List
abortEXECresourceGroupName, storageSyncServiceName, subscriptionId, workflowIdAbort the given workflow.

SELECT examples

Get a Workflow List

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 }}';