OBJECT
Role
Description
RBAC role.
link GraphQL Schema definition
- type Role {
- # Clusters to which role is already synced.
- : Int!
- # Role description.
- : String!
- # Role permissions that are in effect.
- : [Permission!]! @deprecated( reason: "Use effectiveRbacPermissions instead." )
- # Permissions assigned to the role that are in effect.
- : [RbacPermission!]!
- # Explicit list of protectable Rubrik clusters.
- : [String!]
- # Role permissions that are explicitly assigned by user.
- : [Permission!]!
- # Role ID.
- : String!
- # If this role is a tenant organization administrator.
- : Boolean!
- # Boolean value indicating if the role is read-only.
- : Boolean!
- # Whether the role is marked to be synced.
- : Boolean!
- # Role name.
- : String!
- # Role organization ID.
- : String!
- # Paginated list of clusters to which this role is synchronized.
- #
- # Arguments
- # first: Returns the first n elements from the list.
- # after: Returns the elements in the list that occur after the
- # specified cursor.
- # last: Returns the last n elements from the list.
- # before: Returns the elements in the list that occur before the
- # specified cursor.
- # sortOrder: Sorts the order of results.
- (
- : Int,
- : String,
- : Int,
- : String,
- : SortOrder
- ): SyncedClusterConnection!
- # Role permissions.
- : [Permission!]! @deprecated( reason: "Use effectiveRbacPermissions and explicitlyAssignedPermissions instead." )
- # List of protectable Rubrik clusters.
- : [String!]!
- # Explicit list of clusters to which role is synced.
- : [SyncedCluster!]! @deprecated( reason: "Deprecated: use paginatedSyncedClusters instead" )
- }
link Require by
- AuthorizedPrincipalLDAP authorized principal.
- GroupUser group details.
- OrgDetails of an org.
- Query
- RoleAssignmentRole assignment details.
- RoleConnectionPaginated list of Role objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- RoleEdgeWrapper around the Role object. This wrapper is used for pagination.
- ServiceAccountService Account.
- UserUser account details.