Show / Hide Table of Contents

Class AutonomousContainerDatabaseResourceUsage

Associated autonomous container databases usages.

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

Properties

AutonomousContainerDatabaseVmUsage

Declaration
[JsonProperty(PropertyName = "autonomousContainerDatabaseVmUsage")]
public List<AcdAvmResourceStats> AutonomousContainerDatabaseVmUsage { get; set; }
Property Value
Type Description
List<AcdAvmResourceStats>

List of autonomous container database resource usage per autonomous virtual machine.

AvailableCpus

Declaration
[JsonProperty(PropertyName = "availableCpus")]
public float? AvailableCpus { get; set; }
Property Value
Type Description
float?

CPUs available for provisioning or scaling an Autonomous Database in the Autonomous Container Database.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

DisplayName

Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

The user-friendly name for the Autonomous Container Database. The name does not need to be unique.

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

Id

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

The OCID of the Autonomous Container Database.

LargestProvisionableAutonomousDatabaseInCpus

Declaration
[JsonProperty(PropertyName = "largestProvisionableAutonomousDatabaseInCpus")]
public float? LargestProvisionableAutonomousDatabaseInCpus { get; set; }
Property Value
Type Description
float?

Largest provisionable ADB in the Autonomous Container Database.

ProvisionableCpus

Declaration
[JsonProperty(PropertyName = "provisionableCpus")]
public List<float> ProvisionableCpus { get; set; }
Property Value
Type Description
List<float>

Valid list of provisionable CPUs for Autonomous Database.

ProvisionedCpus

Declaration
[JsonProperty(PropertyName = "provisionedCpus")]
public float? ProvisionedCpus { get; set; }
Property Value
Type Description
float?

CPUs / cores assigned to ADBs in the Autonomous Container Database.

ReclaimableCpus

Declaration
[JsonProperty(PropertyName = "reclaimableCpus")]
public float? ReclaimableCpus { get; set; }
Property Value
Type Description
float?

Number of CPUs that are reclaimable or released to the AVMC on Autonomous Container Database restart.

ReservedCpus

Declaration
[JsonProperty(PropertyName = "reservedCpus")]
public float? ReservedCpus { get; set; }
Property Value
Type Description
float?

CPUs / cores reserved for scalability, resilliency and other overheads. This includes failover, autoscaling and idle instance overhead.

UsedCpus

Declaration
[JsonProperty(PropertyName = "usedCpus")]
public float? UsedCpus { get; set; }
Property Value
Type Description
float?

CPUs / cores assigned to the Autonomous Container Database. Sum of provisioned, reserved and reclaimable CPUs/ cores.

In this article
Back to top