Cloud AI Platform v1 API - Enum IndexDatapoint.Types.NumericRestriction.Types.Operator (2.27.0)

public enum IndexDatapoint.Types.NumericRestriction.Types.Operator

Reference documentation and code samples for the Cloud AI Platform v1 API enum IndexDatapoint.Types.NumericRestriction.Types.Operator.

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.

Namespace

Google.Cloud.AIPlatform.V1

Assembly

Google.Cloud.AIPlatform.V1.dll

Fields

NameDescription
Equal

Datapoints are eligible iff their value is == the query's.

Greater

Datapoints are eligible iff their value is > the query's.

GreaterEqual

Datapoints are eligible iff their value is >= the query's.

Less

Datapoints are eligible iff their value is < the query's.

LessEqual

Datapoints are eligible iff their value is <= the query's.

NotEqual

Datapoints are eligible iff their value is != the query's.

Unspecified

Default value of the enum.