NOT EQUAL
This operator is not case sensitive and returns True if the compared expressions are not equal. The full list does not have to match when a value used in an expression exists in a list.
Syntax:
(EXPRESSION) != (EXPRESSION)
Examples and results:
Example | Result |
---|---|
Given that @org = "uk" in the access request | resource.@org != "UK" evaluates to False because the operator is not case sensitive. |
Given that @org = "UK" in the access request | resource.@org != "UK" evaluates to False. |
Given that @org = "United Kingdom"in the access request | resource.@org != "UK" evaluates to True. |
resource.groups = user.groups | Evaluates to False if the properties of the groups are the same irrespective of case. Otherwise True. |
Did this page help you?
If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!