fabric_operations_status
Creates, updates, deletes, gets or lists a fabric_operations_status
resource.
Overview
Name | fabric_operations_status |
Type | Resource |
Id | azure.data_replication.fabric_operations_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 | fabricName, operationId, resourceGroupName, subscriptionId | Tracks the results of an asynchronous operation on the fabric. |
SELECT
examples
Tracks the results of an asynchronous operation on the fabric.
SELECT
id,
name,
endTime,
startTime,
status
FROM azure.data_replication.fabric_operations_status
WHERE fabricName = '{{ fabricName }}'
AND operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';