OBJECT

ReplicationPair

Description

Replication pair specific information.

link GraphQL Schema definition

  • type ReplicationPair {
  • # Storage (in bytes) consumed on target cluster by replicated snapshots.
  • storage: Long!
  • # Connection status of the replication pair (active, disconnected, or paused).
  • status: ReplicationPairConnectionStatus!
  • # Represents replication pair pause enablement status.
  • isPaused: Boolean!
  • # Network throttle details for source Rubrik cluster.
  • networkThrottle: NetworkThrottle
  • # Configuration details about the replication pair of Rubrik clusters.
  • configDetails: ReplicationPairConfigDetails
  • # Running replication task count.
  • runningTasks: Long
  • # Failed replication task count in last 24 hours.
  • failedTasks: Long
  • # Source Rubrik cluster details.
  • sourceCluster: ReplicationCluster!
  • # Target Rubrik cluster details.
  • targetCluster: ReplicationCluster!
  • # Additional information about the connection status of the replication pair
  • # Rubrik clusters.
  • connectionDetails: ConnectionStatusDetails!
  • }