Show / Hide Table of Contents

Class CreateReplicaDetails

Specifications for the new replica

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

Properties

CompartmentId

Declaration
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the table's compartment. Required if the tableNameOrId path parameter is a table name. Optional if tableNameOrId is an OCID. If tableNameOrId is an OCID, and compartmentId is supplied, the latter must match the identified table's compartmentId.

MaxReadUnits

Declaration
[JsonProperty(PropertyName = "maxReadUnits")]
public int? MaxReadUnits { get; set; }
Property Value
Type Description
int?

Maximum sustained read throughput limit for the new replica table. If not specified, the local table's read limit is used.

MaxWriteUnits

Declaration
[JsonProperty(PropertyName = "maxWriteUnits")]
public int? MaxWriteUnits { get; set; }
Property Value
Type Description
int?

Maximum sustained write throughput limit for the new replica table. If not specified, the local table's write limit is used.

Region

Declaration
[Required(ErrorMessage = "Region is required.")]
[JsonProperty(PropertyName = "region")]
public string Region { get; set; }
Property Value
Type Description
string

Name of the remote region in standard OCI format, i.e. us-ashburn-1

Remarks

Required

In this article
Back to top