Policy Custom Rule Match Condition
data class PolicyCustomRuleMatchCondition(val matchValues: List<String>? = null, val matchVariables: List<PolicyCustomRuleMatchConditionMatchVariable>, val negationCondition: Boolean? = null, val operator: String, val transforms: List<String>? = null)
Properties
Link copied to clipboard
A list of match values. This is Required when the operator
is not Any
.
Link copied to clipboard
One or more match_variables
blocks as defined below.
Link copied to clipboard
Describes if this is negate condition or not
Link copied to clipboard
A list of transformations to do before the match is attempted. Possible values are HtmlEntityDecode
, Lowercase
, RemoveNulls
, Trim
, Uppercase
, UrlDecode
and UrlEncode
.