Show / Hide Table of Contents

Class TableLimits

Throughput and storage limits configuration of a table.

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

Properties

CapacityMode

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

The capacity mode of the table. If capacityMode = ON_DEMAND, maxReadUnits and maxWriteUnits are not used, and both will have the value of zero.

MaxReadUnits

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

Maximum sustained read throughput limit for the table.

Remarks

Required

MaxStorageInGBs

Declaration
[Required(ErrorMessage = "MaxStorageInGBs is required.")]
[JsonProperty(PropertyName = "maxStorageInGBs")]
public int? MaxStorageInGBs { get; set; }
Property Value
Type Description
int?

Maximum size of storage used by the table.

Remarks

Required

MaxWriteUnits

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

Maximum sustained write throughput limit for the table.

Remarks

Required

In this article
Back to top