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