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.
25324 25325 25326 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25324 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
25310 25311 25312 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25310 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
25316 25317 25318 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25316 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
25322 25323 25324 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25322 def time_series_identifier_column @time_series_identifier_column end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
25329 25330 25331 25332 25333 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25329 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 |