Skip to main content

volumes_replications

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

Overview

Namevolumes_replications
TypeResource
Idazure_isv.netapp.volumes_replications

Fields

NameDatatypeDescription
endpointTypestringIndicates whether the local volume is the source or destination for the Volume Replication
remoteVolumeRegionstringThe remote region for the other end of the Volume Replication.
remoteVolumeResourceIdstringThe resource ID of the remote volume.
replicationIdstringUUID v4 used to identify the replication.
replicationSchedulestringSchedule

Methods

NameAccessible byRequired ParamsDescription
listSELECTaccountName, poolName, resourceGroupName, subscriptionId, volumeNameList all replications for a specified volume
deleteDELETEaccountName, poolName, resourceGroupName, subscriptionId, volumeNameDelete the replication connection on the destination volume, and send release to the source replication

SELECT examples

List all replications for a specified volume

SELECT
endpointType,
remoteVolumeRegion,
remoteVolumeResourceId,
replicationId,
replicationSchedule
FROM azure_isv.netapp.volumes_replications
WHERE accountName = '{{ accountName }}'
AND poolName = '{{ poolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND volumeName = '{{ volumeName }}';

DELETE example

Deletes the specified volumes_replications resource.

/*+ delete */
DELETE FROM azure_isv.netapp.volumes_replications
WHERE accountName = '{{ accountName }}'
AND poolName = '{{ poolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND volumeName = '{{ volumeName }}';