Class ClusterReplicationTopology
Defines the replication topology of an OCI cache cluster, including the primary cluster and associated secondary clusters participating in replication.
Inherited Members
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