From e740d3a10eb55df4b818b10234f35f60c67b00a9 Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Fri, 27 Sep 2024 12:26:56 +0000 Subject: [PATCH 01/14] Fixed mixed example - Add-EntraDeviceRegisteredOwner --- .../Microsoft.Graph.Entra/Add-EntraDeviceRegisteredOwner.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Add-EntraDeviceRegisteredOwner.md b/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Add-EntraDeviceRegisteredOwner.md index 0a51c37d3..39fcd1db9 100644 --- a/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Add-EntraDeviceRegisteredOwner.md +++ b/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Add-EntraDeviceRegisteredOwner.md @@ -47,7 +47,7 @@ $params = @{ ObjectId = $Device.ObjectId RefObjectId = $User.ObjectId } -Add-EntraDeviceRegisteredUser @params +Add-EntraDeviceRegisteredOwner @params ``` This example shows how to add a registered user to a device. From be6b5d78ce791028c40f236e652539ed02228aeb Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Fri, 27 Sep 2024 12:39:04 +0000 Subject: [PATCH 02/14] Fixing example - Set-EntraIdentityProvider --- .../Microsoft.Graph.Entra/Set-EntraIdentityProvider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Set-EntraIdentityProvider.md b/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Set-EntraIdentityProvider.md index 8f9fc6cd6..facdf7069 100644 --- a/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Set-EntraIdentityProvider.md +++ b/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Set-EntraIdentityProvider.md @@ -67,7 +67,7 @@ $params = @{ Id = 'Google-OAuth' ClientSecret = 'NewClientSecret' } -Set-EntradentityProvider @params +Set-EntraIdentityProvider @params ``` This example updates the client secret for the specified identity provider. From 069cee02f20ce8cb5dab27e16fae451fa5f127a7 Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Fri, 27 Sep 2024 12:40:22 +0000 Subject: [PATCH 03/14] Fixed Remove-EntraDeviceRegisteredUser --- .../Microsoft.Graph.Entra/Remove-EntraDeviceRegisteredUser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Remove-EntraDeviceRegisteredUser.md b/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Remove-EntraDeviceRegisteredUser.md index 4b1a2c4c9..90f16fbec 100644 --- a/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Remove-EntraDeviceRegisteredUser.md +++ b/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Remove-EntraDeviceRegisteredUser.md @@ -43,7 +43,7 @@ The `Remove-EntraDeviceRegisteredUser` cmdlet removes a registered user from a M Connect-Entra -Scopes 'Directory.AccessAsUser.All' $Device = Get-EntraDevice -Top 1 $User = Get-EntraDeviceRegisteredUser -ObjectId $Device.ObjectId -Remove-EntraDeviceRegisteredOwner -ObjectId $Device.ObjectId -OwnerId $Owner.ObjectId +Remove-EntraDeviceRegisteredUser -ObjectId $Device.ObjectId -OwnerId $Owner.ObjectId ``` This example shows how to remove the registered user from device. From 152910bd04fea61e017947d35c3ba6fc6a459cd4 Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Fri, 27 Sep 2024 12:42:34 +0000 Subject: [PATCH 04/14] Removed Unsupported command --- .../Get-EntraUnsupportedCommand.md | 43 ------------------- 1 file changed, 43 deletions(-) delete mode 100644 module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Get-EntraUnsupportedCommand.md 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 From cf4872524d3d2b0f7d1fbbf76f42456f16177795 Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Fri, 27 Sep 2024 12:47:46 +0000 Subject: [PATCH 05/14] Removing default -Online param --- .../Microsoft.Graph.Entra/Find-EntraPermission.md | 13 ------------- 1 file changed, 13 deletions(-) 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 a55850a6c..80abaa02d 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 ] [] ``` @@ -173,18 +172,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Online - -```yaml - -Type: System.Management.Automation.SwitchParameter -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -PermissionType Specifies the type of Permission e.g. Delegated or Application. From 730e5351244e440073081fe4e42e242bb0f75f8d Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Fri, 27 Sep 2024 14:32:00 +0000 Subject: [PATCH 06/14] Fixing Get-EntraBetaUserOAuth2PermissionGrant example --- .../Get-EntraBetaUserOAuth2PermissionGrant.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From d7277e739b7d8c174d139eee1a0041a0b08fa6c5 Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Fri, 27 Sep 2024 14:38:27 +0000 Subject: [PATCH 07/14] Fixing Get-EntraBetaGroupMember example --- .../Microsoft.Graph.Entra.Beta/Get-EntraBetaGroupMember.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 3b3713008ee858775330d922fa595ae2dc09e5f7 Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Fri, 27 Sep 2024 14:40:39 +0000 Subject: [PATCH 08/14] Fixing Set-EntraBetaIdentityProvider example --- .../Microsoft.Graph.Entra.Beta/Set-EntraBetaIdentityProvider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. From c33671dce9e95b5e55e2489fa640f80894d48851 Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Fri, 27 Sep 2024 14:44:09 +0000 Subject: [PATCH 09/14] Remove Unsupported command. --- .../Get-EntraUnsupportedCommand.md | 43 ------------------- 1 file changed, 43 deletions(-) delete mode 100644 module/docs/entra-powershell-beta/Microsoft.Graph.Entra.Beta/Get-EntraUnsupportedCommand.md 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 From 73711dd836f1c4e78d659e70c5be7abfa293394c Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Fri, 27 Sep 2024 14:50:32 +0000 Subject: [PATCH 10/14] Fixing parity --- .../Enable-EntraAzureADAlias.md | 26 ++++++++++++++----- .../Enable-EntraAzureADAlias.md | 4 +-- 2 files changed, 22 insertions(+), 8 deletions(-) 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..c6e02b33d 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 modules. ## Syntax -``` +```powershell Enable-EntraAzureADAlias ``` ## Description -{{ Fill in the Description }} + +Enables aliases for Azure AD modules. ## 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-v1.0/Microsoft.Graph.Entra/Enable-EntraAzureADAlias.md b/module/docs/entra-powershell-v1.0/Microsoft.Graph.Entra/Enable-EntraAzureADAlias.md index 57f1b1813..b80d141ab 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 @@ -34,7 +34,7 @@ Enables aliases for Azure AD modules. ## Examples -### Example 1 +### Example 1: Enable aliasing ```powershell Enable-EntraAzureADAlias From c0fc104206d0c9ff163b60368420ae630feeaf3c Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Fri, 27 Sep 2024 14:53:05 +0000 Subject: [PATCH 11/14] Fixing Get-EntraBetaApplication example --- .../Microsoft.Graph.Entra.Beta/Get-EntraBetaApplication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) From 5c49b62df81c462f4915cbf994e111ca99e6df84 Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Sun, 29 Sep 2024 07:23:02 +0000 Subject: [PATCH 12/14] Applying review recommendation from alexandair --- .../Microsoft.Graph.Entra.Beta/Enable-EntraAzureADAlias.md | 4 ++-- .../Microsoft.Graph.Entra/Enable-EntraAzureADAlias.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 c6e02b33d..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 @@ -20,7 +20,7 @@ schema: 2.0.0 ## Synopsis -Enables aliases for AzureAD modules. +Enables aliases for AzureAD commands. ## Syntax @@ -30,7 +30,7 @@ Enable-EntraAzureADAlias ## Description -Enables aliases for Azure AD modules. +Enables Azure AD command aliases in the current PowerShell session. ## Examples 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 b80d141ab..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 @@ -20,7 +20,7 @@ schema: 2.0.0 ## Synopsis -Enables aliases for AzureAD modules. +Enables aliases for AzureAD commands. ## Syntax @@ -30,7 +30,7 @@ Enable-EntraAzureADAlias ## Description -Enables aliases for Azure AD modules. +Enables Azure AD command aliases in the current PowerShell session. ## Examples From 427a6a084feb6886ea4c914cf59c0270f85f200a Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Sun, 29 Sep 2024 07:49:10 +0000 Subject: [PATCH 13/14] v1.0 cmdlet toc.yml update to fix warnings. --- module/docs/entra-powershell-beta/toc.yml | 66 +++++++++++------------ 1 file changed, 32 insertions(+), 34 deletions(-) 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 From 7d292f512148f1845f2179f9063e9df5f65ac187 Mon Sep 17 00:00:00 2001 From: Steve Mutungi <132555836+SteveMutungi254@users.noreply.github.com> Date: Sun, 29 Sep 2024 08:02:29 +0000 Subject: [PATCH 14/14] Fixing toc.yml warnings --- module/docs/entra-powershell-v1.0/toc.yml | 54 +++++++++++------------ 1 file changed, 26 insertions(+), 28 deletions(-) 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