operation_status
Creates, updates, deletes, gets or lists a operation_status
resource.
Overview
Name | operation_status |
Type | Resource |
Id | azure.storage_sync.operation_status |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Operation Id |
endTime | string | End time of the operation |
error | object | Error type |
startTime | string | Start time of the operation |
status | string | Operation status |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | locationName, operationId, resourceGroupName, subscriptionId, workflowId | Get Operation status |
SELECT
examples
Get Operation status
SELECT
name,
endTime,
error,
startTime,
status
FROM azure.storage_sync.operation_status
WHERE locationName = '{{ locationName }}'
AND operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowId = '{{ workflowId }}';