Show / Hide Table of Contents

Class ClusterReplicationTopology

Defines the replication topology of an OCI cache cluster, including the primary cluster and associated secondary clusters participating in replication.

Inheritance
object
ClusterReplicationTopology
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.RedisService.Models
Assembly: OCI.DotNetSDK.Redis.dll
Syntax
public class ClusterReplicationTopology

Properties

PrimaryCluster

Declaration
[Required(ErrorMessage = "PrimaryCluster is required.")]
[JsonProperty(PropertyName = "primaryCluster")]
public MemberCluster PrimaryCluster { get; set; }
Property Value
Type Description
MemberCluster
Remarks

Required

SecondaryClusters

Declaration
[Required(ErrorMessage = "SecondaryClusters is required.")]
[JsonProperty(PropertyName = "secondaryClusters")]
public List<MemberCluster> SecondaryClusters { get; set; }
Property Value
Type Description
List<MemberCluster>

The list of secondary clusters that replicate data from the primary cluster.

Remarks

Required

In this article
Back to top