operation_status
Creates, updates, deletes, gets or lists an operation_status
resource.
Overview
Name | operation_status |
Type | Resource |
Id | azure.storage_sync.operation_status |
Fields
The following fields are returned by SELECT
queries:
- get
Operation Status
Name | Datatype | Description |
---|---|---|
name | string | Operation Id |
endTime | string (date-time) | End time of the operation |
error | object | Error details. |
startTime | string (date-time) | Start time of the operation |
status | string | Operation status |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , locationName , workflowId , operationId | Get Operation status |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
locationName | string | The desired region to obtain information from. |
operationId | string | operation Id |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
workflowId | string | workflow Id |
SELECT
examples
- get
Get Operation status
SELECT
name,
endTime,
error,
startTime,
status
FROM azure.storage_sync.operation_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND locationName = '{{ locationName }}' -- required
AND workflowId = '{{ workflowId }}' -- required
AND operationId = '{{ operationId }}' -- required
;