OBJECT
AzureAdRoleAssignment
Description
Represents the details of a role assignment between a principal object, role definition, and scope object.
link GraphQL Schema definition
- type AzureAdRoleAssignment {
- # ID of the Azure AD role assignment.
- : String!
- # ID of the principal object to which the role is assigned.
- : String!
- # Name of the principal object to which the role is assigned.
- : String!
- # Azure AD object to which the role is assigned.
- : PrincipalObject!
- # Type of the principal object.
- : AzureAdRoleAssignmentPrincipalType!
- # ID of the role definition.
- : String!
- # Name of the role object associated with this assignment.
- : String!
- # The Azure AD role object associated with this assignment.
- : AzureAdRole!
- # ID of the directory scope object where the role is assigned.
- : String!
- # Name of the directory scope object where the role is assigned.
- : String!
- # Type of the directory scope object.
- : AzureAdRoleAssignmentScopeType!
- }