combiningFunction property
How the conditions
list should be combined to determine if a request is
granted this AccessLevel
.
If AND is used, each Condition
in conditions
must be satisfied for the
AccessLevel
to be applied. If OR is used, at least one Condition
in
conditions
must be satisfied for the AccessLevel
to be applied.
Default behavior is AND.
Possible string values are:
- "AND" : All
Conditions
must be true for theBasicLevel
to be true. - "OR" : If at least one
Condition
is true, then theBasicLevel
is true.
Implementation
core.String? combiningFunction;