You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Any | Matches when there's any value, regardless of what it is. |`operator`: `Any`|
1757
+
| Equal | Matches when the value exactly matches the specified string. |`operator`: `Equal`|
1758
+
| Contains | Matches when the value contains the specified string. |`operator`: `Contains`|
1759
+
| Less Than | Matches when the length of the value is less than the specified integer. |`operator`: `LessThan`|
1760
+
| Greater Than | Matches when the length of the value is greater than the specified integer. |`operator`: `GreaterThan`|
1761
+
| Less Than or Equal | Matches when the length of the value is less than or equal to the specified integer. |`operator`: `LessThanOrEqual`|
1762
+
| Greater Than or Equal | Matches when the length of the value is greater than or equal to the specified integer. |`operator`: `GreaterThanOrEqual`|
1763
+
| Begins With | Matches when the value begins with the specified string. |`operator`: `BeginsWith`|
1764
+
| Ends With | Matches when the value ends with the specified string. |`operator`: `EndsWith`|
1765
+
| Not Any | Matches when there's no value. |`operator`: `Any` and `negateCondition` : `true`|
1766
+
| Not Equal | Matches when the value doesn't match the specified string. |`operator`: `Equal` and `negateCondition` : `true`|
1767
+
| Not Contains | Matches when the value doesn't contain the specified string. |`operator`: `Contains` and `negateCondition` : `true`|
1768
+
| Not Less Than | Matches when the length of the value isn't less than the specified integer. |`operator`: `LessThan` and `negateCondition` : `true`|
1769
+
| Not Greater Than | Matches when the length of the value isn't greater than the specified integer. |`operator`: `GreaterThan` and `negateCondition` : `true`|
1770
+
| Not Less Than or Equal | Matches when the length of the value isn't less than or equal to the specified integer. |`operator`: `LessThanOrEqual` and `negateCondition` : `true`|
1771
+
| Not Greater Than or Equals | Matches when the length of the value isn't greater than or equal to the specified integer. |`operator`: `GreaterThanOrEqual` and `negateCondition` : `true`|
1772
+
| Not Begins With | Matches when the value doesn't begin with the specified string. |`operator`: `BeginsWith` and `negateCondition` : `true`|
1773
+
| Not Ends With | Matches when the value doesn't end with the specified string. |`operator`: `EndsWith` and `negateCondition` : `true`|
| Any | Matches when there's any value, regardless of what it is. |`operator`: `Any`|
@@ -1772,6 +1799,8 @@ For rules that accept values from the standard operator list, the following oper
1772
1799
| Not Ends With | Matches when the value doesn't end with the specified string. |`operator`: `EndsWith` and `negateCondition` : `true`|
1773
1800
| Not RegEx | Matches when the value doesn't match the specified regular expression. [See below for further details.](#regular-expressions)|`operator`: `RegEx` and `negateCondition` : `true`|
1774
1801
1802
+
::: zone-end
1803
+
1775
1804
> [!TIP]
1776
1805
> For numeric operators like *Less than* and *Greater than or equals*, the comparison used is based on length. The value in the match condition should be an integer that specifies the length you want to compare.
0 commit comments