Authz Policy Http Rule To
data class AuthzPolicyHttpRuleTo(val notOperations: List<AuthzPolicyHttpRuleToNotOperation>? = null, val operations: List<AuthzPolicyHttpRuleToOperation>? = null)
Constructors
Link copied to clipboard
constructor(notOperations: List<AuthzPolicyHttpRuleToNotOperation>? = null, operations: List<AuthzPolicyHttpRuleToOperation>? = null)
Properties
Link copied to clipboard
Describes the negated properties of the targets of a request. Matches requests for operations that do not match the criteria specified in this field. At least one of operations or notOperations must be specified. Structure is documented below.
Link copied to clipboard
Describes properties of one or more targets of a request. At least one of operations or notOperations must be specified. Limited to 5 operations. A match occurs when ANY operation (in operations or notOperations) matches. Within an operation, the match follows AND semantics across fields and OR semantics within a field, i.e. a match occurs when ANY path matches AND ANY header matches and ANY method matches. Structure is documented below.