Show / Hide Table of Contents

Class ResourceCapacityTrendAggregation

Resource Capacity samples

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

Properties

BaseCapacity

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

The base allocated amount of the resource metric type (CPU, STORAGE) for a set of databases.

Remarks

Required

Capacity

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

The maximum allocated amount of the resource metric type (CPU, STORAGE) for a set of databases.

Remarks

Required

EndTimestamp

Declaration
[Required(ErrorMessage = "EndTimestamp is required.")]
[JsonProperty(PropertyName = "endTimestamp")]
public DateTime? EndTimestamp { get; set; }
Property Value
Type Description
DateTime?

The timestamp in which the current sampling period ends in RFC 3339 format.

Remarks

Required

TotalHostCapacity

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

The maximum host CPUs (cores x threads/core) on the underlying infrastructure. This only applies to CPU and does not not apply for Autonomous Databases.

In this article
Back to top