Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MetadataValue

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1MetadataValue

Returns a new instance of GoogleCloudAiplatformV1beta1MetadataValue.



33209
33210
33211
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33209

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bool_valueBoolean Also known as: bool_value?

Value of boolean type metadata. Corresponds to the JSON property boolValue

Returns:

  • (Boolean)


33181
33182
33183
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33181

def bool_value
  @bool_value
end

#datetime_valueString

Value of date time type metadata. Corresponds to the JSON property datetimeValue

Returns:

  • (String)


33187
33188
33189
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33187

def datetime_value
  @datetime_value
end

#float_valueFloat

Value of float type metadata. Corresponds to the JSON property floatValue

Returns:

  • (Float)


33192
33193
33194
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33192

def float_value
  @float_value
end

#int_valueFixnum

Value of int type metadata. Corresponds to the JSON property intValue

Returns:

  • (Fixnum)


33197
33198
33199
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33197

def int_value
  @int_value
end

#list_valueGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MetadataList

List representation in metadata. Corresponds to the JSON property listValue



33202
33203
33204
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33202

def list_value
  @list_value
end

#str_valueString

Value of string type metadata. Corresponds to the JSON property strValue

Returns:

  • (String)


33207
33208
33209
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33207

def str_value
  @str_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



33214
33215
33216
33217
33218
33219
33220
33221
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33214

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