Show / Hide Table of Contents

Class CreateCompositeDataGuardShardSpaceDetails

Globally distributed database composite data guard shard space creation details.

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

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

DataGuardReplicas

Declaration
[JsonProperty(PropertyName = "dataGuardReplicas")]
public List<CreateCompositeDataGuardShardSpaceReplicaDetails> DataGuardReplicas { get; set; }
Property Value
Type Description
List<CreateCompositeDataGuardShardSpaceReplicaDetails>

The details of data guard replica for the shard being created.

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

OriginalReplica

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

Required

In this article
Back to top