QueryForecastsResponse

The QueryForecasts response.

JSON representation
{
  "forecasts": [
    {
      object (Forecast)
    }
  ]
}
Fields
forecasts[]

object (Forecast)

The forecasts that match the request.

Forecast

A collection of data points that describes the predicted time-varying values of a resource.

JSON representation
{
  "name": string,
  "timeSeries": {
    object (TimeSeries)
  },
  "forecastType": enum (ForecastType),
  "bounds": enum (Bounds),
  "predictionInterval": enum (PredictionInterval),
  "aggregationMethod": enum (AggregationMethod)
}
Fields
name

string

The resource name of the connection in the form of: projects/{projectId}/locations/{locationId}/forecasts/{forecast_id} or organizations/{organization_id}/locations/{locationId}/forecasts/{forecast_id} or folders/{folder_id}/locations/{locationId}/forecasts/{forecast_id}

timeSeries

object (TimeSeries)

The collection of data points that represent the predicted values. Note that some of these values may be in the past (if, for example, the forecast was created in the past and predicted values for the present day).

forecastType

enum (ForecastType)

The type of forecast.

bounds

enum (Bounds)

The bounds represented by this forecast time series.

predictionInterval

enum (PredictionInterval)

The prediction interval represented by the time series.

aggregationMethod

enum (AggregationMethod)

Aggregation Method of the historical usage for which the forecast is generated

Bounds

The bounds of the forecast time series.

Enums
BOUNDS_UNSPECIFIED No bounds is specified.
LOWER_BOUND The time series represents the upper bound of the forecast.
MEDIAN The time series represents the median expected forecast value.
UPPER_BOUND The time series represents the lower bound of the forecast.