OBJECT
AuthRoleBinding
link GraphQL Schema definition
- type AuthRoleBinding implements Node {
- # Unique Role Binding ID
- String! :
- # The time of creation
- DateTime! :
- # The user who created the role binding
- User :
- # Group to which role binding is assigned. This field will be populated if role
- # binding is created for a group which the user is part of. This field will be
- # null for USER role bindings
- UserGroup :
- # Opaque global node ID
- ID! :
- # Boolean indicating whether this role bindings is read only. If true, this role
- # binding cannot be deleted by users. This field will be true for auto-synced role
- # bindings
- Boolean! :
- # The provider of this role binding
- AuthRoleBindingProviderEnum! :
- # Role to assign
- AuthRole! :
- # The type of scope.
- AuthRoleBindingScopeType :
- # Scoping Entity of role binding
- Entity :
- # The subject Id string value. For user role binding, this field will contain
- # user's email id. For group role binding, this field will contain the group name.
- String! :
- # The type of the subject
- AuthRoleBindingSubjectType! :
- # User to which the role binding is assigned. This field will be populated if the
- # role binding is created for an user. If a role binding is created for group,
- # this field will be null.
- User :
- }