Show / Hide Table of Contents

Class ExadataInsightResourceForecastTrendSummary

List of resource id, name , capacity insight value, pattern, historical usage and projected data.

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

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

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

Id

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

The OCID of the database insight resource.

Remarks

Required

Name

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

The name of the resource.

Remarks

Required

Pattern

Declaration
[Required(ErrorMessage = "Pattern is required.")]
[JsonProperty(PropertyName = "pattern")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExadataInsightResourceForecastTrendSummary.PatternEnum? Pattern { get; set; }
Property Value
Type Description
ExadataInsightResourceForecastTrendSummary.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.

In this article
Back to top