Class CompositeRaftShardSpace
Globally distributed database composite raft shard space.
Inherited Members
Namespace: Oci.Distributeddatabasev26Service.Models
Assembly: OCI.DotNetSDK.Distributeddatabasev26.dll
Syntax
public class CompositeRaftShardSpace
Properties
ChunkCount
Declaration
[Required(ErrorMessage = "ChunkCount is required.")]
[JsonProperty(PropertyName = "chunkCount")]
public int? ChunkCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | Count of chunks associated with the shard space. |
Remarks
Required
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The name of shard space. It must start with a letter and contain only letters, digits, and underscores. Maximum length is 40 characters. |
Remarks
Required
RaftClusters
Declaration
[Required(ErrorMessage = "RaftClusters is required.")]
[JsonProperty(PropertyName = "raftClusters")]
public List<CompositeShardSpaceRaftCluster> RaftClusters { get; set; }
Property Value
| Type | Description |
|---|---|
| List<CompositeShardSpaceRaftCluster> | The details of raft clusters associated with the shard space. |
Remarks
Required
ReplicationUnitCount
Declaration
[Required(ErrorMessage = "ReplicationUnitCount is required.")]
[JsonProperty(PropertyName = "replicationUnitCount")]
public int? ReplicationUnitCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | Number of replication units in the shard space. |
Remarks
Required