All Operators
String
All string operators are case insensitive except for ~~=
.
Symbol | Description |
---|---|
| Equal to value |
| Not equal to value |
| Matches pattern with |
| Matches regular expression |
Boolean
Symbol | Description |
---|---|
| Equal to value |
| Not equal to value |
Number and Integer
Symbol | Description |
---|---|
| Equal to value |
| Not equal to value |
| Greater than value |
| Greater than or equal to value |
| Less than value |
| Less than or equal to value |
IP Address
Symbol | Description |
---|---|
| Equal to value |
| Not equal to value |
| Contained in the cidr given by value |
List
Symbol | Description |
---|---|
| Any element of the list |
| Element at index 0 |
Dictionary
Symbol | Description |
---|---|
| Any key of the dictionary |
| Any element at any key |
| Element at the key "foo" |
Last updated