Show / Hide Table of Contents

Class SummarizeHostInsightResourceUtilizationInsightAggregation

Insights response containing current/projected groups for CPU or memory.

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

Properties

CurrentUtilization

Declaration
[Required(ErrorMessage = "CurrentUtilization is required.")]
[JsonProperty(PropertyName = "currentUtilization")]
public ResourceInsightCurrentUtilization CurrentUtilization { get; set; }
Property Value
Type Description
ResourceInsightCurrentUtilization
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

ProjectedUtilization

Declaration
[Required(ErrorMessage = "ProjectedUtilization is required.")]
[JsonProperty(PropertyName = "projectedUtilization")]
public ResourceInsightProjectedUtilization ProjectedUtilization { get; set; }
Property Value
Type Description
ResourceInsightProjectedUtilization
Remarks

Required

ResourceMetric

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

Defines the type of resource metric (CPU, Physical Memory, Logical Memory)

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

In this article
Back to top