Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TimeSeriesData
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TimeSeriesData
- 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
All the data stored in a TensorboardTimeSeries.
Instance Attribute Summary collapse
-
#tensorboard_time_series_id ⇒ String
Required.
-
#value_type ⇒ String
Required.
-
#values ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TimeSeriesDataPoint>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1TimeSeriesData
constructor
A new instance of GoogleCloudAiplatformV1TimeSeriesData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1TimeSeriesData
Returns a new instance of GoogleCloudAiplatformV1TimeSeriesData.
23954 23955 23956 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23954 def initialize(**args) update!(**args) end |
Instance Attribute Details
#tensorboard_time_series_id ⇒ String
Required. The ID of the TensorboardTimeSeries, which will become the final
component of the TensorboardTimeSeries' resource name
Corresponds to the JSON property tensorboardTimeSeriesId
23941 23942 23943 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23941 def tensorboard_time_series_id @tensorboard_time_series_id end |
#value_type ⇒ String
Required. Immutable. The value type of this time series. All the values in
this time series data must match this value type.
Corresponds to the JSON property valueType
23947 23948 23949 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23947 def value_type @value_type end |
#values ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TimeSeriesDataPoint>
Required. Data points in this time series.
Corresponds to the JSON property values
23952 23953 23954 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23952 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23959 23960 23961 23962 23963 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23959 def update!(**args) @tensorboard_time_series_id = args[:tensorboard_time_series_id] if args.key?(:tensorboard_time_series_id) @value_type = args[:value_type] if args.key?(:value_type) @values = args[:values] if args.key?(:values) end |