Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaTimeSeriesDatasetMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaTimeSeriesDatasetMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
The metadata of Datasets that contain time series data.
Instance Attribute Summary collapse
-
#input_config ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaTimeSeriesDatasetMetadataInputConfig
The time series Dataset's data source.
-
#time_column ⇒ String
The column name of the time column that identifies time order in the time series.
-
#time_series_identifier_column ⇒ String
The column name of the time series identifier column that identifies the time series.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaTimeSeriesDatasetMetadata
constructor
A new instance of GoogleCloudAiplatformV1SchemaTimeSeriesDatasetMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaTimeSeriesDatasetMetadata
Returns a new instance of GoogleCloudAiplatformV1SchemaTimeSeriesDatasetMetadata.
24620 24621 24622 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24620 def initialize(**args) update!(**args) end |
Instance Attribute Details
#input_config ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaTimeSeriesDatasetMetadataInputConfig
The time series Dataset's data source. The Dataset doesn't store the data
directly, but only pointer(s) to its data.
Corresponds to the JSON property inputConfig
24606 24607 24608 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24606 def input_config @input_config end |
#time_column ⇒ String
The column name of the time column that identifies time order in the time
series.
Corresponds to the JSON property timeColumn
24612 24613 24614 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24612 def time_column @time_column end |
#time_series_identifier_column ⇒ String
The column name of the time series identifier column that identifies the time
series.
Corresponds to the JSON property timeSeriesIdentifierColumn
24618 24619 24620 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24618 def time_series_identifier_column @time_series_identifier_column end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
24625 24626 24627 24628 24629 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 24625 def update!(**args) @input_config = args[:input_config] if args.key?(:input_config) @time_column = args[:time_column] if args.key?(:time_column) @time_series_identifier_column = args[:time_series_identifier_column] if args.key?(:time_series_identifier_column) end |