diff --git a/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Enable-EntraAzureADAlias.md b/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Enable-EntraAzureADAlias.md index c142285d0..424c7f593 100644 --- a/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Enable-EntraAzureADAlias.md +++ b/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Enable-EntraAzureADAlias.md @@ -1,4 +1,14 @@ --- +title: Enable-EntraAzureADAlias +description: This article provides details on the Enable-EntraAzureADAlias command. + +ms.topic: reference +ms.date: 06/26/2024 +ms.author: eunicewaweru +ms.reviewer: stevemutungi +manager: CelesteDG +author: msewaweru + external help file: Microsoft.Graph.Entra.Beta-help.xml Module Name: Microsoft.Graph.Entra.Beta online version: https://learn.microsoft.com/powershell/module/Microsoft.Graph.Entra.Beta/Enable-EntraAzureADAlias @@ -9,25 +19,28 @@ schema: 2.0.0 # Enable-EntraAzureADAlias ## Synopsis -{{ Fill in the Synopsis }} + +Enables aliases for AzureAD commands. ## Syntax -``` +```powershell Enable-EntraAzureADAlias ``` ## Description -{{ Fill in the Description }} + +Enables Azure AD command aliases in the current PowerShell session. ## Examples -### Example 1 +### Example 1: Enable aliasing + ```powershell -PS C:\> {{ Add example code here }} +Enable-EntraAzureADAlias ``` -{{ Add example description here }} +Enables all Azure AD prefixes for the current PowerShell session. ## Parameters @@ -38,6 +51,7 @@ PS C:\> {{ Add example code here }} ## Outputs ### System.Object + ## Notes ## Related Links diff --git a/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraBetaApplication.md b/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraBetaApplication.md index a1fa39344..7b38240f0 100644 --- a/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraBetaApplication.md +++ b/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraBetaApplication.md @@ -98,7 +98,7 @@ This example demonstrates how to get all applications from Microsoft Entra ID. ```powershell Connect-Entra -Scopes 'Application.Read.All' -Get-EntraApplication | +Get-EntraBetaApplication | Where-Object { $_.PasswordCredentials.keyId -ne $null -and $_.PasswordCredentials.EndDateTime -lt (Get-Date).AddDays(30) diff --git a/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraBetaGroupMember.md b/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraBetaGroupMember.md index 761661f95..452427393 100644 --- a/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraBetaGroupMember.md +++ b/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraBetaGroupMember.md @@ -115,7 +115,7 @@ This example retrieves all members within a group by group ID. ```powershell Connect-Entra -Scopes 'GroupMember.Read.All' -Get-EntraGroupMember -ObjectId 'tttttttt-0000-2222-0000-aaaaaaaaaaaa' | Select-Object DisplayName, '@odata.type' +Get-EntraBetaGroupMember -ObjectId 'tttttttt-0000-2222-0000-aaaaaaaaaaaa' | Select-Object DisplayName, '@odata.type' ``` ```Output diff --git a/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraBetaUserOAuth2PermissionGrant.md b/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraBetaUserOAuth2PermissionGrant.md index 417f429e1..9984a83a8 100644 --- a/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraBetaUserOAuth2PermissionGrant.md +++ b/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraBetaUserOAuth2PermissionGrant.md @@ -72,7 +72,7 @@ This example retrieves the OAuth2 permission grants for a user using the ObjectI ```powershell Connect-Entra -Scopes 'Directory.Read.All' -Get-EntraUserOAuth2PermissionGrant -ObjectId 'SawyerM@contoso.com' +Get-EntraBetaUserOAuth2PermissionGrant -ObjectId 'SawyerM@contoso.com' ``` ```Output diff --git a/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraUnsupportedCommand.md b/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraUnsupportedCommand.md deleted file mode 100644 index f9e2b4fc5..000000000 --- a/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraUnsupportedCommand.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -external help file: Microsoft.Graph.Entra.Beta-help.xml -Module Name: Microsoft.Graph.Entra.Beta -online version: https://learn.microsoft.com/powershell/module/Microsoft.Graph.Entra.Beta/Get-EntraUnsupportedCommand - -schema: 2.0.0 ---- - -# Get-EntraUnsupportedCommand - -## Synopsis -{{ Fill in the Synopsis }} - -## Syntax - -``` -Get-EntraUnsupportedCommand -``` - -## Description -{{ Fill in the Description }} - -## Examples - -### Example 1 -```powershell -PS C:\> {{ Add example code here }} -``` - -{{ Add example description here }} - -## Parameters - -## Inputs - -### None - -## Outputs - -### System.Object -## Notes - -## Related Links diff --git a/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Set-EntraBetaIdentityProvider.md b/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Set-EntraBetaIdentityProvider.md index ce514ef66..294f7a769 100644 --- a/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Set-EntraBetaIdentityProvider.md +++ b/module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Set-EntraBetaIdentityProvider.md @@ -67,7 +67,7 @@ $params = @{ Id = 'Google-OAuth' ClientSecret = 'NewClientSecret' } -Set-EntraBetadentityProvider @params +Set-EntraBetaIdentityProvider @params ``` This example updates the client secret for the specified identity provider. diff --git a/module/docs/entra-powershell-beta/toc.yml b/module/docs/entra-powershell-beta/toc.yml index f3558f534..053bb5d05 100644 --- a/module/docs/entra-powershell-beta/toc.yml +++ b/module/docs/entra-powershell-beta/toc.yml @@ -22,8 +22,8 @@ href: Microsoft.Graph.Entra.Beta/Add-EntraBetaAdministrativeUnitMember.md - name: Add-EntraBetaApplicationOwner href: Microsoft.Graph.Entra.Beta/Add-EntraBetaApplicationOwner.md - - name: Add-EntraBetacustomSecurityAttributeDefinitionAllowedValues - href: Microsoft.Graph.Entra.Beta/Add-EntraBetacustomSecurityAttributeDefinitionAllowedValues.md + - name: Add-EntraBetacustomSecurityAttributeDefinitionAllowedValue + href: Microsoft.Graph.Entra.Beta/Add-EntraBetacustomSecurityAttributeDefinitionAllowedValue.md - name: Add-EntraBetaFeatureRolloutPolicyDirectoryObject href: Microsoft.Graph.Entra.Beta/Add-EntraBetaFeatureRolloutPolicyDirectoryObject.md - name: Add-EntraBetaLifecyclePolicyGroup @@ -40,8 +40,8 @@ href: Microsoft.Graph.Entra.Beta/Add-EntraBetaServicePrincipalPolicy.md - name: Confirm-EntraBetaDomain href: Microsoft.Graph.Entra.Beta/Confirm-EntraBetaDomain.md - - name: Convert-EntraBetaFederatedUser - href: Microsoft.Graph.Entra.Beta/Convert-EntraBetaFederatedUser.md + - name: Update-EntraBetaUserFromFederated + href: Microsoft.Graph.Entra.Beta/Update-EntraBetaUserFromFederated.md - name: Enable-EntraAzureADAlias href: Microsoft.Graph.Entra.Beta/Enable-EntraAzureADAlias.md - name: Enable-EntraBetaDirectoryRole @@ -68,10 +68,10 @@ href: Microsoft.Graph.Entra.Beta/Get-EntraBetaApplicationSignInDetailedSummary.md - name: Get-EntraBetaApplicationSignInSummary href: Microsoft.Graph.Entra.Beta/Get-EntraBetaApplicationSignInSummary.md - - name: Get-EntraBetaAuditDirectoryLogs - href: Microsoft.Graph.Entra.Beta/Get-EntraBetaAuditDirectoryLogs.md - - name: Get-EntraBetaAuditSignInLogs - href: Microsoft.Graph.Entra.Beta/Get-EntraBetaAuditSignInLogs.md + - name: Get-EntraBetaAuditDirectoryLog + href: Microsoft.Graph.Entra.Beta/Get-EntraBetaAuditDirectoryLog.md + - name: Get-EntraBetaAuditSignInLog + href: Microsoft.Graph.Entra.Beta/Get-EntraBetaAuditSignInLog.md - name: Get-EntraBetaContact href: Microsoft.Graph.Entra.Beta/Get-EntraBetaContact.md - name: Get-EntraBetaContactDirectReport @@ -124,8 +124,8 @@ href: Microsoft.Graph.Entra.Beta/Get-EntraBetaGroupMember.md - name: Get-EntraBetaGroupOwner href: Microsoft.Graph.Entra.Beta/Get-EntraBetaGroupOwner.md - - name: Get-EntraBetaHasObjectsWithDirSyncProvisioningError - href: Microsoft.Graph.Entra.Beta/Get-EntraBetaHasObjectsWithDirSyncProvisioningError.md + - name: Get-EntraBetaDirectoryObjectOnPremisesProvisioningError + href: Microsoft.Graph.Entra.Beta/Get-EntraBetaDirectoryObjectOnPremisesProvisioningError.md - name: Get-EntraBetaAdministrativeUnit href: Microsoft.Graph.Entra.Beta/Get-EntraBetaAdministrativeUnit.md - name: Get-EntraBetaAdministrativeUnitMember @@ -180,10 +180,10 @@ href: Microsoft.Graph.Entra.Beta/Get-EntraBetaPrivilegedRoleDefinition.md - name: Get-EntraBetaPrivilegedRoleSetting href: Microsoft.Graph.Entra.Beta/Get-EntraBetaPrivilegedRoleSetting.md - - name: Get-EntraBetaRoleAssignment - href: Microsoft.Graph.Entra.Beta/Get-EntraBetaRoleAssignment.md - - name: Get-EntraBetaRoleDefinition - href: Microsoft.Graph.Entra.Beta/Get-EntraBetaRoleDefinition.md + - name: Get-EntraBetaDirectoryRoleAssignment + href: Microsoft.Graph.Entra.Beta/Get-EntraBetaDirectoryRoleAssignment.md + - name: Get-EntraBetaDirectoryRoleDefinition + href: Microsoft.Graph.Entra.Beta/Get-EntraBetaDirectoryRoleDefinition.md - name: Get-EntraBetaScopedRoleMembership href: Microsoft.Graph.Entra.Beta/Get-EntraBetaScopedRoleMembership.md - name: Get-EntraBetaServicePrincipal @@ -212,10 +212,10 @@ href: Microsoft.Graph.Entra.Beta/Get-EntraBetaPrivilegedRole.md - name: Get-EntraBetaScopedRoleMembership href: Microsoft.Graph.Entra.Beta/Get-EntraBetaScopedRoleMembership.md - - name: Get-EntraBetaServiceAppRoleAssignedTo - href: Microsoft.Graph.Entra.Beta/Get-EntraBetaServiceAppRoleAssignedTo.md - - name: Get-EntraBetaServiceAppRoleAssignment - href: Microsoft.Graph.Entra.Beta/Get-EntraBetaServiceAppRoleAssignment.md + - name: Get-EntraBetaServicePrincipalAppRoleAssignedTo + href: Microsoft.Graph.Entra.Beta/Get-EntraBetaServicePrincipalAppRoleAssignedTo.md + - name: Get-EntraBetaServicePrincipalAppRoleAssignment + href: Microsoft.Graph.Entra.Beta/Get-EntraBetaServicePrincipalAppRoleAssignment.md - name: Get-EntraBetaServicePrincipal href: Microsoft.Graph.Entra.Beta/Get-EntraBetaServicePrincipal.md - name: Get-EntraBetaServicePrincipalCreatedObject @@ -266,8 +266,6 @@ href: Microsoft.Graph.Entra.Beta/Get-EntraBetaUserRegisteredDevice.md - name: Get-EntraBetaUserThumbnailPhoto href: Microsoft.Graph.Entra.Beta/Get-EntraBetaUserThumbnailPhoto.md - - name: Get-EntraUnsupportedCommand - href: Microsoft.Graph.Entra.Beta/Get-EntraUnsupportedCommand.md - name: New-EntraBetaAdministrativeUnit href: Microsoft.Graph.Entra.Beta/New-EntraBetaAdministrativeUnit.md - name: New-EntraBetaApplication @@ -326,10 +324,10 @@ href: Microsoft.Graph.Entra.Beta/New-EntraBetaPermissionGrantConditionSet.md - name: New-EntraBetaPermissionGrantPolicy href: Microsoft.Graph.Entra.Beta/New-EntraBetaPermissionGrantPolicy.md - - name: New-EntraBetaRoleAssignment - href: Microsoft.Graph.Entra.Beta/New-EntraBetaRoleAssignment.md - - name: New-EntraBetaRoleDefinition - href: Microsoft.Graph.Entra.Beta/New-EntraBetaRoleDefinition.md + - name: New-EntraBetaDirectoryRoleAssignment + href: Microsoft.Graph.Entra.Beta/New-EntraBetaDirectoryRoleAssignment.md + - name: New-EntraBetaDirectoryRoleDefinition + href: Microsoft.Graph.Entra.Beta/New-EntraBetaDirectoryRoleDefinition.md - name: New-EntraBetaServicePrincipal href: Microsoft.Graph.Entra.Beta/New-EntraBetaServicePrincipal.md - name: New-EntraBetaTrustFrameworkPolicy @@ -342,8 +340,8 @@ href: Microsoft.Graph.Entra.Beta/New-EntraBetaPolicy.md - name: New-EntraBetaPrivilegedRoleAssignment href: Microsoft.Graph.Entra.Beta/New-EntraBetaPrivilegedRoleAssignment.md - - name: New-EntraBetaServiceAppRoleAssignment - href: Microsoft.Graph.Entra.Beta/New-EntraBetaServiceAppRoleAssignment.md + - name: New-EntraBetaServicePrincipalAppRoleAssignment + href: Microsoft.Graph.Entra.Beta/New-EntraBetaServicePrincipalAppRoleAssignment.md - name: New-EntraBetaServicePrincipal href: Microsoft.Graph.Entra.Beta/New-EntraBetaServicePrincipal.md - name: New-EntraBetaTrustedCertificateAuthority @@ -432,10 +430,10 @@ href: Microsoft.Graph.Entra.Beta/Remove-EntraBetaPermissionGrantConditionSet.md - name: Remove-EntraBetaPermissionGrantPolicy href: Microsoft.Graph.Entra.Beta/Remove-EntraBetaPermissionGrantPolicy.md - - name: Remove-EntraBetaRoleAssignment - href: Microsoft.Graph.Entra.Beta/Remove-EntraBetaRoleAssignment.md - - name: Remove-EntraBetaRoleDefinition - href: Microsoft.Graph.Entra.Beta/Remove-EntraBetaRoleDefinition.md + - name: Remove-EntraBetaDirectoryRoleAssignment + href: Microsoft.Graph.Entra.Beta/Remove-EntraBetaDirectoryRoleAssignment.md + - name: Remove-EntraBetaDirectoryRoleDefinition + href: Microsoft.Graph.Entra.Beta/Remove-EntraBetaDirectoryRoleDefinition.md - name: Remove-EntraBetaScopedRoleMembership href: Microsoft.Graph.Entra.Beta/Remove-EntraBetaScopedRoleMembership.md - name: Remove-EntraBetaServicePrincipalDelegatedPermissionClassification @@ -450,8 +448,8 @@ href: Microsoft.Graph.Entra.Beta/Remove-EntraBetaPolicy.md - name: Remove-EntraBetaScopedRoleMembership href: Microsoft.Graph.Entra.Beta/Remove-EntraBetaScopedRoleMembership.md - - name: Remove-EntraBetaServiceAppRoleAssignment - href: Microsoft.Graph.Entra.Beta/Remove-EntraBetaServiceAppRoleAssignment.md + - name: Remove-EntraBetaServicePrincipalAppRoleAssignment + href: Microsoft.Graph.Entra.Beta/Remove-EntraBetaServicePrincipalAppRoleAssignment.md - name: Remove-EntraBetaServicePrincipal href: Microsoft.Graph.Entra.Beta/Remove-EntraBetaServicePrincipal.md - name: Remove-EntraBetaServicePrincipalOwner @@ -544,8 +542,8 @@ href: Microsoft.Graph.Entra.Beta/Set-EntraBetaPrivilegedRoleAssignmentRequest.md - name: Set-EntraBetaPrivilegedRoleSetting href: Microsoft.Graph.Entra.Beta/Set-EntraBetaPrivilegedRoleSetting.md - - name: Set-EntraBetaRoleDefinition - href: Microsoft.Graph.Entra.Beta/Set-EntraBetaRoleDefinition.md + - name: Set-EntraBetaDirectoryRoleDefinition + href: Microsoft.Graph.Entra.Beta/Set-EntraBetaDirectoryRoleDefinition.md - name: Set-EntraBetaServicePrincipal href: Microsoft.Graph.Entra.Beta/Set-EntraBetaServicePrincipal.md - name: Set-EntraBetaTrustFrameworkPolicy diff --git a/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Enable-EntraAzureADAlias.md b/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Enable-EntraAzureADAlias.md index 57f1b1813..7667dcb6b 100644 --- a/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Enable-EntraAzureADAlias.md +++ b/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Enable-EntraAzureADAlias.md @@ -2,13 +2,13 @@ title: Enable-EntraAzureADAlias description: This article provides details on the Enable-EntraAzureADAlias command. - ms.topic: reference ms.date: 06/26/2024 ms.author: eunicewaweru ms.reviewer: stevemutungi manager: CelesteDG author: msewaweru + external help file: Microsoft.Graph.Entra-Help.xml Module Name: Microsoft.Graph.Entra online version: https://learn.microsoft.com/powershell/module/Microsoft.Graph.Entra/Enable-EntraAzureADAlias @@ -20,7 +20,7 @@ schema: 2.0.0 ## Synopsis -Enables aliases for AzureAD modules. +Enables aliases for AzureAD commands. ## Syntax @@ -30,11 +30,11 @@ Enable-EntraAzureADAlias ## Description -Enables aliases for Azure AD modules. +Enables Azure AD command aliases in the current PowerShell session. ## Examples -### Example 1 +### Example 1: Enable aliasing ```powershell Enable-EntraAzureADAlias diff --git a/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Find-EntraPermission.md b/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Find-EntraPermission.md index 13859ff3d..4ade51539 100644 --- a/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Find-EntraPermission.md +++ b/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Find-EntraPermission.md @@ -31,7 +31,6 @@ Find-EntraPermission [-SearchString] [-ExactMatch] [-PermissionType ] - [-Online] [-ProgressAction ] [] ``` diff --git a/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Get-EntraUnsupportedCommand.md b/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Get-EntraUnsupportedCommand.md deleted file mode 100644 index 4afa482b1..000000000 --- a/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Get-EntraUnsupportedCommand.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -external help file: Microsoft.Graph.Entra-help.xml -Module Name: Microsoft.Graph.Entra -online version: https://learn.microsoft.com/powershell/module/Microsoft.Graph.Entra/Get-EntraUnsupportedCommand - -schema: 2.0.0 ---- - -# Get-EntraUnsupportedCommand - -## Synopsis -{{ Fill in the Synopsis }} - -## Syntax - -``` -Get-EntraUnsupportedCommand -``` - -## Description -{{ Fill in the Description }} - -## Examples - -### Example 1 -```powershell -PS C:\> {{ Add example code here }} -``` - -{{ Add example description here }} - -## Parameters - -## Inputs - -### None - -## Outputs - -### System.Object -## Notes - -## Related Links diff --git a/module/docs/entra-powershell-v1.0/toc.yml b/module/docs/entra-powershell-v1.0/toc.yml index a43b2eac1..bef47c3ec 100644 --- a/module/docs/entra-powershell-v1.0/toc.yml +++ b/module/docs/entra-powershell-v1.0/toc.yml @@ -26,8 +26,8 @@ href: Microsoft.Graph.Entra/Add-EntraServicePrincipalOwner.md - name: Confirm-EntraDomain href: Microsoft.Graph.Entra/Confirm-EntraDomain.md - - name: Convert-EntraFederatedUser - href: Microsoft.Graph.Entra/Convert-EntraFederatedUser.md + - name: Update-EntraUserFromFederated + href: Microsoft.Graph.Entra/Update-EntraUserFromFederated.md - name: Enable-EntraAzureADAlias href: Microsoft.Graph.Entra/Enable-EntraAzureADAlias.md - name: Enable-EntraDirectoryRole @@ -98,8 +98,8 @@ href: Microsoft.Graph.Entra/Get-EntraGroupMember.md - name: Get-EntraGroupOwner href: Microsoft.Graph.Entra/Get-EntraGroupOwner.md - - name: Get-EntraHasObjectsWithDirSyncProvisioningError - href: Microsoft.Graph.Entra/Get-EntraHasObjectsWithDirSyncProvisioningError.md + - name: Get-EntraDirectoryObjectOnPremisesProvisioningError + href: Microsoft.Graph.Entra/Get-EntraDirectoryObjectOnPremisesProvisioningError.md - name: Get-EntraAdministrativeUnit href: Microsoft.Graph.Entra/Get-EntraAdministrativeUnit.md - name: Get-EntraAdministrativeUnitMember @@ -134,10 +134,10 @@ href: Microsoft.Graph.Entra/Get-EntraPermissionGrantConditionSet.md - name: Get-EntraPermissionGrantPolicy href: Microsoft.Graph.Entra/Get-EntraPermissionGrantPolicy.md - - name: Get-EntraRoleAssignment - href: Microsoft.Graph.Entra/Get-EntraRoleAssignment.md - - name: Get-EntraRoleDefinition - href: Microsoft.Graph.Entra/Get-EntraRoleDefinition.md + - name: Get-EntraDirectoryRoleAssignment + href: Microsoft.Graph.Entra/Get-EntraDirectoryRoleAssignment.md + - name: Get-EntraDirectoryRoleDefinition + href: Microsoft.Graph.Entra/Get-EntraDirectoryRoleDefinition.md - name: Get-EntraScopedRoleMembership href: Microsoft.Graph.Entra/Get-EntraScopedRoleMembership.md - name: Get-EntraOAuth2PermissionGrant @@ -148,10 +148,10 @@ href: Microsoft.Graph.Entra/Get-EntraPartnerInformation.md - name: Get-EntraPasswordPolicy href: Microsoft.Graph.Entra/Get-EntraPasswordPolicy.md - - name: Get-EntraServiceAppRoleAssignedTo - href: Microsoft.Graph.Entra/Get-EntraServiceAppRoleAssignedTo.md - - name: Get-EntraServiceAppRoleAssignment - href: Microsoft.Graph.Entra/Get-EntraServiceAppRoleAssignment.md + - name: Get-EntraServicePrincipalAppRoleAssignedTo + href: Microsoft.Graph.Entra/Get-EntraServicePrincipalAppRoleAssignedTo.md + - name: Get-EntraServicePrincipalAppRoleAssignment + href: Microsoft.Graph.Entra/Get-EntraServicePrincipalAppRoleAssignment.md - name: Get-EntraServicePrincipal href: Microsoft.Graph.Entra/Get-EntraServicePrincipal.md - name: Get-EntraServicePrincipalCreatedObject @@ -174,8 +174,6 @@ href: Microsoft.Graph.Entra/Get-EntraTenantDetail.md - name: Get-EntraTrustedCertificateAuthority href: Microsoft.Graph.Entra/Get-EntraTrustedCertificateAuthority.md - - name: Get-EntraUnsupportedCommand - href: Microsoft.Graph.Entra/Get-EntraUnsupportedCommand.md - name: Get-EntraUser href: Microsoft.Graph.Entra/Get-EntraUser.md - name: Get-EntraUserAppRoleAssignment @@ -244,12 +242,12 @@ href: Microsoft.Graph.Entra/New-EntraPermissionGrantConditionSet.md - name: New-EntraPermissionGrantPolicy href: Microsoft.Graph.Entra/New-EntraPermissionGrantPolicy.md - - name: New-EntraRoleAssignment - href: Microsoft.Graph.Entra/New-EntraRoleAssignment.md - - name: New-EntraRoleDefinition - href: Microsoft.Graph.Entra/New-EntraRoleDefinition.md - - name: New-EntraServiceAppRoleAssignment - href: Microsoft.Graph.Entra/New-EntraServiceAppRoleAssignment.md + - name: New-EntraDirectoryRoleAssignment + href: Microsoft.Graph.Entra/New-EntraDirectoryRoleAssignment.md + - name: New-EntraDirectoryRoleDefinition + href: Microsoft.Graph.Entra/New-EntraDirectoryRoleDefinition.md + - name: New-EntraServicePrincipalAppRoleAssignment + href: Microsoft.Graph.Entra/New-EntraServicePrincipalAppRoleAssignment.md - name: New-EntraServicePrincipal href: Microsoft.Graph.Entra/New-EntraServicePrincipal.md - name: New-EntraServicePrincipalPasswordCredential @@ -326,16 +324,16 @@ href: Microsoft.Graph.Entra/Remove-EntraPermissionGrantConditionSet.md - name: Remove-EntraPermissionGrantPolicy href: Microsoft.Graph.Entra/Remove-EntraPermissionGrantPolicy.md - - name: Remove-EntraRoleAssignment - href: Microsoft.Graph.Entra/Remove-EntraRoleAssignment.md - - name: Remove-EntraRoleDefinition - href: Microsoft.Graph.Entra/Remove-EntraRoleDefinition.md + - name: Remove-EntraDirectoryRoleAssignment + href: Microsoft.Graph.Entra/Remove-EntraDirectoryRoleAssignment.md + - name: Remove-EntraDirectoryRoleDefinition + href: Microsoft.Graph.Entra/Remove-EntraDirectoryRoleDefinition.md - name: Remove-EntraScopedRoleMembership href: Microsoft.Graph.Entra/Remove-EntraScopedRoleMembership.md - name: Remove-EntraOAuth2PermissionGrant href: Microsoft.Graph.Entra/Remove-EntraOAuth2PermissionGrant.md - - name: Remove-EntraServiceAppRoleAssignment - href: Microsoft.Graph.Entra/Remove-EntraServiceAppRoleAssignment.md + - name: Remove-EntraServicePrincipalAppRoleAssignment + href: Microsoft.Graph.Entra/Remove-EntraServicePrincipalAppRoleAssignment.md - name: Remove-EntraServicePrincipal href: Microsoft.Graph.Entra/Remove-EntraServicePrincipal.md - name: Remove-EntraServicePrincipalKeyCredential @@ -412,8 +410,8 @@ href: Microsoft.Graph.Entra/Set-EntraPermissionGrantConditionSet.md - name: Set-EntraPermissionGrantPolicy href: Microsoft.Graph.Entra/Set-EntraPermissionGrantPolicy.md - - name: Set-EntraRoleDefinition - href: Microsoft.Graph.Entra/Set-EntraRoleDefinition.md + - name: Set-EntraDirectoryRoleDefinition + href: Microsoft.Graph.Entra/Set-EntraDirectoryRoleDefinition.md - name: Set-EntraServicePrincipal href: Microsoft.Graph.Entra/Set-EntraServicePrincipal.md - name: Set-EntraTenantDetail