Show / Hide Table of Contents

Class AutonomousVmResourceUsage

Autonomous VM usage statistics.

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

Properties

AutonomousContainerDatabaseUsage

Declaration
[JsonProperty(PropertyName = "autonomousContainerDatabaseUsage")]
public List<AvmAcdResourceStats> AutonomousContainerDatabaseUsage { get; set; }
Property Value
Type Description
List<AvmAcdResourceStats>

Associated Autonomous Container Database Usages.

AvailableCpus

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

The number of CPU cores available.

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 VM cluster. The name does not need to be unique.

Remarks

Required

Id

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

The OCID of the Autonomous VM Cluster.

ProvisionedCpus

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

The number of CPUs provisioned in an Autonomous VM Cluster.

ReclaimableCpus

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

CPU cores that continue to be included in the count of OCPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available OCPUs at its parent AVMC level by restarting the Autonomous Container Database.

ReservedCpus

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

The number of CPUs reserved in an Autonomous VM Cluster.

UsedCpus

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

The number of CPU cores alloted to the Autonomous Container Databases in an Cloud Autonomous VM cluster.

In this article
Back to top