Class SummarizeHostInsightResourceUsageAggregation
Resource usage summation for the current time period.
Inherited Members
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class SummarizeHostInsightResourceUsageAggregation
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 SummarizeHostInsightResourceUsageAggregation.ResourceMetricEnum? ResourceMetric { get; set; }
Property Value
Type | Description |
---|---|
SummarizeHostInsightResourceUsageAggregation.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
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 SummarizeHostInsightResourceUsageAggregation.UsageUnitEnum? UsageUnit { get; set; }
Property Value
Type | Description |
---|---|
SummarizeHostInsightResourceUsageAggregation.UsageUnitEnum? | Displays usage unit ( CORES, GB , PERCENT, MBPS) |
Remarks
Required