Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MemoryMetadataValue

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

Memory metadata.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1MemoryMetadataValue

Returns a new instance of GoogleCloudAiplatformV1beta1MemoryMetadataValue.



32802
32803
32804
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32802

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

Instance Attribute Details

#bool_valueBoolean Also known as: bool_value?

Represents a boolean value. Corresponds to the JSON property boolValue

Returns:

  • (Boolean)


32783
32784
32785
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32783

def bool_value
  @bool_value
end

#double_valueFloat

Represents a double value. Corresponds to the JSON property doubleValue

Returns:

  • (Float)


32789
32790
32791
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32789

def double_value
  @double_value
end

#string_valueString

Represents a string value. Corresponds to the JSON property stringValue

Returns:

  • (String)


32794
32795
32796
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32794

def string_value
  @string_value
end

#timestamp_valueString

Represents a timestamp value. When filtering on timestamp values, only the seconds field will be compared. Corresponds to the JSON property timestampValue

Returns:

  • (String)


32800
32801
32802
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32800

def timestamp_value
  @timestamp_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



32807
32808
32809
32810
32811
32812
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32807

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