Get-AzureADServiceAppRoleAssignedTo
Gets app role assignments for this app or service, granted to users, groups and other service principals.
Syntax
Get-AzureADServiceAppRoleAssignedTo
-ObjectId <String>
[-All <Boolean>]
[-Top <Int32>]
[<CommonParameters>]
Description
The Get-AzureADServiceAppRoleAssignedTo cmdlet gets app role assignments for this app or service, granted to users, groups and other service principals.
Examples
Example 1
PS C:\> $ServicePrincipalId = (Get-AzureADServicePrincipal -Top 1).ObjectId
PS C:\> Get-AzureADServiceAppRoleAssignedTo -ObjectId $ServicePrincipalId
The first command gets the ID of a service principal and stores it in the $ServicePrincipalId variable.
The second command gets the app role assignments for the service principal granted to users, groups and other service principals.
Parameters
If true, return all application role assignments. If false, return the number of objects specified by the Top parameter.
| Type: | Boolean |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |
Specifies the ID of a service principal in Azure AD.
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |
Specifies the maximum number of records to return.
| Type: | Int32 |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |
Inputs
System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]