Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TensorboardTimeSeriesMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TensorboardTimeSeriesMetadata
- 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
Describes metadata for a TensorboardTimeSeries.
Instance Attribute Summary collapse
-
#max_blob_sequence_length ⇒ Fixnum
Output only.
-
#max_step ⇒ Fixnum
Output only.
-
#max_wall_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1TensorboardTimeSeriesMetadata
constructor
A new instance of GoogleCloudAiplatformV1TensorboardTimeSeriesMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1TensorboardTimeSeriesMetadata
Returns a new instance of GoogleCloudAiplatformV1TensorboardTimeSeriesMetadata.
30472 30473 30474 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30472 def initialize(**args) update!(**args) end |
Instance Attribute Details
#max_blob_sequence_length ⇒ Fixnum
Output only. The largest blob sequence length (number of blobs) of all data
points in this time series, if its ValueType is BLOB_SEQUENCE.
Corresponds to the JSON property maxBlobSequenceLength
30459 30460 30461 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30459 def max_blob_sequence_length @max_blob_sequence_length end |
#max_step ⇒ Fixnum
Output only. Max step index of all data points within a TensorboardTimeSeries.
Corresponds to the JSON property maxStep
30464 30465 30466 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30464 def max_step @max_step end |
#max_wall_time ⇒ String
Output only. Max wall clock timestamp of all data points within a
TensorboardTimeSeries.
Corresponds to the JSON property maxWallTime
30470 30471 30472 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30470 def max_wall_time @max_wall_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
30477 30478 30479 30480 30481 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30477 def update!(**args) @max_blob_sequence_length = args[:max_blob_sequence_length] if args.key?(:max_blob_sequence_length) @max_step = args[:max_step] if args.key?(:max_step) @max_wall_time = args[:max_wall_time] if args.key?(:max_wall_time) end |