OBJECT

AuthRoleBinding

link GraphQL Schema definition

  • type AuthRoleBinding implements Node {
  • # Unique Role Binding ID
  • bindingId: String!
  • # The time of creation
  • createdAt: DateTime!
  • # The user who created the role binding
  • createdBy: User
  • # Opaque global node ID
  • id: ID!
  • # Role to assign
  • role: AuthRole!
  • # The type of scope.
  • scopeType: AuthRoleBindingScopeType!
  • # Scoping Entity of role binding
  • scopingEntity: Entity
  • # The type of the subject
  • subjectType: AuthRoleBindingSubjectType!
  • # User (or group or oauth app) identifier to which the rolebinding is assigned
  • user: User!
  • }