Show / Hide Table of Contents

Class SummarizeExadataInsightResourceUtilizationInsightAggregation

Insights response containing utilization values for exadata systems.

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

Properties

ExadataResourceMetric

Declaration
[Required(ErrorMessage = "ExadataResourceMetric is required.")]
[JsonProperty(PropertyName = "exadataResourceMetric")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SummarizeExadataInsightResourceUtilizationInsightAggregation.ExadataResourceMetricEnum? ExadataResourceMetric { get; set; }
Property Value
Type Description
SummarizeExadataInsightResourceUtilizationInsightAggregation.ExadataResourceMetricEnum?

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

Remarks

Required

ExadataResourceType

Declaration
[Required(ErrorMessage = "ExadataResourceType is required.")]
[JsonProperty(PropertyName = "exadataResourceType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SummarizeExadataInsightResourceUtilizationInsightAggregation.ExadataResourceTypeEnum? ExadataResourceType { get; set; }
Property Value
Type Description
SummarizeExadataInsightResourceUtilizationInsightAggregation.ExadataResourceTypeEnum?

Defines the resource type for an exadata (Example: DATABASE, STORAGE_SERVER, HOST, DISKGROUP)

Remarks

Required

HighUtilizationThreshold

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

Percent value in which a resource metric is considered highly utilized.

Remarks

Required

LowUtilizationThreshold

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

Percent value in which a resource metric is considered lowly utilized.

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

Utilization

Declaration
[Required(ErrorMessage = "Utilization is required.")]
[JsonProperty(PropertyName = "utilization")]
public List<ExadataInsightResourceInsightUtilizationItem> Utilization { get; set; }
Property Value
Type Description
List<ExadataInsightResourceInsightUtilizationItem>

Collection of Exadata system utilization

Remarks

Required

In this article
Back to top