Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TensorboardBlob
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1TensorboardBlob
- 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
One blob (e.g, image, graph) viewable on a blob metric plot.
Instance Attribute Summary collapse
-
#data ⇒ String
Optional.
-
#id ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1TensorboardBlob
constructor
A new instance of GoogleCloudAiplatformV1TensorboardBlob.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1TensorboardBlob
Returns a new instance of GoogleCloudAiplatformV1TensorboardBlob.
31912 31913 31914 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 31912 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data ⇒ String
Optional. The bytes of the blob is not present unless it's returned by the
ReadTensorboardBlobData endpoint.
Corresponds to the JSON property data
NOTE: Values are automatically base64 encoded/decoded in the client library.
31904 31905 31906 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 31904 def data @data end |
#id ⇒ String
Output only. A URI safe key uniquely identifying a blob. Can be used to locate
the blob stored in the Cloud Storage bucket of the consumer project.
Corresponds to the JSON property id
31910 31911 31912 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 31910 def id @id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31917 31918 31919 31920 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 31917 def update!(**args) @data = args[:data] if args.key?(:data) @id = args[:id] if args.key?(:id) end |