Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1WriteTensorboardRunDataRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1WriteTensorboardRunDataRequest
- 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
Request message for TensorboardService.WriteTensorboardRunData.
Instance Attribute Summary collapse
-
#tensorboard_run ⇒ String
Required.
-
#time_series_data ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TimeSeriesData>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1WriteTensorboardRunDataRequest
constructor
A new instance of GoogleCloudAiplatformV1WriteTensorboardRunDataRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1WriteTensorboardRunDataRequest
Returns a new instance of GoogleCloudAiplatformV1WriteTensorboardRunDataRequest.
29373 29374 29375 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 29373 def initialize(**args) update!(**args) end |
Instance Attribute Details
#tensorboard_run ⇒ String
Required. The resource name of the TensorboardRun to write data to. Format:
projects/
project/locations/
location/tensorboards/
tensorboard/experiments/
experiment/runs/
run`
Corresponds to the JSON property
tensorboardRun`
29363 29364 29365 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 29363 def tensorboard_run @tensorboard_run end |
#time_series_data ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TimeSeriesData>
Required. The TensorboardTimeSeries data to write. Values with in a time
series are indexed by their step value. Repeated writes to the same step will
overwrite the existing value for that step. The upper limit of data points per
write request is 5000.
Corresponds to the JSON property timeSeriesData
29371 29372 29373 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 29371 def time_series_data @time_series_data end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
29378 29379 29380 29381 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 29378 def update!(**args) @tensorboard_run = args[:tensorboard_run] if args.key?(:tensorboard_run) @time_series_data = args[:time_series_data] if args.key?(:time_series_data) end |