Show / Hide Table of Contents

Class Forecast

Forecast configuration of usage or cost.

Inheritance
object
Forecast
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.UsageapiService.Models
Assembly: OCI.DotNetSDK.Usageapi.dll
Syntax
public class Forecast

Properties

ForecastType

Declaration
[JsonProperty(PropertyName = "forecastType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Forecast.ForecastTypeEnum? ForecastType { get; set; }
Property Value
Type Description
Forecast.ForecastTypeEnum?

BASIC uses the exponential smoothing (ETS) model to project future usage or costs based on history data. The basis for projections is a periodic set of equivalent historical days for which the projection is being made.

TimeForecastEnded

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

The forecast end time.

Remarks

Required

TimeForecastStarted

Declaration
[JsonProperty(PropertyName = "timeForecastStarted")]
public DateTime? TimeForecastStarted { get; set; }
Property Value
Type Description
DateTime?

The forecast start time. Defaults to UTC-1 if not specified.

In this article
Back to top