Skip to main content

fabric_operations_status

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

Overview

Namefabric_operations_status
TypeResource
Idazure.data_replication.fabric_operations_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
getSELECTfabricName, operationId, resourceGroupName, subscriptionIdTracks 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 }}';