Skip to main content

replication_protection_clusters_operation_results

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

Overview

Namereplication_protection_clusters_operation_results
TypeResource
Idazure.recovery_services_site_recovery.replication_protection_clusters_operation_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe protection cluster Id.
namestringThe name of the protection cluster.
propertiesobjectThe custom data.
typestringThe Type of the object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceName, resourceGroupName, subscriptionId, fabricName, protectionContainerName, replicationProtectionClusterName, jobIdapi-versionTrack the results of an asynchronous operation on the replication protection cluster.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
fabricNamestringFabric name.
jobIdstringjob id to track.
protectionContainerNamestringProtection container name.
replicationProtectionClusterNamestringReplication protection cluster name.
resourceGroupNamestringThe name of the resource group where the recovery services vault is present.
resourceNamestringThe name of the recovery services vault.
subscriptionIdstringThe subscription Id.
api-versionstringClient Api Version.

SELECT examples

Track the results of an asynchronous operation on the replication protection cluster.

SELECT
id,
name,
properties,
type
FROM azure.recovery_services_site_recovery.replication_protection_clusters_operation_results
WHERE resourceName = '{{ resourceName }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND fabricName = '{{ fabricName }}' -- required
AND protectionContainerName = '{{ protectionContainerName }}' -- required
AND replicationProtectionClusterName = '{{ replicationProtectionClusterName }}' -- required
AND jobId = '{{ jobId }}' -- required
AND api-version = '{{ api-version }}'
;