Show / Hide Table of Contents

Class SummarizeExadataInsightResourceForecastTrendAggregation

Usage and Forecast results from the selected time period.

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

Properties

DaysToReachCapacity

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

Days to reach capacity for a storage server

Remarks

Required

ExadataResourceMetric

Declaration
[Required(ErrorMessage = "ExadataResourceMetric is required.")]
[JsonProperty(PropertyName = "exadataResourceMetric")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SummarizeExadataInsightResourceForecastTrendAggregation.ExadataResourceMetricEnum? ExadataResourceMetric { get; set; }
Property Value
Type Description
SummarizeExadataInsightResourceForecastTrendAggregation.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 SummarizeExadataInsightResourceForecastTrendAggregation.ExadataResourceTypeEnum? ExadataResourceType { get; set; }
Property Value
Type Description
SummarizeExadataInsightResourceForecastTrendAggregation.ExadataResourceTypeEnum?

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

Remarks

Required

HistoricalData

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

Time series data used for the forecast analysis.

Remarks

Required

Pattern

Declaration
[Required(ErrorMessage = "Pattern is required.")]
[JsonProperty(PropertyName = "pattern")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SummarizeExadataInsightResourceForecastTrendAggregation.PatternEnum? Pattern { get; set; }
Property Value
Type Description
SummarizeExadataInsightResourceForecastTrendAggregation.PatternEnum?

Time series patterns used in the forecasting.

Remarks

Required

ProjectedData

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

Time series data result of the forecasting analysis.

Remarks

Required

SelectedForecastAlgorithm

Declaration
[JsonProperty(PropertyName = "selectedForecastAlgorithm")]
public string SelectedForecastAlgorithm { get; set; }
Property Value
Type Description
string

Auto-ML algorithm leveraged for the forecast. Only applicable for Auto-ML forecast.

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

UsageUnit

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

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

Remarks

Required

In this article
Back to top