Subject Patch
data class SubjectPatch(val group: GroupSubjectPatch? = null, val kind: String? = null, val serviceAccount: ServiceAccountSubjectPatch? = null, val user: UserSubjectPatch? = null)
Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.
Constructors
Link copied to clipboard
constructor(group: GroupSubjectPatch? = null, kind: String? = null, serviceAccount: ServiceAccountSubjectPatch? = null, user: UserSubjectPatch? = null)