Show / Hide Table of Contents

Class Replica

Information about a MR table replica

Inheritance
object
Replica
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 Replica

Properties

CapacityMode

Declaration
[JsonProperty(PropertyName = "capacityMode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Replica.CapacityModeEnum? CapacityMode { get; set; }
Property Value
Type Description
Replica.CapacityModeEnum?

The capacity mode of the replica.

LifecycleDetails

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

A message describing the current state in more detail.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Replica.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
Replica.LifecycleStateEnum?

The state of the replica.

MaxWriteUnits

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

Maximum sustained write throughput limit of the replica table.

Region

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

A customer-facing region identifier

TableId

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

The OCID of the replica table

In this article
Back to top