Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureValue
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureValue
- 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
Value for a feature.
Instance Attribute Summary collapse
-
#bool_array_value ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BoolArray
A list of boolean values.
-
#bool_value ⇒ Boolean
(also: #bool_value?)
Bool type feature value.
-
#bytes_value ⇒ String
Bytes feature value.
-
#double_array_value ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DoubleArray
A list of double values.
-
#double_value ⇒ Float
Double type feature value.
-
#int64_array_value ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Int64Array
A list of int64 values.
-
#int64_value ⇒ Fixnum
Int64 feature value.
-
#metadata ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureValueMetadata
Metadata of feature value.
-
#string_array_value ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1StringArray
A list of string values.
-
#string_value ⇒ String
String feature value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1FeatureValue
constructor
A new instance of GoogleCloudAiplatformV1FeatureValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1FeatureValue
Returns a new instance of GoogleCloudAiplatformV1FeatureValue.
6229 6230 6231 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6229 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bool_array_value ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BoolArray
A list of boolean values.
Corresponds to the JSON property boolArrayValue
6180 6181 6182 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6180 def bool_array_value @bool_array_value end |
#bool_value ⇒ Boolean Also known as: bool_value?
Bool type feature value.
Corresponds to the JSON property boolValue
6185 6186 6187 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6185 def bool_value @bool_value end |
#bytes_value ⇒ String
Bytes feature value.
Corresponds to the JSON property bytesValue
NOTE: Values are automatically base64 encoded/decoded in the client library.
6192 6193 6194 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6192 def bytes_value @bytes_value end |
#double_array_value ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DoubleArray
A list of double values.
Corresponds to the JSON property doubleArrayValue
6197 6198 6199 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6197 def double_array_value @double_array_value end |
#double_value ⇒ Float
Double type feature value.
Corresponds to the JSON property doubleValue
6202 6203 6204 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6202 def double_value @double_value end |
#int64_array_value ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Int64Array
A list of int64 values.
Corresponds to the JSON property int64ArrayValue
6207 6208 6209 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6207 def int64_array_value @int64_array_value end |
#int64_value ⇒ Fixnum
Int64 feature value.
Corresponds to the JSON property int64Value
6212 6213 6214 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6212 def int64_value @int64_value end |
#metadata ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureValueMetadata
Metadata of feature value.
Corresponds to the JSON property metadata
6217 6218 6219 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6217 def @metadata end |
#string_array_value ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1StringArray
A list of string values.
Corresponds to the JSON property stringArrayValue
6222 6223 6224 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6222 def string_array_value @string_array_value end |
#string_value ⇒ String
String feature value.
Corresponds to the JSON property stringValue
6227 6228 6229 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6227 def string_value @string_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6234 def update!(**args) @bool_array_value = args[:bool_array_value] if args.key?(:bool_array_value) @bool_value = args[:bool_value] if args.key?(:bool_value) @bytes_value = args[:bytes_value] if args.key?(:bytes_value) @double_array_value = args[:double_array_value] if args.key?(:double_array_value) @double_value = args[:double_value] if args.key?(:double_value) @int64_array_value = args[:int64_array_value] if args.key?(:int64_array_value) @int64_value = args[:int64_value] if args.key?(:int64_value) @metadata = args[:metadata] if args.key?(:metadata) @string_array_value = args[:string_array_value] if args.key?(:string_array_value) @string_value = args[:string_value] if args.key?(:string_value) end |