Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MetadataValue
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MetadataValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Value of Metadata, including all types available in data schema.
Instance Attribute Summary collapse
-
#bool_value ⇒ Boolean
(also: #bool_value?)
Value of boolean type metadata.
-
#datetime_value ⇒ String
Value of date time type metadata.
-
#float_value ⇒ Float
Value of float type metadata.
-
#int_value ⇒ Fixnum
Value of int type metadata.
-
#list_value ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MetadataList
List representation in metadata.
-
#str_value ⇒ String
Value of string type metadata.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1MetadataValue
constructor
A new instance of GoogleCloudAiplatformV1beta1MetadataValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1MetadataValue
Returns a new instance of GoogleCloudAiplatformV1beta1MetadataValue.
33031 33032 33033 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33031 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bool_value ⇒ Boolean Also known as: bool_value?
Value of boolean type metadata.
Corresponds to the JSON property boolValue
33003 33004 33005 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33003 def bool_value @bool_value end |
#datetime_value ⇒ String
Value of date time type metadata.
Corresponds to the JSON property datetimeValue
33009 33010 33011 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33009 def datetime_value @datetime_value end |
#float_value ⇒ Float
Value of float type metadata.
Corresponds to the JSON property floatValue
33014 33015 33016 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33014 def float_value @float_value end |
#int_value ⇒ Fixnum
Value of int type metadata.
Corresponds to the JSON property intValue
33019 33020 33021 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33019 def int_value @int_value end |
#list_value ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MetadataList
List representation in metadata.
Corresponds to the JSON property listValue
33024 33025 33026 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33024 def list_value @list_value end |
#str_value ⇒ String
Value of string type metadata.
Corresponds to the JSON property strValue
33029 33030 33031 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33029 def str_value @str_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
33036 33037 33038 33039 33040 33041 33042 33043 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33036 def update!(**args) @bool_value = args[:bool_value] if args.key?(:bool_value) @datetime_value = args[:datetime_value] if args.key?(:datetime_value) @float_value = args[:float_value] if args.key?(:float_value) @int_value = args[:int_value] if args.key?(:int_value) @list_value = args[:list_value] if args.key?(:list_value) @str_value = args[:str_value] if args.key?(:str_value) end |