Show / Hide Table of Contents

Class ResourcePoolSummary

The configuration details for resource pool

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

Properties

AvailableComputeCapacity

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

Available capacity left for new elastic pool members provision

AvailableStorageCapacityInTBs

Declaration
[JsonProperty(PropertyName = "availableStorageCapacityInTBs")]
public double AvailableStorageCapacityInTBs { get; set; }
Property Value
Type Description
double

Available storage capacity (in TB) that can be used for adding new members or scaling existing members in a dedicated elastic pool.

IsDisabled

Declaration
[JsonProperty(PropertyName = "isDisabled")]
public bool? IsDisabled { get; set; }
Property Value
Type Description
bool?

Indicates if the resource pool should be deleted for the Autonomous AI Database.

PoolSize

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

Resource pool size.

PoolStorageSizeInTBs

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

Resource pool storage size in TBs.

TotalComputeCapacity

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

Resource Pool total capacity, it's currently 4x of pool size

In this article
Back to top