Skip to main content

replication_extension_operation_status

Creates, updates, deletes, gets or lists a replication_extension_operation_status resource.

Overview

Namereplication_extension_operation_status
TypeResource
Idazure.data_replication.replication_extension_operation_status

Fields

NameDatatypeDescription
idstringGets or sets the Id.
namestringGets or sets the operation name.
endTimestringGets or sets the end time.
startTimestringGets or sets the start time.
statusstringGets 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

NameAccessible byRequired ParamsDescription
getSELECToperationId, replicationExtensionName, resourceGroupName, subscriptionId, vaultNameTracks the results of an asynchronous operation on the replication extension.

SELECT examples

Tracks the results of an asynchronous operation on the replication extension.

SELECT
id,
name,
endTime,
startTime,
status
FROM azure.data_replication.replication_extension_operation_status
WHERE operationId = '{{ operationId }}'
AND replicationExtensionName = '{{ replicationExtensionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';