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.
26336 26337 26338 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 26336 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
26322 26323 26324 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 26322 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
26328 26329 26330 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 26328 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
26334 26335 26336 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 26334 def time_series_identifier_column @time_series_identifier_column end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
26341 26342 26343 26344 26345 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 26341 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 |