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.
17764 17765 17766 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17764 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
17750 17751 17752 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17750 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
17756 17757 17758 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17756 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
17762 17763 17764 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17762 def time_series_identifier_column @time_series_identifier_column end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17769 17770 17771 17772 17773 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17769 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 |