Show / Hide Table of Contents

Class TableCollection

Results of ListTables.

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

Properties

AutoReclaimableTables

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

The current number of reclaimable tables in the tenancy.

AvailableReplicationRegions

Declaration
[JsonProperty(PropertyName = "availableReplicationRegions")]
public List<string> AvailableReplicationRegions { get; set; }
Property Value
Type Description
List<string>

An array of regions that are available for replication.

Items

Declaration
[JsonProperty(PropertyName = "items")]
public List<TableSummary> Items { get; set; }
Property Value
Type Description
List<TableSummary>

A page of TableSummary objects.

MaxAutoReclaimableTables

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

The maximum number of reclaimable tables allowed in the tenancy.

MaxOnDemandCapacityTables

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

The maximum number of on demand capacity tables allowed in the tenancy.

OnDemandCapacityTables

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

The current number of on demand capacity tables in the tenancy.

In this article
Back to top