TimeSeriesDatasetMetadata

The metadata of Datasets that contain time series data.

Fields
inputConfig object (InputConfig)
timeSeriesIdentifierColumn string

The column name of the time series identifier column that identifies the time series.

timeColumn string

The column name of the time column that identifies time order in the time series.

JSON representation
{
  "inputConfig": {
    object (InputConfig)
  },
  "timeSeriesIdentifierColumn": string,
  "timeColumn": string
}

InputConfig

The time series Dataset's data source. The Dataset doesn't store the data directly, but only pointer(s) to its data.

Fields
source Union type
The following is a list of mutually exclusive fields. At most one of the fields will be set in a response:
gcsSource object (GcsSource)
bigquerySource object (BigQuerySource)
End of mutually exclusive fields.
JSON representation
{

  // source
  "gcsSource": {
    object (GcsSource)
  },
  "bigquerySource": {
    object (BigQuerySource)
  }
  // Union type
}

GcsSource

Fields
uri[] string

Cloud Storage URI of one or more files. Only CSV files are supported. The first line of the CSV file is used as the header. If there are multiple files, the header is the first line of the lexicographically first file, the other files must either contain the exact same header or omit the header.

JSON representation
{
  "uri": [
    string
  ]
}

BigQuerySource

Fields
uri string

The URI of a BigQuery table.

JSON representation
{
  "uri": string
}