Policy Rules With Subjects Patch Args
data class PolicyRulesWithSubjectsPatchArgs(val nonResourceRules: Output<List<NonResourcePolicyRulePatchArgs>>? = null, val resourceRules: Output<List<ResourcePolicyRulePatchArgs>>? = null, val subjects: Output<List<SubjectPatchArgs>>? = null) : ConvertibleToJava<PolicyRulesWithSubjectsPatchArgs>
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
fun PolicyRulesWithSubjectsPatchArgs(nonResourceRules: Output<List<NonResourcePolicyRulePatchArgs>>? = null, resourceRules: Output<List<ResourcePolicyRulePatchArgs>>? = null, subjects: Output<List<SubjectPatchArgs>>? = null)