Show / Hide Table of Contents

Class SummarizeDatabaseInsightResourceUsageAggregation

Resource usage summation for the current time period

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

Properties

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

ResourceMetric

Declaration
[Required(ErrorMessage = "ResourceMetric is required.")]
[JsonProperty(PropertyName = "resourceMetric")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SummarizeDatabaseInsightResourceUsageAggregation.ResourceMetricEnum? ResourceMetric { get; set; }
Property Value
Type Description
SummarizeDatabaseInsightResourceUsageAggregation.ResourceMetricEnum?

Defines the type of resource metric (Example: CPU, STORAGE)

Remarks

Required

TimeIntervalEnd

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

The end timestamp that was passed into the request.

Remarks

Required

TimeIntervalStart

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

The start timestamp that was passed into the request.

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.

Usage

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

Total amount used of the resource metric type (CPU, STORAGE).

Remarks

Required

UsageChangePercent

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

Percentage change in resource usage during the current period calculated using linear regression functions

Remarks

Required

UsageUnit

Declaration
[Required(ErrorMessage = "UsageUnit is required.")]
[JsonProperty(PropertyName = "usageUnit")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SummarizeDatabaseInsightResourceUsageAggregation.UsageUnitEnum? UsageUnit { get; set; }
Property Value
Type Description
SummarizeDatabaseInsightResourceUsageAggregation.UsageUnitEnum?

Displays usage unit ( CORES, GB , PERCENT, MBPS)

Remarks

Required

In this article
Back to top