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.
20246 20247 20248 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20246 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
20232 20233 20234 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20232 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
20238 20239 20240 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20238 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
20244 20245 20246 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20244 def time_series_identifier_column @time_series_identifier_column end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
20251 20252 20253 20254 20255 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20251 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 |