OBJECT

Role

Description

RBAC role.

link GraphQL Schema definition

  • type Role {
  • # Role ID.
  • id: String!
  • # Role name.
  • name: String!
  • # Role description.
  • description: String!
  • # Boolean value indicating if the role is read-only.
  • isReadOnly: Boolean!
  • # List of protectable Rubrik clusters.
  • protectableClusters: [String!]!
  • # Role organization ID.
  • orgId: String!
  • # If this role is a tenant organization administrator.
  • isOrgAdmin: Boolean!
  • # Role permissions.
  • permissions: [Permission!]!
  • # Role permissions that are in effect.
  • effectivePermissions: [Permission!]!
  • # Permissions assigned to the role that are in effect.
  • effectiveRbacPermissions: [RbacPermission!]!
  • # Role permissions that are explicitly assigned by user.
  • explicitlyAssignedPermissions: [Permission!]!
  • }