ConditionOperator type
Defines operators used in filter conditions.
KnownConditionOperator can be used interchangeably with ConditionOperator,
this enum contains the known values that the service supports.
Known values supported by the service
==: Equal to.
!=: Not equal to.
<: Less than.
<=: Less than or equal to.
>: Greater than.
>=: Greater than or equal to.
@in: In operator.
!in: Not in.
startswith: Starts with.
!startswith: Does not start with.
contains: Contains the value.
!contains: Does not contain the value.
type ConditionOperator = string