Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexDatapointNumericRestriction
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexDatapointNumericRestriction
- 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
This field allows restricts to be based on numeric comparisons rather than categorical tokens.
Instance Attribute Summary collapse
-
#namespace ⇒ String
The namespace of this restriction.
-
#op ⇒ String
This MUST be specified for queries and must NOT be specified for datapoints.
-
#value_double ⇒ Float
Represents 64 bit float.
-
#value_float ⇒ Float
Represents 32 bit float.
-
#value_int ⇒ Fixnum
Represents 64 bit integer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1IndexDatapointNumericRestriction
constructor
A new instance of GoogleCloudAiplatformV1IndexDatapointNumericRestriction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1IndexDatapointNumericRestriction
Returns a new instance of GoogleCloudAiplatformV1IndexDatapointNumericRestriction.
10066 10067 10068 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10066 def initialize(**args) update!(**args) end |
Instance Attribute Details
#namespace ⇒ String
The namespace of this restriction. e.g.: cost.
Corresponds to the JSON property namespace
10044 10045 10046 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10044 def namespace @namespace end |
#op ⇒ String
This MUST be specified for queries and must NOT be specified for datapoints.
Corresponds to the JSON property op
10049 10050 10051 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10049 def op @op end |
#value_double ⇒ Float
Represents 64 bit float.
Corresponds to the JSON property valueDouble
10054 10055 10056 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10054 def value_double @value_double end |
#value_float ⇒ Float
Represents 32 bit float.
Corresponds to the JSON property valueFloat
10059 10060 10061 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10059 def value_float @value_float end |
#value_int ⇒ Fixnum
Represents 64 bit integer.
Corresponds to the JSON property valueInt
10064 10065 10066 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10064 def value_int @value_int end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10071 10072 10073 10074 10075 10076 10077 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10071 def update!(**args) @namespace = args[:namespace] if args.key?(:namespace) @op = args[:op] if args.key?(:op) @value_double = args[:value_double] if args.key?(:value_double) @value_float = args[:value_float] if args.key?(:value_float) @value_int = args[:value_int] if args.key?(:value_int) end |