Show / Hide Table of Contents

Class ComputeCapacityDetails

Capacity details of the Database Infrastructure.

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

Properties

AllocatedCores

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

Total CPU cores count allocated..

AvailableCores

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

Total available CPU cores count.

AvailableMemoryInGBs

Declaration
[JsonProperty(PropertyName = "availableMemoryInGBs")]
public long? AvailableMemoryInGBs { get; set; }
Property Value
Type Description
long?

Available memory, in gigabytes (GB).

ReservedCores

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

Total Reserved CPU cores count.

ReservedMemoryInGBs

Declaration
[JsonProperty(PropertyName = "reservedMemoryInGBs")]
public long? ReservedMemoryInGBs { get; set; }
Property Value
Type Description
long?

Reserved memory, in gigabytes (GB).

TotalCores

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

Total CPU cores count.

TotalMemoryInGBs

Declaration
[JsonProperty(PropertyName = "totalMemoryInGBs")]
public long? TotalMemoryInGBs { get; set; }
Property Value
Type Description
long?

Total memory allocated, in gigabytes (GB).

UsedMemoryInGBs

Declaration
[JsonProperty(PropertyName = "usedMemoryInGBs")]
public long? UsedMemoryInGBs { get; set; }
Property Value
Type Description
long?

Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).

In this article
Back to top