Module: Google::Cloud::AIPlatform::V1::IndexDatapoint::NumericRestriction::Operator
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/index.rb
Overview
Which comparison operator to use. Should be specified for queries only; specifying this for a datapoint is an error.
Datapoints for which Operator is true relative to the query's Value field will be allowlisted.
Constant Summary collapse
- OPERATOR_UNSPECIFIED =
Default value of the enum.
0
- LESS =
Datapoints are eligible iff their value is < the query's.
1
- LESS_EQUAL =
Datapoints are eligible iff their value is <= the query's.
2
- EQUAL =
Datapoints are eligible iff their value is == the query's.
3
- GREATER_EQUAL =
Datapoints are eligible iff their value is >= the query's.
4
- GREATER =
Datapoints are eligible iff their value is > the query's.
5
- NOT_EQUAL =
Datapoints are eligible iff their value is != the query's.
6