Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryMetadataValue
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryMetadataValue
- 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
Memory metadata.
Instance Attribute Summary collapse
-
#bool_value ⇒ Boolean
(also: #bool_value?)
Represents a boolean value.
-
#double_value ⇒ Float
Represents a double value.
-
#string_value ⇒ String
Represents a string value.
-
#timestamp_value ⇒ String
Represents a timestamp value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1MemoryMetadataValue
constructor
A new instance of GoogleCloudAiplatformV1MemoryMetadataValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1MemoryMetadataValue
Returns a new instance of GoogleCloudAiplatformV1MemoryMetadataValue.
22088 22089 22090 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22088 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bool_value ⇒ Boolean Also known as: bool_value?
Represents a boolean value.
Corresponds to the JSON property boolValue
22069 22070 22071 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22069 def bool_value @bool_value end |
#double_value ⇒ Float
Represents a double value.
Corresponds to the JSON property doubleValue
22075 22076 22077 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22075 def double_value @double_value end |
#string_value ⇒ String
Represents a string value.
Corresponds to the JSON property stringValue
22080 22081 22082 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22080 def string_value @string_value end |
#timestamp_value ⇒ String
Represents a timestamp value. When filtering on timestamp values, only the
seconds field will be compared.
Corresponds to the JSON property timestampValue
22086 22087 22088 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22086 def @timestamp_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
22093 22094 22095 22096 22097 22098 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 22093 def update!(**args) @bool_value = args[:bool_value] if args.key?(:bool_value) @double_value = args[:double_value] if args.key?(:double_value) @string_value = args[:string_value] if args.key?(:string_value) @timestamp_value = args[:timestamp_value] if args.key?(:timestamp_value) end |