Operator Enumeration
Defines the valid operators that can be applied to a key-value pair.
Namespace: GenerativeAI.TypesAssembly: GenerativeAI (in GenerativeAI.dll) Version: 2.0.2+aa51399cad6d90cc71158d589a6268608b3c1893
| OPERATOR_UNSPECIFIED | 0 |
The default value. This value is unused.
|
| LESS | 1 |
Supported by numeric.
|
| LESS_EQUAL | 2 |
Supported by numeric.
|
| EQUAL | 3 |
Supported by numeric & string.
|
| GREATER_EQUAL | 4 |
Supported by numeric.
|
| GREATER | 5 |
Supported by numeric.
|
| NOT_EQUAL | 6 |
Supported by numeric & string.
|
| INCLUDES | 7 |
Supported by string only when CustomMetadata value type for the given key
has a stringListValue.
|
| EXCLUDES | 8 |
Supported by string only when CustomMetadata value type for the given key
has a stringListValue.
|