Policy Rules With Subjects
data class PolicyRulesWithSubjects(val nonResourceRules: List<NonResourcePolicyRule>? = null, val resourceRules: List<ResourcePolicyRule>? = null, val subjects: List<Subject>)
PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.
Constructors
Link copied to clipboard
constructor(nonResourceRules: List<NonResourcePolicyRule>? = null, resourceRules: List<ResourcePolicyRule>? = null, subjects: List<Subject>)
Properties
Link copied to clipboard
nonResourceRules is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.
Link copied to clipboard
resourceRules is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of resourceRules and nonResourceRules has to be non-empty.
Link copied to clipboard