dra_operation_status
Creates, updates, deletes, gets or lists a dra_operation_status
resource.
Overview
Name | dra_operation_status |
Type | Resource |
Id | azure.data_replication.dra_operation_status |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Gets or sets the Id. |
name | string | Gets or sets the operation name. |
endTime | string | Gets or sets the end time. |
startTime | string | Gets or sets the start time. |
status | string | Gets or sets the status of the operation. ARM expects the terminal status to be one of |
Succeeded/ Failed/ Canceled. All other values imply that the operation is still running. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fabricAgentName, fabricName, operationId, resourceGroupName, subscriptionId | Tracks the results of an asynchronous operation on the fabric agent. |
SELECT
examples
Tracks the results of an asynchronous operation on the fabric agent.
SELECT
id,
name,
endTime,
startTime,
status
FROM azure.data_replication.dra_operation_status
WHERE fabricAgentName = '{{ fabricAgentName }}'
AND fabricName = '{{ fabricName }}'
AND operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';