From 1e9b0f1c45890d5ccddadd4aa5cc6f00a20be27e Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 11 Apr 2025 17:25:29 +0000 Subject: [PATCH 01/29] First add and remove of commands --- .../Add-SPOAppPrioritizationPolicy.md | 140 ------------------ ...SPOServicePrioritizationAppRegistration.md | 108 ++++++++++++++ .../Get-SPOAppPrioritizationPolicies.md | 57 ------- ...POServicePrioritizationAppRegistrations.md | 63 ++++++++ ...SPOServicePrioritizationBillingPolicies.md | 62 ++++++++ ...w-SPOServicePrioritizationBillingPolicy.md | 123 +++++++++++++++ .../Remove-SPOAppPrioritizationPolicy.md | 70 --------- ...SPOServicePrioritizationAppRegistration.md | 77 ++++++++++ .../Set-SPOAppPrioritizationPolicy.md | 122 --------------- ...SPOServicePrioritizationAppRegistration.md | 109 ++++++++++++++ .../sharepoint-online/sharepoint-online.md | 37 ++--- 11 files changed, 562 insertions(+), 406 deletions(-) delete mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md delete mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md delete mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md delete mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md deleted file mode 100644 index 1d29bfb17..000000000 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ /dev/null @@ -1,140 +0,0 @@ ---- -external help file: sharepointonline.xml -Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy -applicable: SharePoint Online -title: Add-SPOAppPrioritizationPolicy -schema: 2.0.0 -author: killerewok2000 -ms.author: Sibourda -ms.reviewer: ---- - -# Add-SPOAppPrioritizationPolicy - -## SYNOPSIS - -Adds a new SPO app prioritization Policy to your tenancy. -> [!NOTE] -> This functionality is rolling out and might not be fully enabled in your environment yet. - -## SYNTAX - -``` -Add-SPOAppPrioritizationPolicy -AppId -AzureSubscriptionId -ResourceGroup -Account -QuotaMultiplier [] -``` - -## DESCRIPTION - -This cmdlet adds a new SPO app prioritization billing policies to your tenancy. Ensure that you do not add a new billing policy to an app that already has one. - -## EXAMPLES - -### Example 1 - -```powershell -Add-SPOAppPrioritizationPolicies -AppId 48ab2ba9-5713-47d6-88a1-f6e3a0730833 -AzureSubscriptionId 48ab1ba4-9813-47d6-88a1-f6e3a0730822 -ResourceGroup newResourceGroup -Account newAccountName -QuotaMultiplier 5 -``` - -Example 1 adds the billing policy to your tenancy. It will not add the policy on invalid inputs or for apps that already have an associated policy. - - -## PARAMETERS - -### -AppId - -This parameter specifies the app ID of the application to onboard. -```yaml -Type: Guid -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AzureSubscriptionId - -This parameter describes the Azure subscription ID to which the container type needs to be associated. - -```yaml -Type: Guid -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - - -### -ResourceGroup - -This parameter describes the resource group to be used for the associated container type. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Account - -This parameter describes the account to which the billing profile of the container type is associated with. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### -QuotaMultiplier - -This parameter specifies the multiplier for the scaling feature. Value must be between 2 and 10. - -```yaml -Type: int -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### CommonParameters - -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). - - -## RELATED LINKS - -[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) - -[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) - -[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md new file mode 100644 index 000000000..ef33df404 --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md @@ -0,0 +1,108 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOServicePrioritizationAppRegistration +applicable: SharePoint Online +title: Add-SPOServicePrioritizationAppRegistration +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: +--- + +# Add-SPOServicePrioritizationAppRegistration + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Add-SPOServicePrioritizationAppRegistration -AppId -PolicyId -QuotaMultiplier + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AppId +{{ Fill AppId Description }} + +```yaml +Type: Guid +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyId +{{ Fill PolicyId Description }} + +```yaml +Type: Guid +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -QuotaMultiplier +{{ Fill QuotaMultiplier Description }} + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Get-SPOServicePrioritizationAppRegistrations](./Get-SPOServicePrioritizationAppRegistrations.md) + +[Remove-SPOServicePrioritizationAppRegistration](./Remove-SPOServicePrioritizationAppRegistration.md) + +[New-SPOServicePrioritizationBillingPolicy](./New-SPOServicePrioritizationBillingPolicy.md) + +[Get-SPOServicePrioritizationBillingPolicies](./Get-SPOServicePrioritizationBillingPolicies.md) + +[Set-SPOServicePrioritizationAppRegistration](./Set-SPOServicePrioritizationAppRegistration.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md deleted file mode 100644 index 49a908a05..000000000 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md +++ /dev/null @@ -1,57 +0,0 @@ ---- -external help file: sharepointonline.xml -Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies -applicable: SharePoint Online -title: Get-SPOAppPrioritizationPolicies -schema: 2.0.0 -author: killerewok2000 -ms.author: Sibourda -ms.reviewer: ---- - -# Get-SPOAppPrioritizationPolicies - -## SYNOPSIS - -Gets all existing SPO app prioritization policies of your tenancy. -> [!NOTE] -> This functionality is rolling out and might not be fully enabled in your environment yet. - -## SYNTAX - -``` -Get-SPOAppPrioritizationPolicies [] -``` - - -## DESCRIPTION - -This cmdlet gets all existing SPO App prioritization billing policies for your tenancy. - -## EXAMPLES - -### Example 1 - -```powershell -Get- SPOAppPrioritizationPolicies -``` - -Example 1 returns a collection of all existing SPO app prioritization policies. Each policy will contain PolicyId, AppId, AzureSubscription, ResourceGroup, Account, Enabled (status of this policy i.e true or false) and QuotaMultiplier - - -## PARAMETERS - -### CommonParameters - -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). - -## RELATED LINKS - -[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) - -[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) - -[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md new file mode 100644 index 000000000..7a6917528 --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md @@ -0,0 +1,63 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations +applicable: SharePoint Online +title: Get-SPOServicePrioritizationAppRegistrations +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: +--- + +# Get-SPOServicePrioritizationAppRegistrations + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-SPOServicePrioritizationAppRegistrations [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOServicePrioritizationAppRegistration](./Add-SPOServicePrioritizationAppRegistration.md) + + +[Remove-SPOServicePrioritizationAppRegistration](./Remove-SPOServicePrioritizationAppRegistration.md) + +[New-SPOServicePrioritizationBillingPolicy](./New-SPOServicePrioritizationBillingPolicy.md) + +[Get-SPOServicePrioritizationBillingPolicies](./Get-SPOServicePrioritizationBillingPolicies.md) + +[Set-SPOServicePrioritizationAppRegistration](./Set-SPOServicePrioritizationAppRegistration.md) \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md new file mode 100644 index 000000000..07c775bea --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md @@ -0,0 +1,62 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies +applicable: SharePoint Online +title: Get-SPOServicePrioritizationBillingPolicies +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: +--- + +# Get-SPOServicePrioritizationBillingPolicies + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-SPOServicePrioritizationBillingPolicies [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOServicePrioritizationAppRegistration](./Add-SPOServicePrioritizationAppRegistration.md) + +[Get-SPOServicePrioritizationAppRegistrations](./Get-SPOServicePrioritizationAppRegistrations.md) + +[Remove-SPOServicePrioritizationAppRegistration](./Remove-SPOServicePrioritizationAppRegistration.md) + +[New-SPOServicePrioritizationBillingPolicy](./New-SPOServicePrioritizationBillingPolicy.md) + +[Set-SPOServicePrioritizationAppRegistration](./Set-SPOServicePrioritizationAppRegistration.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md new file mode 100644 index 000000000..3905b196e --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md @@ -0,0 +1,123 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/New-SPOServicePrioritizationBillingPolicy +applicable: SharePoint Online +title: New-SPOServicePrioritizationBillingPolicy +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: +--- + +# New-SPOServicePrioritizationBillingPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +New-SPOServicePrioritizationBillingPolicy -AzureSubscriptionId -ResourceGroup + -AzureRegion -FriendlyName [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AzureRegion +{{ Fill AzureRegion Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AzureSubscriptionId +{{ Fill AzureSubscriptionId Description }} + +```yaml +Type: Guid +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FriendlyName +{{ Fill FriendlyName Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroup +{{ Fill ResourceGroup Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOServicePrioritizationAppRegistration](./Add-SPOServicePrioritizationAppRegistration.md) + +[Get-SPOServicePrioritizationAppRegistrations](./Get-SPOServicePrioritizationAppRegistrations.md) + +[Remove-SPOServicePrioritizationAppRegistration](./Remove-SPOServicePrioritizationAppRegistration.md) + +[Get-SPOServicePrioritizationBillingPolicies](./Get-SPOServicePrioritizationBillingPolicies.md) + +[Set-SPOServicePrioritizationAppRegistration](./Set-SPOServicePrioritizationAppRegistration.md) \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md deleted file mode 100644 index 74f412757..000000000 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md +++ /dev/null @@ -1,70 +0,0 @@ ---- -external help file: sharepointonline.xml -Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Remove-SPOAppPrioritizationPolicy -applicable: SharePoint Online -title: Remove-SPOAppPrioritizationPolicy -schema: 2.0.0 -author: killerewok2000 -ms.author: Sibourda -ms.reviewer: ---- - -# Remove-SPOAppPrioritizationPolicy - -## SYNOPSIS - -Deletes an existing SPO app prioritization policy in your tenancy. -> [!NOTE] -> This functionality is rolling out and might not be fully enabled in your environment yet. - -## SYNTAX - -``` -Remove-SPOAppPrioritizationPolicy -PolicyId [] -``` - -## DESCRIPTION - -This cmdlet lets you delete an existing SPO app prioritization policy. - -## EXAMPLES - -### Example 1 - -```powershell -Remove-SPOAppPrioritizationPolicy -PolicyId 48abxxa9 -``` - -Example 1 deletes the policy bearing the policyId 48abxxa9. Running the `Get-SPOAppPrioritizationPolicies` command will no longer show the policy in the result. - -## PARAMETERS - -### -PolicyId - -This parameter specifies the ID of policy. -```yaml -Type: String -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### CommonParameters - -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). - -## RELATED LINKS - -[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) - -[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) - -[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md new file mode 100644 index 000000000..0369b93c2 --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md @@ -0,0 +1,77 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration +applicable: SharePoint Online +title: Remove-SPOServicePrioritizationAppRegistration +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: +--- + +# Remove-SPOServicePrioritizationAppRegistration + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Remove-SPOServicePrioritizationAppRegistration -AppId [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AppId +{{ Fill AppId Description }} + +```yaml +Type: Guid +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOServicePrioritizationAppRegistration](./Add-SPOServicePrioritizationAppRegistration.md) + +[Get-SPOServicePrioritizationAppRegistrations](./Get-SPOServicePrioritizationAppRegistrations.md) + +[New-SPOServicePrioritizationBillingPolicy](./New-SPOServicePrioritizationBillingPolicy.md) + +[Get-SPOServicePrioritizationBillingPolicies](./Get-SPOServicePrioritizationBillingPolicies.md) + +[Set-SPOServicePrioritizationAppRegistration](./Set-SPOServicePrioritizationAppRegistration.md) \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md deleted file mode 100644 index 41b627488..000000000 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ /dev/null @@ -1,122 +0,0 @@ ---- -external help file: sharepointonline.xml -Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Set-SPOAppPrioritizationPolicy -applicable: SharePoint Online -title: Set-SPOAppPrioritizationPolicy -schema: 2.0.0 -author: killerewok2000 -ms.author: Sibourda -ms.reviewer: ---- - -# Set-SPOAppPrioritizationPolicy - -## SYNOPSIS - -Edits an existing SPO app prioritization policy in your tenancy. -> [!NOTE] -> This functionality is rolling out and might not be fully enabled in your environment yet. - -## SYNTAX - -``` -Set-SPOAppPrioritizationPolicy -PolicyId [-Enabled ] [-QuotaMultiplier ] [] -``` - -## DESCRIPTION - -This cmdlet lets you enable or disable an existing policy and/or change the quota multiplier limit associated with the policy. Note that disabling the policy does not delete the policy. If you need to change only one of the two parameters, retain the value of the non-changing parameter from the `Get-SPOAppPrioritizationPolicies` commandlet. - -## EXAMPLES - -### Example 1 - -```powershell -Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $false -``` - -Example 1 disables the policy bearing the policyId 48abxxa9 - -### Example 2 - -```powershell -Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $true -QuotaMultiplier 7 -``` - -Example 2 enables the policy bearing the policyId 48abxxa9 and also sets the quota multiplier limit to 7. - -### Example 3 - -```powershell -Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -QuotaMultiplier 8 -``` - -Example 3 set the quota multiplier limit to 7 of the policy bearing the policyId 48abxxa9. - -## PARAMETERS - -### -PolicyId - -This parameter specifies the ID of policy. -```yaml -Type: String -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Enabled - -This parameter described the state wanted of the policy. - -```yaml -Type: Bool -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - - -### -QuotaMultiplier - -This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 2 and 10. - -```yaml -Type: int -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters - -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). - -## RELATED LINKS - -[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) - -[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) - -[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md new file mode 100644 index 000000000..c725b4797 --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md @@ -0,0 +1,109 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Set-SPOServicePrioritizationAppRegistration +applicable: SharePoint Online +title: Set-SPOServicePrioritizationAppRegistration +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: +--- + +# Set-SPOServicePrioritizationAppRegistration + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Set-SPOServicePrioritizationAppRegistration -AppId [-Enabled ] [-QuotaMultiplier ] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AppId +{{ Fill AppId Description }} + +```yaml +Type: Guid +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +{{ Fill Enabled Description }} + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -QuotaMultiplier +{{ Fill QuotaMultiplier Description }} + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS + + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOServicePrioritizationAppRegistration](./Add-SPOServicePrioritizationAppRegistration.md) + +[Get-SPOServicePrioritizationAppRegistrations](./Get-SPOServicePrioritizationAppRegistrations.md) + +[Remove-SPOServicePrioritizationAppRegistration](./Remove-SPOServicePrioritizationAppRegistration.md) + +[New-SPOServicePrioritizationBillingPolicy](./New-SPOServicePrioritizationBillingPolicy.md) + +[Get-SPOServicePrioritizationBillingPolicies](./Get-SPOServicePrioritizationBillingPolicies.md) \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md b/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md index 30ee801e0..618c5b768 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md @@ -15,10 +15,6 @@ The following cmdlet references are for SharePoint Online. ## sharepoint-online Cmdlets -### [Add-SPOAppPrioritizationPolicy](Add-SPOAppPrioritizationPolicy.md) - -{{Adds a new SPO app prioritization policy to your tenancy.}} - ### [Add-SPOContainerTypeBilling](Add-SPOContainerTypeBilling.md) {{Adds a Azure billing subscription to a new standard billed container type.}} @@ -67,6 +63,10 @@ The following cmdlet references are for SharePoint Online. {{Manually Enter Add-SPOUser Description Here}} +### [Add-SPOServicePrioritizationAppRegistration](Add-SPOServicePrioritizationAppRegistration.md) + +{{Adds a new SPO service prioritization app registration.}} + ### [Approve-SPOTenantServicePrincipalPermissionRequest](Approve-SPOTenantServicePrincipalPermissionRequest.md) {{Manually Enter Approve-SPOTenantServicePrincipalPermissionRequest Description Here}} @@ -111,10 +111,6 @@ The following cmdlet references are for SharePoint Online. {{Manually Enter Get-SPOAppInfo Description Here}} -### [Get-SPOAppPrioritizationPolicies](Get-SPOAppPrioritizationPolicies.md) - -{{Gets all existing SPO app prioritization policies of your tenancy}} - ### [Get-SPOBuiltInFontPackageSettings](Get-SPOBuiltInFontPackageSettings.md) {{Gets settings of built-in font packages.}} @@ -347,6 +343,14 @@ The following cmdlet references are for SharePoint Online. {{Manually Enter Get-SPOWebTemplate Description Here}} +### [Get-SPOServicePrioritizationAppRegistrations](Get-SPOServicePrioritizationAppRegistrations.md) + +{{Gets all existing SPO service prioritization app registrations.}} + +### [Get-SPOServicePrioritizationBillingPolicies](Get-SPOServicePrioritizationBillingPolicies.md) + +{{Gets all existing SPO service prioritization billing policies.}} + ### [Grant-SPOHubSiteRights](Grant-SPOHubSiteRights.md) {{Manually Enter Grant-SPOHubSiteRights Description Here}} @@ -415,7 +419,6 @@ The following cmdlet references are for SharePoint Online. {{Manually Enter New-SPOSiteFileVersionExpirationReportJob Description Here}} - ### [New-SPOSiteGroup](New-SPOSiteGroup.md) {{Manually Enter New-SPOSiteGroup Description Here}} @@ -424,13 +427,13 @@ The following cmdlet references are for SharePoint Online. This cmdlet is not currently active in production and may be removed in the future. You will receive the error "Site collection sharing report feature has not been enabled" if you run this cmdlet, which is by design. -### [Register-SPOHubSite](Register-SPOHubSite.md) +### [New-SPOServicePrioritizationBillingPolicy](New-SPOServicePrioritizationBillingPolicy.md) -{{Manually Enter Register-SPOHubSite Description Here}} +{{Creates a new SPO service prioritization billing policy.}} -### [Remove-SPOAppPrioritizationPolicy](Remove-SPOAppPrioritizationPolicy.md) +### [Register-SPOHubSite](Register-SPOHubSite.md) -{{Deletes an existing SPO app prioritization policy in your tenancy.}} +{{Manually Enter Register-SPOHubSite Description Here}} ### [Remove-SPODataConnectionSetting](Remove-SPODataConnectionSetting.md) @@ -524,6 +527,10 @@ This cmdlet is not currently active in production and may be removed in the futu {{Manually Enter Remove-SPOUser Description Here}} +### [Remove-SPOServicePrioritizationAppRegistration](Remove-SPOServicePrioritizationAppRegistration.md) + +{{Removes an existing SPO service prioritization app registration.}} + ### [Repair-SPOSite](Repair-SPOSite.md) {{Manually Enter Repair-SPOSite Description Here}} @@ -556,10 +563,6 @@ This cmdlet is not currently active in production and may be removed in the futu {{Manually Enter Revoke-SPOUserSession Description Here}} -### [Set-SPOAppPrioritizationPolicy](Set-SPOAppPrioritizationPolicy.md) - -{{Edits an existing SPO app prioritization policy in your tenancy. }} - ### [Set-SPOBuiltInFontPackageSettings](Set-SPOBuiltInFontPackageSettings.md) {{Sets settings of built-in font packages.}} From b20d1131ed6d7076b5928e0407a9fecbe8810fbe Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 11 Apr 2025 17:42:45 +0000 Subject: [PATCH 02/29] added examples --- .../Add-SPOServicePrioritizationAppRegistration.md | 9 ++++----- .../Get-SPOServicePrioritizationAppRegistrations.md | 9 ++++----- .../Get-SPOServicePrioritizationBillingPolicies.md | 9 ++++----- .../New-SPOServicePrioritizationBillingPolicy.md | 9 ++++----- .../Remove-SPOServicePrioritizationAppRegistration.md | 9 ++++----- .../Set-SPOServicePrioritizationAppRegistration.md | 9 ++++----- 6 files changed, 24 insertions(+), 30 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md index ef33df404..efab2f19f 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md @@ -13,7 +13,7 @@ ms.reviewer: # Add-SPOServicePrioritizationAppRegistration ## SYNOPSIS -{{ Fill in the Synopsis }} +Adds a new app registration for service prioritization in SharePoint Online. ## SYNTAX @@ -23,16 +23,15 @@ Add-SPOServicePrioritizationAppRegistration -AppId -PolicyId -Quot ``` ## DESCRIPTION -{{ Fill in the Description }} +The `Add-SPOServicePrioritizationAppRegistration` cmdlet allows administrators to register a new app for service prioritization in SharePoint Online. This cmdlet is useful for configuring specific apps to receive prioritized service handling based on defined policies. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Add-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" -PolicyId "87654321-4321-4321-4321-0987654321ba" -QuotaMultiplier 2 ``` - -{{ Add example description here }} +This example adds a new app registration with the specified AppId and PolicyId, and sets the quota multiplier to 2. ## PARAMETERS diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md index 7a6917528..a7f8f5ae0 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md @@ -13,7 +13,7 @@ ms.reviewer: # Get-SPOServicePrioritizationAppRegistrations ## SYNOPSIS -{{ Fill in the Synopsis }} +Retrieves the list of app registrations configured for service prioritization in SharePoint Online. ## SYNTAX @@ -22,16 +22,15 @@ Get-SPOServicePrioritizationAppRegistrations [] ``` ## DESCRIPTION -{{ Fill in the Description }} +The `Get-SPOServicePrioritizationAppRegistrations` cmdlet retrieves all app registrations that have been configured for service prioritization in SharePoint Online. This cmdlet is useful for administrators who need to review or audit the current app registrations and their associated policies. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Get-SPOServicePrioritizationAppRegistrations ``` - -{{ Add example description here }} +This example retrieves all app registrations configured for service prioritization in SharePoint Online. ## PARAMETERS diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md index 07c775bea..9e0f7e6bb 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md @@ -13,7 +13,7 @@ ms.reviewer: # Get-SPOServicePrioritizationBillingPolicies ## SYNOPSIS -{{ Fill in the Synopsis }} +Retrieves the list of billing policies configured for service prioritization in SharePoint Online. ## SYNTAX @@ -22,16 +22,15 @@ Get-SPOServicePrioritizationBillingPolicies [] ``` ## DESCRIPTION -{{ Fill in the Description }} +The `Get-SPOServicePrioritizationBillingPolicies` cmdlet retrieves all billing policies that have been configured for service prioritization in SharePoint Online. This cmdlet is useful for administrators who need to review or audit the current billing policies and their associated configurations. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Get-SPOServicePrioritizationBillingPolicies ``` - -{{ Add example description here }} +This example retrieves all billing policies configured for service prioritization in SharePoint Online. ## PARAMETERS diff --git a/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md index 3905b196e..ae86980e3 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md @@ -13,7 +13,7 @@ ms.reviewer: # New-SPOServicePrioritizationBillingPolicy ## SYNOPSIS -{{ Fill in the Synopsis }} +Creates a new billing policy for service prioritization in SharePoint Online. ## SYNTAX @@ -23,16 +23,15 @@ New-SPOServicePrioritizationBillingPolicy -AzureSubscriptionId -ResourceG ``` ## DESCRIPTION -{{ Fill in the Description }} +The `New-SPOServicePrioritizationBillingPolicy` cmdlet allows administrators to create a new billing policy for service prioritization in SharePoint Online. This cmdlet is useful for defining custom billing rules and policies for specific Azure subscriptions and resource groups. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> New-SPOServicePrioritizationBillingPolicy -AzureSubscriptionId "12345678-1234-1234-1234-1234567890ab" -ResourceGroup "MyResourceGroup" -AzureRegion "EastUS" -FriendlyName "MyBillingPolicy" ``` - -{{ Add example description here }} +This example creates a new billing policy for service prioritization with the specified Azure subscription, resource group, and region. ## PARAMETERS diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md index 0369b93c2..ba5c776eb 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md @@ -13,7 +13,7 @@ ms.reviewer: # Remove-SPOServicePrioritizationAppRegistration ## SYNOPSIS -{{ Fill in the Synopsis }} +Removes an app registration from service prioritization in SharePoint Online. ## SYNTAX @@ -22,16 +22,15 @@ Remove-SPOServicePrioritizationAppRegistration -AppId [ ``` ## DESCRIPTION -{{ Fill in the Description }} +The `Remove-SPOServicePrioritizationAppRegistration` cmdlet removes a specified app registration from the service prioritization configuration in SharePoint Online. This is useful for administrators who need to decommission or update app registrations. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Remove-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" ``` - -{{ Add example description here }} +This example removes the app registration with the specified AppId from service prioritization. ## PARAMETERS diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md index c725b4797..a076dc17a 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md @@ -13,7 +13,7 @@ ms.reviewer: # Set-SPOServicePrioritizationAppRegistration ## SYNOPSIS -{{ Fill in the Synopsis }} +Updates an existing app registration for service prioritization in SharePoint Online. ## SYNTAX @@ -23,16 +23,15 @@ Set-SPOServicePrioritizationAppRegistration -AppId [-Enabled ] [ ``` ## DESCRIPTION -{{ Fill in the Description }} +The `Set-SPOServicePrioritizationAppRegistration` cmdlet updates the configuration of an existing app registration for service prioritization in SharePoint Online. This cmdlet is useful for modifying properties such as enabling or disabling the app registration or adjusting the quota multiplier. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Set-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" -Enabled $true -QuotaMultiplier 3 ``` - -{{ Add example description here }} +This example updates the app registration with the specified AppId, enabling it and setting the quota multiplier to 3. ## PARAMETERS From 4f0c123ef0293df89bf347825c4966f74ec5a90e Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 11 Apr 2025 17:47:41 +0000 Subject: [PATCH 03/29] added notes back --- .../Add-SPOServicePrioritizationAppRegistration.md | 2 ++ .../Get-SPOServicePrioritizationAppRegistrations.md | 2 ++ .../Get-SPOServicePrioritizationBillingPolicies.md | 2 ++ .../New-SPOServicePrioritizationBillingPolicy.md | 2 ++ .../Remove-SPOServicePrioritizationAppRegistration.md | 2 ++ .../Set-SPOServicePrioritizationAppRegistration.md | 2 ++ 6 files changed, 12 insertions(+) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md index efab2f19f..6952beb74 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md @@ -14,6 +14,8 @@ ms.reviewer: ## SYNOPSIS Adds a new app registration for service prioritization in SharePoint Online. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. ## SYNTAX diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md index a7f8f5ae0..4bad5f0a2 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md @@ -14,6 +14,8 @@ ms.reviewer: ## SYNOPSIS Retrieves the list of app registrations configured for service prioritization in SharePoint Online. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. ## SYNTAX diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md index 9e0f7e6bb..f4a976785 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md @@ -14,6 +14,8 @@ ms.reviewer: ## SYNOPSIS Retrieves the list of billing policies configured for service prioritization in SharePoint Online. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. ## SYNTAX diff --git a/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md index ae86980e3..4e6308849 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md @@ -14,6 +14,8 @@ ms.reviewer: ## SYNOPSIS Creates a new billing policy for service prioritization in SharePoint Online. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. ## SYNTAX diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md index ba5c776eb..315b65a1b 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md @@ -14,6 +14,8 @@ ms.reviewer: ## SYNOPSIS Removes an app registration from service prioritization in SharePoint Online. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. ## SYNTAX diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md index a076dc17a..b1a13fd9c 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md @@ -14,6 +14,8 @@ ms.reviewer: ## SYNOPSIS Updates an existing app registration for service prioritization in SharePoint Online. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. ## SYNTAX From aa9c341686d1c39d7821db3c1c860bec14d21ff9 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 11 Apr 2025 17:54:02 +0000 Subject: [PATCH 04/29] added parameters description to the following cmdlets: - Add-SPOServicePrioritizationAppRegistration - Get-SPOServicePrioritizationAppRegistrations - Get-SPOServicePrioritizationBillingPolicies - New-SPOServicePrioritizationBillingPolicy - Remove-SPOServicePrioritizationAppRegistration - Set-SPOServicePrioritizationAppRegistration --- .../Add-SPOServicePrioritizationAppRegistration.md | 6 +++--- .../Get-SPOServicePrioritizationAppRegistrations.md | 3 +++ .../New-SPOServicePrioritizationBillingPolicy.md | 8 ++++---- .../Remove-SPOServicePrioritizationAppRegistration.md | 2 +- .../Set-SPOServicePrioritizationAppRegistration.md | 6 +++--- 5 files changed, 14 insertions(+), 11 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md index 6952beb74..7045b6a09 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md @@ -38,7 +38,7 @@ This example adds a new app registration with the specified AppId and PolicyId, ## PARAMETERS ### -AppId -{{ Fill AppId Description }} +Specifies the unique identifier (GUID) of the app registration to be added. ```yaml Type: Guid @@ -53,7 +53,7 @@ Accept wildcard characters: False ``` ### -PolicyId -{{ Fill PolicyId Description }} +Specifies the unique identifier (GUID) of the policy to associate with the app registration. ```yaml Type: Guid @@ -68,7 +68,7 @@ Accept wildcard characters: False ``` ### -QuotaMultiplier -{{ Fill QuotaMultiplier Description }} +This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 2 and 10. ```yaml Type: Int32 diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md index 4bad5f0a2..6052f446c 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md @@ -36,6 +36,9 @@ This example retrieves all app registrations configured for service prioritizati ## PARAMETERS +### -AppId +Specifies the unique identifier (GUID) of the app registration to retrieve. + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md index 4e6308849..2632ea0d1 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md @@ -38,7 +38,7 @@ This example creates a new billing policy for service prioritization with the sp ## PARAMETERS ### -AzureRegion -{{ Fill AzureRegion Description }} +Specifies the Azure region where the billing policy applies. ```yaml Type: String @@ -53,7 +53,7 @@ Accept wildcard characters: False ``` ### -AzureSubscriptionId -{{ Fill AzureSubscriptionId Description }} +Specifies the unique identifier (GUID) of the Azure subscription associated with the billing policy. ```yaml Type: Guid @@ -68,7 +68,7 @@ Accept wildcard characters: False ``` ### -FriendlyName -{{ Fill FriendlyName Description }} +Specifies a user-friendly name for the billing policy. ```yaml Type: String @@ -83,7 +83,7 @@ Accept wildcard characters: False ``` ### -ResourceGroup -{{ Fill ResourceGroup Description }} +Specifies the Azure resource group associated with the billing policy. ```yaml Type: String diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md index 315b65a1b..64d071765 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md @@ -37,7 +37,7 @@ This example removes the app registration with the specified AppId from service ## PARAMETERS ### -AppId -{{ Fill AppId Description }} +The unique identifier (GUID) of the app registration to be removed from service prioritization. This parameter is required and must be specified. ```yaml Type: Guid diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md index b1a13fd9c..dc67eca9a 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md @@ -38,7 +38,7 @@ This example updates the app registration with the specified AppId, enabling it ## PARAMETERS ### -AppId -{{ Fill AppId Description }} +Specifies the unique identifier (GUID) of the app registration to update. ```yaml Type: Guid @@ -53,7 +53,7 @@ Accept wildcard characters: False ``` ### -Enabled -{{ Fill Enabled Description }} +Specifies whether the app registration is enabled or disabled. Accepts a Boolean value. ```yaml Type: Boolean @@ -68,7 +68,7 @@ Accept wildcard characters: False ``` ### -QuotaMultiplier -{{ Fill QuotaMultiplier Description }} +This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 2 and 10. ```yaml Type: Int32 From acbf084132cd241b9262dcb58fccd6feadb7553d Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 11 Apr 2025 20:54:50 +0000 Subject: [PATCH 05/29] addressed feedback --- .../Add-SPOServicePrioritizationAppRegistration.md | 6 +++--- .../Get-SPOServicePrioritizationAppRegistrations.md | 10 +++------- .../Get-SPOServicePrioritizationBillingPolicies.md | 6 +++--- .../New-SPOServicePrioritizationBillingPolicy.md | 6 +++--- .../Remove-SPOServicePrioritizationAppRegistration.md | 6 +++--- .../Set-SPOServicePrioritizationAppRegistration.md | 6 +++--- 6 files changed, 18 insertions(+), 22 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md index 7045b6a09..e1741172c 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md @@ -25,13 +25,13 @@ Add-SPOServicePrioritizationAppRegistration -AppId -PolicyId -Quot ``` ## DESCRIPTION -The `Add-SPOServicePrioritizationAppRegistration` cmdlet allows administrators to register a new app for service prioritization in SharePoint Online. This cmdlet is useful for configuring specific apps to receive prioritized service handling based on defined policies. +This cmdlet allows administrators to register a new app for service prioritization in SharePoint Online. This cmdlet is useful for configuring specific apps to receive prioritized service handling based on defined policies. ## EXAMPLES ### Example 1 ```powershell -PS C:\> Add-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" -PolicyId "87654321-4321-4321-4321-0987654321ba" -QuotaMultiplier 2 +Add-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" -PolicyId "87654321-4321-4321-4321-0987654321ba" -QuotaMultiplier 2 ``` This example adds a new app registration with the specified AppId and PolicyId, and sets the quota multiplier to 2. @@ -83,7 +83,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## INPUTS diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md index 6052f446c..bd5259e65 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md @@ -24,23 +24,20 @@ Get-SPOServicePrioritizationAppRegistrations [] ``` ## DESCRIPTION -The `Get-SPOServicePrioritizationAppRegistrations` cmdlet retrieves all app registrations that have been configured for service prioritization in SharePoint Online. This cmdlet is useful for administrators who need to review or audit the current app registrations and their associated policies. +This cmdlet retrieves all app registrations that have been configured for service prioritization in SharePoint Online. This cmdlet is useful for administrators who need to review or audit the current app registrations and their associated policies. ## EXAMPLES ### Example 1 ```powershell -PS C:\> Get-SPOServicePrioritizationAppRegistrations +Get-SPOServicePrioritizationAppRegistrations ``` This example retrieves all app registrations configured for service prioritization in SharePoint Online. ## PARAMETERS -### -AppId -Specifies the unique identifier (GUID) of the app registration to retrieve. - ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## INPUTS @@ -57,7 +54,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Add-SPOServicePrioritizationAppRegistration](./Add-SPOServicePrioritizationAppRegistration.md) - [Remove-SPOServicePrioritizationAppRegistration](./Remove-SPOServicePrioritizationAppRegistration.md) [New-SPOServicePrioritizationBillingPolicy](./New-SPOServicePrioritizationBillingPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md index f4a976785..701880bf5 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md @@ -24,20 +24,20 @@ Get-SPOServicePrioritizationBillingPolicies [] ``` ## DESCRIPTION -The `Get-SPOServicePrioritizationBillingPolicies` cmdlet retrieves all billing policies that have been configured for service prioritization in SharePoint Online. This cmdlet is useful for administrators who need to review or audit the current billing policies and their associated configurations. +This cmdlet retrieves all billing policies that have been configured for service prioritization in SharePoint Online. This cmdlet is useful for administrators who need to review or audit the current billing policies and their associated configurations. ## EXAMPLES ### Example 1 ```powershell -PS C:\> Get-SPOServicePrioritizationBillingPolicies +Get-SPOServicePrioritizationBillingPolicies ``` This example retrieves all billing policies configured for service prioritization in SharePoint Online. ## PARAMETERS ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## INPUTS diff --git a/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md index 2632ea0d1..6dea4397f 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md @@ -25,13 +25,13 @@ New-SPOServicePrioritizationBillingPolicy -AzureSubscriptionId -ResourceG ``` ## DESCRIPTION -The `New-SPOServicePrioritizationBillingPolicy` cmdlet allows administrators to create a new billing policy for service prioritization in SharePoint Online. This cmdlet is useful for defining custom billing rules and policies for specific Azure subscriptions and resource groups. +This cmdlet allows administrators to create a new billing policy for service prioritization in SharePoint Online. This cmdlet is useful for defining custom billing rules and policies for specific Azure subscriptions and resource groups. ## EXAMPLES ### Example 1 ```powershell -PS C:\> New-SPOServicePrioritizationBillingPolicy -AzureSubscriptionId "12345678-1234-1234-1234-1234567890ab" -ResourceGroup "MyResourceGroup" -AzureRegion "EastUS" -FriendlyName "MyBillingPolicy" +New-SPOServicePrioritizationBillingPolicy -AzureSubscriptionId "12345678-1234-1234-1234-1234567890ab" -ResourceGroup "MyResourceGroup" -AzureRegion "EastUS" -FriendlyName "MyBillingPolicy" ``` This example creates a new billing policy for service prioritization with the specified Azure subscription, resource group, and region. @@ -98,7 +98,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## INPUTS diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md index 64d071765..1ece521d1 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md @@ -24,13 +24,13 @@ Remove-SPOServicePrioritizationAppRegistration -AppId [ ``` ## DESCRIPTION -The `Remove-SPOServicePrioritizationAppRegistration` cmdlet removes a specified app registration from the service prioritization configuration in SharePoint Online. This is useful for administrators who need to decommission or update app registrations. +This cmdlet removes a specified app registration from the service prioritization configuration in SharePoint Online. This is useful for administrators who need to decommission or update app registrations. ## EXAMPLES ### Example 1 ```powershell -PS C:\> Remove-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" +Remove-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" ``` This example removes the app registration with the specified AppId from service prioritization. @@ -52,7 +52,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## INPUTS diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md index dc67eca9a..a47b85365 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md @@ -25,13 +25,13 @@ Set-SPOServicePrioritizationAppRegistration -AppId [-Enabled ] [ ``` ## DESCRIPTION -The `Set-SPOServicePrioritizationAppRegistration` cmdlet updates the configuration of an existing app registration for service prioritization in SharePoint Online. This cmdlet is useful for modifying properties such as enabling or disabling the app registration or adjusting the quota multiplier. +This cmdlet updates the configuration of an existing app registration for service prioritization in SharePoint Online. This cmdlet is useful for modifying properties such as enabling or disabling the app registration or adjusting the quota multiplier. ## EXAMPLES ### Example 1 ```powershell -PS C:\> Set-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" -Enabled $true -QuotaMultiplier 3 +Set-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" -Enabled $true -QuotaMultiplier 3 ``` This example updates the app registration with the specified AppId, enabling it and setting the quota multiplier to 3. @@ -83,7 +83,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## INPUTS From 9eb8d8c27f2c87ec0da4ba9f58b719b25b8f3da8 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Sun, 20 Apr 2025 19:14:44 +0000 Subject: [PATCH 06/29] fixing redirection --- sharepoint/mapping/monikerMapping.json | 40 ++++++++++++++++++++------ 1 file changed, 31 insertions(+), 9 deletions(-) diff --git a/sharepoint/mapping/monikerMapping.json b/sharepoint/mapping/monikerMapping.json index 1151d8767..165fe5d98 100644 --- a/sharepoint/mapping/monikerMapping.json +++ b/sharepoint/mapping/monikerMapping.json @@ -10,13 +10,35 @@ "sharepoint-pnp": {} } }, - "sharepoint-server-ps": { - "conceptualToc": "docs-conceptual/toc.yml", - "conceptualTocUrl": "/powershell/sharepoint/toc.json", - "referenceTocUrl": "/powershell/module/sharepoint-ps/toc.json", - "packageRoot": "sharepoint-server-ps", - "modules": { - "sharepoint-server": {} - } - } + "sharepoint-server-ps": { + "conceptualToc": "docs-conceptual/toc.yml", + "conceptualTocUrl": "/powershell/sharepoint/toc.json", + "referenceTocUrl": "/powershell/module/sharepoint-ps/toc.json", + "packageRoot": "sharepoint-server-ps", + "modules": { + "sharepoint-server": {} + } + }, + "redirections": [ + { + "source_path": "/powershell/module/sharepoint-online/add-spoappprioritizationpolicy", + "redirect_url": "/powershell/module/sharepoint-online/overview", + "redirect_document_id": false + }, + { + "source_path": "/powershell/module/sharepoint-online/get-spoappprioritizationpolicies", + "redirect_url": "/powershell/module/sharepoint-online/overview", + "redirect_document_id": false + }, + { + "source_path": "/powershell/module/sharepoint-online/remove-spoappprioritizationpolicy", + "redirect_url": "/powershell/module/sharepoint-online/overview", + "redirect_document_id": false + }, + { + "source_path": "/powershell/module/sharepoint-online/set-spoappprioritizationpolicy", + "redirect_url": "/powershell/module/sharepoint-online/overview", + "redirect_document_id": false + } + ] } From 2265992ff5ebd2ba9753592d6203e6ec377bda33 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Sun, 20 Apr 2025 19:22:23 +0000 Subject: [PATCH 07/29] fixing redirection --- sharepoint/mapping/monikerMapping.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sharepoint/mapping/monikerMapping.json b/sharepoint/mapping/monikerMapping.json index 165fe5d98..abb829b61 100644 --- a/sharepoint/mapping/monikerMapping.json +++ b/sharepoint/mapping/monikerMapping.json @@ -19,26 +19,26 @@ "sharepoint-server": {} } }, - "redirections": [ - { + "redirections": { + "redirection1": { "source_path": "/powershell/module/sharepoint-online/add-spoappprioritizationpolicy", "redirect_url": "/powershell/module/sharepoint-online/overview", "redirect_document_id": false }, - { + "redirection2": { "source_path": "/powershell/module/sharepoint-online/get-spoappprioritizationpolicies", "redirect_url": "/powershell/module/sharepoint-online/overview", "redirect_document_id": false }, - { + "redirection3": { "source_path": "/powershell/module/sharepoint-online/remove-spoappprioritizationpolicy", "redirect_url": "/powershell/module/sharepoint-online/overview", "redirect_document_id": false }, - { + "redirection4": { "source_path": "/powershell/module/sharepoint-online/set-spoappprioritizationpolicy", "redirect_url": "/powershell/module/sharepoint-online/overview", "redirect_document_id": false } - ] + } } From d7542b413a375ada19f2450ab506a37e3a9ae6c2 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Sun, 20 Apr 2025 19:30:04 +0000 Subject: [PATCH 08/29] fixing redirection --- sharepoint/mapping/monikerMapping.json | 1 + 1 file changed, 1 insertion(+) diff --git a/sharepoint/mapping/monikerMapping.json b/sharepoint/mapping/monikerMapping.json index abb829b61..f80a8f1b4 100644 --- a/sharepoint/mapping/monikerMapping.json +++ b/sharepoint/mapping/monikerMapping.json @@ -20,6 +20,7 @@ } }, "redirections": { + "packageRoot": "redirections", "redirection1": { "source_path": "/powershell/module/sharepoint-online/add-spoappprioritizationpolicy", "redirect_url": "/powershell/module/sharepoint-online/overview", From 1cb3dbf135f59d8ca6ef01e84255156619437551 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Sun, 20 Apr 2025 19:32:54 +0000 Subject: [PATCH 09/29] tring to fix redirect --- sharepoint/mapping/monikerMapping.json | 1 + 1 file changed, 1 insertion(+) diff --git a/sharepoint/mapping/monikerMapping.json b/sharepoint/mapping/monikerMapping.json index f80a8f1b4..5101b8041 100644 --- a/sharepoint/mapping/monikerMapping.json +++ b/sharepoint/mapping/monikerMapping.json @@ -21,6 +21,7 @@ }, "redirections": { "packageRoot": "redirections", + "referenceTocUrl": "/powershell/module/sharepoint-online/toc.json", "redirection1": { "source_path": "/powershell/module/sharepoint-online/add-spoappprioritizationpolicy", "redirect_url": "/powershell/module/sharepoint-online/overview", From 81a5a43dd7432b2a4783ecfcdb44b1077e9226f1 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Sun, 20 Apr 2025 19:40:45 +0000 Subject: [PATCH 10/29] revert change --- sharepoint/mapping/monikerMapping.json | 42 ++++++-------------------- 1 file changed, 9 insertions(+), 33 deletions(-) diff --git a/sharepoint/mapping/monikerMapping.json b/sharepoint/mapping/monikerMapping.json index 5101b8041..1151d8767 100644 --- a/sharepoint/mapping/monikerMapping.json +++ b/sharepoint/mapping/monikerMapping.json @@ -10,37 +10,13 @@ "sharepoint-pnp": {} } }, - "sharepoint-server-ps": { - "conceptualToc": "docs-conceptual/toc.yml", - "conceptualTocUrl": "/powershell/sharepoint/toc.json", - "referenceTocUrl": "/powershell/module/sharepoint-ps/toc.json", - "packageRoot": "sharepoint-server-ps", - "modules": { - "sharepoint-server": {} - } - }, - "redirections": { - "packageRoot": "redirections", - "referenceTocUrl": "/powershell/module/sharepoint-online/toc.json", - "redirection1": { - "source_path": "/powershell/module/sharepoint-online/add-spoappprioritizationpolicy", - "redirect_url": "/powershell/module/sharepoint-online/overview", - "redirect_document_id": false - }, - "redirection2": { - "source_path": "/powershell/module/sharepoint-online/get-spoappprioritizationpolicies", - "redirect_url": "/powershell/module/sharepoint-online/overview", - "redirect_document_id": false - }, - "redirection3": { - "source_path": "/powershell/module/sharepoint-online/remove-spoappprioritizationpolicy", - "redirect_url": "/powershell/module/sharepoint-online/overview", - "redirect_document_id": false - }, - "redirection4": { - "source_path": "/powershell/module/sharepoint-online/set-spoappprioritizationpolicy", - "redirect_url": "/powershell/module/sharepoint-online/overview", - "redirect_document_id": false - } - } + "sharepoint-server-ps": { + "conceptualToc": "docs-conceptual/toc.yml", + "conceptualTocUrl": "/powershell/sharepoint/toc.json", + "referenceTocUrl": "/powershell/module/sharepoint-ps/toc.json", + "packageRoot": "sharepoint-server-ps", + "modules": { + "sharepoint-server": {} + } + } } From 6452b14efdbf4152ec6e55f859a8db8f7f36928d Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Sun, 20 Apr 2025 19:45:45 +0000 Subject: [PATCH 11/29] restore deletted --- .../Add-SPOAppPrioritizationPolicy.md | 140 ++++++++++++++++++ .../Get-SPOAppPrioritizationPolicies.md | 57 +++++++ .../Remove-SPOAppPrioritizationPolicy.md | 70 +++++++++ .../Set-SPOAppPrioritizationPolicy.md | 122 +++++++++++++++ 4 files changed, 389 insertions(+) create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md new file mode 100644 index 000000000..1d29bfb17 --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -0,0 +1,140 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy +applicable: SharePoint Online +title: Add-SPOAppPrioritizationPolicy +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: +--- + +# Add-SPOAppPrioritizationPolicy + +## SYNOPSIS + +Adds a new SPO app prioritization Policy to your tenancy. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. + +## SYNTAX + +``` +Add-SPOAppPrioritizationPolicy -AppId -AzureSubscriptionId -ResourceGroup -Account -QuotaMultiplier [] +``` + +## DESCRIPTION + +This cmdlet adds a new SPO app prioritization billing policies to your tenancy. Ensure that you do not add a new billing policy to an app that already has one. + +## EXAMPLES + +### Example 1 + +```powershell +Add-SPOAppPrioritizationPolicies -AppId 48ab2ba9-5713-47d6-88a1-f6e3a0730833 -AzureSubscriptionId 48ab1ba4-9813-47d6-88a1-f6e3a0730822 -ResourceGroup newResourceGroup -Account newAccountName -QuotaMultiplier 5 +``` + +Example 1 adds the billing policy to your tenancy. It will not add the policy on invalid inputs or for apps that already have an associated policy. + + +## PARAMETERS + +### -AppId + +This parameter specifies the app ID of the application to onboard. +```yaml +Type: Guid +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AzureSubscriptionId + +This parameter describes the Azure subscription ID to which the container type needs to be associated. + +```yaml +Type: Guid +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +### -ResourceGroup + +This parameter describes the resource group to be used for the associated container type. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Account + +This parameter describes the account to which the billing profile of the container type is associated with. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### -QuotaMultiplier + +This parameter specifies the multiplier for the scaling feature. Value must be between 2 and 10. + +```yaml +Type: int +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### CommonParameters + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) + +[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) + +[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md new file mode 100644 index 000000000..49a908a05 --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md @@ -0,0 +1,57 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies +applicable: SharePoint Online +title: Get-SPOAppPrioritizationPolicies +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: +--- + +# Get-SPOAppPrioritizationPolicies + +## SYNOPSIS + +Gets all existing SPO app prioritization policies of your tenancy. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. + +## SYNTAX + +``` +Get-SPOAppPrioritizationPolicies [] +``` + + +## DESCRIPTION + +This cmdlet gets all existing SPO App prioritization billing policies for your tenancy. + +## EXAMPLES + +### Example 1 + +```powershell +Get- SPOAppPrioritizationPolicies +``` + +Example 1 returns a collection of all existing SPO app prioritization policies. Each policy will contain PolicyId, AppId, AzureSubscription, ResourceGroup, Account, Enabled (status of this policy i.e true or false) and QuotaMultiplier + + +## PARAMETERS + +### CommonParameters + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) + +[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) + +[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md new file mode 100644 index 000000000..74f412757 --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md @@ -0,0 +1,70 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Remove-SPOAppPrioritizationPolicy +applicable: SharePoint Online +title: Remove-SPOAppPrioritizationPolicy +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: +--- + +# Remove-SPOAppPrioritizationPolicy + +## SYNOPSIS + +Deletes an existing SPO app prioritization policy in your tenancy. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. + +## SYNTAX + +``` +Remove-SPOAppPrioritizationPolicy -PolicyId [] +``` + +## DESCRIPTION + +This cmdlet lets you delete an existing SPO app prioritization policy. + +## EXAMPLES + +### Example 1 + +```powershell +Remove-SPOAppPrioritizationPolicy -PolicyId 48abxxa9 +``` + +Example 1 deletes the policy bearing the policyId 48abxxa9. Running the `Get-SPOAppPrioritizationPolicies` command will no longer show the policy in the result. + +## PARAMETERS + +### -PolicyId + +This parameter specifies the ID of policy. +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### CommonParameters + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) + +[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) + +[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md new file mode 100644 index 000000000..41b627488 --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -0,0 +1,122 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Set-SPOAppPrioritizationPolicy +applicable: SharePoint Online +title: Set-SPOAppPrioritizationPolicy +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: +--- + +# Set-SPOAppPrioritizationPolicy + +## SYNOPSIS + +Edits an existing SPO app prioritization policy in your tenancy. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. + +## SYNTAX + +``` +Set-SPOAppPrioritizationPolicy -PolicyId [-Enabled ] [-QuotaMultiplier ] [] +``` + +## DESCRIPTION + +This cmdlet lets you enable or disable an existing policy and/or change the quota multiplier limit associated with the policy. Note that disabling the policy does not delete the policy. If you need to change only one of the two parameters, retain the value of the non-changing parameter from the `Get-SPOAppPrioritizationPolicies` commandlet. + +## EXAMPLES + +### Example 1 + +```powershell +Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $false +``` + +Example 1 disables the policy bearing the policyId 48abxxa9 + +### Example 2 + +```powershell +Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $true -QuotaMultiplier 7 +``` + +Example 2 enables the policy bearing the policyId 48abxxa9 and also sets the quota multiplier limit to 7. + +### Example 3 + +```powershell +Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -QuotaMultiplier 8 +``` + +Example 3 set the quota multiplier limit to 7 of the policy bearing the policyId 48abxxa9. + +## PARAMETERS + +### -PolicyId + +This parameter specifies the ID of policy. +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled + +This parameter described the state wanted of the policy. + +```yaml +Type: Bool +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +### -QuotaMultiplier + +This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 2 and 10. + +```yaml +Type: int +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) + +[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) + +[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) From 32effc2d90d46b9443ae477655e07fd9648d11df Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Mon, 21 Apr 2025 03:22:35 +0000 Subject: [PATCH 12/29] trying redirect again --- .../Add-SPOAppPrioritizationPolicy.md | 141 +----------------- .../Get-SPOAppPrioritizationPolicies.md | 58 +------ .../Remove-SPOAppPrioritizationPolicy.md | 71 +-------- .../Set-SPOAppPrioritizationPolicy.md | 123 +-------------- 4 files changed, 8 insertions(+), 385 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md index 1d29bfb17..542786339 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -1,140 +1,3 @@ --- -external help file: sharepointonline.xml -Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy -applicable: SharePoint Online -title: Add-SPOAppPrioritizationPolicy -schema: 2.0.0 -author: killerewok2000 -ms.author: Sibourda -ms.reviewer: ---- - -# Add-SPOAppPrioritizationPolicy - -## SYNOPSIS - -Adds a new SPO app prioritization Policy to your tenancy. -> [!NOTE] -> This functionality is rolling out and might not be fully enabled in your environment yet. - -## SYNTAX - -``` -Add-SPOAppPrioritizationPolicy -AppId -AzureSubscriptionId -ResourceGroup -Account -QuotaMultiplier [] -``` - -## DESCRIPTION - -This cmdlet adds a new SPO app prioritization billing policies to your tenancy. Ensure that you do not add a new billing policy to an app that already has one. - -## EXAMPLES - -### Example 1 - -```powershell -Add-SPOAppPrioritizationPolicies -AppId 48ab2ba9-5713-47d6-88a1-f6e3a0730833 -AzureSubscriptionId 48ab1ba4-9813-47d6-88a1-f6e3a0730822 -ResourceGroup newResourceGroup -Account newAccountName -QuotaMultiplier 5 -``` - -Example 1 adds the billing policy to your tenancy. It will not add the policy on invalid inputs or for apps that already have an associated policy. - - -## PARAMETERS - -### -AppId - -This parameter specifies the app ID of the application to onboard. -```yaml -Type: Guid -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AzureSubscriptionId - -This parameter describes the Azure subscription ID to which the container type needs to be associated. - -```yaml -Type: Guid -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - - -### -ResourceGroup - -This parameter describes the resource group to be used for the associated container type. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Account - -This parameter describes the account to which the billing profile of the container type is associated with. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### -QuotaMultiplier - -This parameter specifies the multiplier for the scaling feature. Value must be between 2 and 10. - -```yaml -Type: int -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### CommonParameters - -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). - - -## RELATED LINKS - -[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) - -[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) - -[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) +redirect_url: ../Add-SPOServicePrioritizationAppRegistration.md +--- \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md index 49a908a05..66ac2e6fb 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md @@ -1,57 +1,3 @@ --- -external help file: sharepointonline.xml -Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies -applicable: SharePoint Online -title: Get-SPOAppPrioritizationPolicies -schema: 2.0.0 -author: killerewok2000 -ms.author: Sibourda -ms.reviewer: ---- - -# Get-SPOAppPrioritizationPolicies - -## SYNOPSIS - -Gets all existing SPO app prioritization policies of your tenancy. -> [!NOTE] -> This functionality is rolling out and might not be fully enabled in your environment yet. - -## SYNTAX - -``` -Get-SPOAppPrioritizationPolicies [] -``` - - -## DESCRIPTION - -This cmdlet gets all existing SPO App prioritization billing policies for your tenancy. - -## EXAMPLES - -### Example 1 - -```powershell -Get- SPOAppPrioritizationPolicies -``` - -Example 1 returns a collection of all existing SPO app prioritization policies. Each policy will contain PolicyId, AppId, AzureSubscription, ResourceGroup, Account, Enabled (status of this policy i.e true or false) and QuotaMultiplier - - -## PARAMETERS - -### CommonParameters - -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). - -## RELATED LINKS - -[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) - -[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) - -[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) +redirect_url: ../Get-SPOServicePrioritizationAppRegistrations.md +--- \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md index 74f412757..d46ea7490 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md @@ -1,70 +1,3 @@ --- -external help file: sharepointonline.xml -Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Remove-SPOAppPrioritizationPolicy -applicable: SharePoint Online -title: Remove-SPOAppPrioritizationPolicy -schema: 2.0.0 -author: killerewok2000 -ms.author: Sibourda -ms.reviewer: ---- - -# Remove-SPOAppPrioritizationPolicy - -## SYNOPSIS - -Deletes an existing SPO app prioritization policy in your tenancy. -> [!NOTE] -> This functionality is rolling out and might not be fully enabled in your environment yet. - -## SYNTAX - -``` -Remove-SPOAppPrioritizationPolicy -PolicyId [] -``` - -## DESCRIPTION - -This cmdlet lets you delete an existing SPO app prioritization policy. - -## EXAMPLES - -### Example 1 - -```powershell -Remove-SPOAppPrioritizationPolicy -PolicyId 48abxxa9 -``` - -Example 1 deletes the policy bearing the policyId 48abxxa9. Running the `Get-SPOAppPrioritizationPolicies` command will no longer show the policy in the result. - -## PARAMETERS - -### -PolicyId - -This parameter specifies the ID of policy. -```yaml -Type: String -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### CommonParameters - -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). - -## RELATED LINKS - -[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) - -[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) - -[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) +redirect_url: ../Remove-SPOServicePrioritizationAppRegistration.md +--- \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index 41b627488..d794f09cd 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -1,122 +1,3 @@ --- -external help file: sharepointonline.xml -Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Set-SPOAppPrioritizationPolicy -applicable: SharePoint Online -title: Set-SPOAppPrioritizationPolicy -schema: 2.0.0 -author: killerewok2000 -ms.author: Sibourda -ms.reviewer: ---- - -# Set-SPOAppPrioritizationPolicy - -## SYNOPSIS - -Edits an existing SPO app prioritization policy in your tenancy. -> [!NOTE] -> This functionality is rolling out and might not be fully enabled in your environment yet. - -## SYNTAX - -``` -Set-SPOAppPrioritizationPolicy -PolicyId [-Enabled ] [-QuotaMultiplier ] [] -``` - -## DESCRIPTION - -This cmdlet lets you enable or disable an existing policy and/or change the quota multiplier limit associated with the policy. Note that disabling the policy does not delete the policy. If you need to change only one of the two parameters, retain the value of the non-changing parameter from the `Get-SPOAppPrioritizationPolicies` commandlet. - -## EXAMPLES - -### Example 1 - -```powershell -Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $false -``` - -Example 1 disables the policy bearing the policyId 48abxxa9 - -### Example 2 - -```powershell -Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $true -QuotaMultiplier 7 -``` - -Example 2 enables the policy bearing the policyId 48abxxa9 and also sets the quota multiplier limit to 7. - -### Example 3 - -```powershell -Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -QuotaMultiplier 8 -``` - -Example 3 set the quota multiplier limit to 7 of the policy bearing the policyId 48abxxa9. - -## PARAMETERS - -### -PolicyId - -This parameter specifies the ID of policy. -```yaml -Type: String -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Enabled - -This parameter described the state wanted of the policy. - -```yaml -Type: Bool -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - - -### -QuotaMultiplier - -This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 2 and 10. - -```yaml -Type: int -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters - -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). - -## RELATED LINKS - -[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) - -[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) - -[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) +redirect_url: ../Set-SPOServicePrioritizationAppRegistration.md +--- \ No newline at end of file From 3984d28262623d6a93bd7d155b7a9f5d30eb2d0e Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Mon, 5 May 2025 16:36:19 +0000 Subject: [PATCH 13/29] adding changes to json --- .openpublishing.redirection.json | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 9fcc5157d..189458f65 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -24,6 +24,31 @@ "source_path": "sharepoint/virtual-folder/sharepoint-online/Set-SPOTenantRestrictedSearchMode.md", "redirect_url": "/powershell/module/sharepoint-online", "redirect_document_id": false - } + }, + { + "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOTenantRestrictedSearchAllowedList.md", + "redirect_url": "/powershell/module/sharepoint-online", + "redirect_document_id": false + }, + { + "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOTenantRestrictedSearchAllowedList.md", + "redirect_url": "/powershell/module/sharepoint-online", + "redirect_document_id": false + }, + { + "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOTenantRestrictedSearchAllowedList.md", + "redirect_url": "/powershell/module/sharepoint-online", + "redirect_document_id": false + }, + { + "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOTenantRestrictedSearchAllowedList.md", + "redirect_url": "/powershell/module/sharepoint-online", + "redirect_document_id": false + }, + { + "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOTenantRestrictedSearchAllowedList.md", + "redirect_url": "/powershell/module/sharepoint-online", + "redirect_document_id": false + }, ] } From b69f9d8bb71dbe05a8886034e65437809c131747 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Mon, 5 May 2025 16:40:41 +0000 Subject: [PATCH 14/29] fixing json file --- .openpublishing.redirection.json | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 189458f65..0a72b2d8a 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -26,29 +26,24 @@ "redirect_document_id": false }, { - "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOTenantRestrictedSearchAllowedList.md", - "redirect_url": "/powershell/module/sharepoint-online", - "redirect_document_id": false + "source_path": "sharepoint/virtual-folder/sharepoint-online/Add-SPOAppPrioritizationPolicy.md", + "redirect_url": "/powershell/module/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md", + "redirect_document_id": true }, { - "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOTenantRestrictedSearchAllowedList.md", - "redirect_url": "/powershell/module/sharepoint-online", - "redirect_document_id": false + "source_path": "sharepoint/virtual-folder/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", + "redirect_url": "/powershell/module/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md", + "redirect_document_id": true }, { - "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOTenantRestrictedSearchAllowedList.md", - "redirect_url": "/powershell/module/sharepoint-online", - "redirect_document_id": false + "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md", + "redirect_url": "/powershell/module/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md", + "redirect_document_id": true }, { - "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOTenantRestrictedSearchAllowedList.md", - "redirect_url": "/powershell/module/sharepoint-online", - "redirect_document_id": false - }, - { - "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOTenantRestrictedSearchAllowedList.md", - "redirect_url": "/powershell/module/sharepoint-online", - "redirect_document_id": false - }, + "source_path": "sharepoint/virtual-folder/sharepoint-online/Set-SPOAppPrioritizationPolicy.md", + "redirect_url": "/powershell/module/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md", + "redirect_document_id": true + } ] } From e391417e4cdb528934fe9b448d93559c7a97ac8e Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Thu, 8 May 2025 21:45:59 +0000 Subject: [PATCH 15/29] try fix redirect --- .openpublishing.redirection.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 0a72b2d8a..0a9220cea 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -28,22 +28,22 @@ { "source_path": "sharepoint/virtual-folder/sharepoint-online/Add-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/module/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md", - "redirect_document_id": true + "redirect_document_id": false }, { "source_path": "sharepoint/virtual-folder/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", "redirect_url": "/powershell/module/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md", - "redirect_document_id": true + "redirect_document_id": false }, { "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/module/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md", - "redirect_document_id": true + "redirect_document_id": false }, { "source_path": "sharepoint/virtual-folder/sharepoint-online/Set-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/module/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md", - "redirect_document_id": true + "redirect_document_id": false } ] } From 26c52e36916cc626ab6251e1b9aa3723acf50b7e Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Thu, 8 May 2025 21:48:30 +0000 Subject: [PATCH 16/29] fixing redirect --- .openpublishing.redirection.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 0a9220cea..549f9d3e2 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -26,22 +26,22 @@ "redirect_document_id": false }, { - "source_path": "sharepoint/virtual-folder/sharepoint-online/Add-SPOAppPrioritizationPolicy.md", + "source_path": "/powershell/module/sharepoint-online//Add-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/module/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md", - "redirect_document_id": false + "redirect_document_id": true }, { - "source_path": "sharepoint/virtual-folder/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", + "source_path": "/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", "redirect_url": "/powershell/module/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md", "redirect_document_id": false }, { - "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md", + "source_path": "/powershell/module/sharepoint-online//Remove-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/module/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md", "redirect_document_id": false }, { - "source_path": "sharepoint/virtual-folder/sharepoint-online/Set-SPOAppPrioritizationPolicy.md", + "source_path": "/powershell/module/sharepoint-online//Set-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/module/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md", "redirect_document_id": false } From 79bf8f4f07cd97c125342916f7ff915094617f85 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Thu, 8 May 2025 21:48:57 +0000 Subject: [PATCH 17/29] fixing redirection --- .openpublishing.redirection.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 549f9d3e2..90686547f 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -33,17 +33,17 @@ { "source_path": "/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", "redirect_url": "/powershell/module/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md", - "redirect_document_id": false + "redirect_document_id": true }, { "source_path": "/powershell/module/sharepoint-online//Remove-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/module/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md", - "redirect_document_id": false + "redirect_document_id": true }, { "source_path": "/powershell/module/sharepoint-online//Set-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/module/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md", - "redirect_document_id": false + "redirect_document_id": true } ] } From 134168b64b2222c9ee8b52c7adf4ebbd6229c5e8 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 9 May 2025 18:00:03 +0000 Subject: [PATCH 18/29] change --- .openpublishing.redirection.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 90686547f..8a88caa5d 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -26,24 +26,24 @@ "redirect_document_id": false }, { - "source_path": "/powershell/module/sharepoint-online//Add-SPOAppPrioritizationPolicy.md", - "redirect_url": "/powershell/module/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md", - "redirect_document_id": true + "source_path": "powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy.md", + "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", + "redirect_document_id": false }, { - "source_path": "/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", - "redirect_url": "/powershell/module/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md", - "redirect_document_id": true + "source_path": "powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", + "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", + "redirect_document_id": false }, { - "source_path": "/powershell/module/sharepoint-online//Remove-SPOAppPrioritizationPolicy.md", - "redirect_url": "/powershell/module/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md", - "redirect_document_id": true + "source_path": "powershell/module/sharepoint-online//Remove-SPOAppPrioritizationPolicy.md", + "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", + "redirect_document_id": false }, { - "source_path": "/powershell/module/sharepoint-online//Set-SPOAppPrioritizationPolicy.md", - "redirect_url": "/powershell/module/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md", - "redirect_document_id": true + "source_path": "powershell/module/sharepoint-online//Set-SPOAppPrioritizationPolicy.md", + "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", + "redirect_document_id": false } ] } From 2430953f764c18702060494da72508ae43006781 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 9 May 2025 18:03:57 +0000 Subject: [PATCH 19/29] trying to fix redirection --- .openpublishing.redirection.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 8a88caa5d..28431f132 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -26,22 +26,22 @@ "redirect_document_id": false }, { - "source_path": "powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy.md", + "source_path": "/powershell/module/sharepoint-online/add-spoappprioritizationpolicy.md", "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", "redirect_document_id": false }, { - "source_path": "powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", + "source_path": "/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", "redirect_document_id": false }, { - "source_path": "powershell/module/sharepoint-online//Remove-SPOAppPrioritizationPolicy.md", + "source_path": "/powershell/module/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", "redirect_document_id": false }, { - "source_path": "powershell/module/sharepoint-online//Set-SPOAppPrioritizationPolicy.md", + "source_path": "/powershell/module/sharepoint-online/Set-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", "redirect_document_id": false } From 4a4f666ab2fc2cfa891343b96a40817dccd7f4a3 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 9 May 2025 18:31:43 +0000 Subject: [PATCH 20/29] redirection change --- .openpublishing.redirection.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 28431f132..24c447550 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -26,22 +26,22 @@ "redirect_document_id": false }, { - "source_path": "/powershell/module/sharepoint-online/add-spoappprioritizationpolicy.md", + "source_path": "powershell/module/sharepoint-online/add-spoappprioritizationpolicy.md", "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", "redirect_document_id": false }, { - "source_path": "/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", + "source_path": "powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", "redirect_document_id": false }, { - "source_path": "/powershell/module/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md", + "source_path": "powershell/module/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", "redirect_document_id": false }, { - "source_path": "/powershell/module/sharepoint-online/Set-SPOAppPrioritizationPolicy.md", + "source_path": "powershell/module/sharepoint-online/Set-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", "redirect_document_id": false } From bf8e559c63b2c70c7a08b95f6113db5d8b0669b5 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 9 May 2025 18:40:36 +0000 Subject: [PATCH 21/29] fixu --- .openpublishing.redirection.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 24c447550..7dab8817a 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -26,22 +26,22 @@ "redirect_document_id": false }, { - "source_path": "powershell/module/sharepoint-online/add-spoappprioritizationpolicy.md", + "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", "redirect_document_id": false }, { - "source_path": "powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", + "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", "redirect_document_id": false }, { - "source_path": "powershell/module/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md", + "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", "redirect_document_id": false }, { - "source_path": "powershell/module/sharepoint-online/Set-SPOAppPrioritizationPolicy.md", + "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md", "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", "redirect_document_id": false } From 60678b13e1bae0ae56a8ed1bf6125ef4ef06388f Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 9 May 2025 18:47:09 +0000 Subject: [PATCH 22/29] fixing url --- .openpublishing.redirection.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 7dab8817a..f23e3dd02 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -27,22 +27,22 @@ }, { "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md", - "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", + "redirect_url": "/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md", "redirect_document_id": false }, { "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", - "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", + "redirect_url": "/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md", "redirect_document_id": false }, { "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md", - "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", + "redirect_url": "/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md", "redirect_document_id": false }, { "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md", - "redirect_url": "/powershell/sharepoint/sharepoint-online/connect-sharepoint-online.md", + "redirect_url": "/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md", "redirect_document_id": false } ] From a43d0641e84b164d5b08b8a0f5ed12499096036e Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 9 May 2025 19:22:56 +0000 Subject: [PATCH 23/29] trying to fix redirection --- .openpublishing.redirection.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index f23e3dd02..51c2bd71f 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -27,22 +27,22 @@ }, { "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md", - "redirect_url": "/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md", + "redirect_url": "/powershell/module/sharepoint-online/add-sposerviceprioritizationappregistration", "redirect_document_id": false }, { "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", - "redirect_url": "/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md", + "redirect_url": "/powershell/module/sharepoint-online/get-sposerviceprioritizationappregistrations", "redirect_document_id": false }, { "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md", - "redirect_url": "/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration.md", + "redirect_url": "/powershell/module/sharepoint-online/remove-sposerviceprioritizationappregistration", "redirect_document_id": false }, { "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md", - "redirect_url": "/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOServicePrioritizationAppRegistration.md", + "redirect_url": "/powershell/module/sharepoint-online/set-sposerviceprioritizationappregistration", "redirect_document_id": false } ] From f51e5689c0d0ae30f8967d5598eb090d9a2f3c9e Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 9 May 2025 19:28:15 +0000 Subject: [PATCH 24/29] trying to fix redirection --- .../sharepoint-online/Add-SPOAppPrioritizationPolicy.md | 9 +++++++++ .../Get-SPOAppPrioritizationPolicies.md | 9 +++++++++ .../Remove-SPOAppPrioritizationPolicy.md | 9 +++++++++ .../sharepoint-online/Set-SPOAppPrioritizationPolicy.md | 9 +++++++++ 4 files changed, 36 insertions(+) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md index 542786339..a3300e05e 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -1,3 +1,12 @@ --- redirect_url: ../Add-SPOServicePrioritizationAppRegistration.md +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy +applicable: SharePoint Online +title: Add-SPOAppPrioritizationPolicy +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: --- \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md index 66ac2e6fb..6d876b23e 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md @@ -1,3 +1,12 @@ --- redirect_url: ../Get-SPOServicePrioritizationAppRegistrations.md +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy +applicable: SharePoint Online +title: Add-SPOAppPrioritizationPolicy +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: --- \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md index d46ea7490..a36d9ec74 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md @@ -1,3 +1,12 @@ --- redirect_url: ../Remove-SPOServicePrioritizationAppRegistration.md +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy +applicable: SharePoint Online +title: Add-SPOAppPrioritizationPolicy +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: --- \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index d794f09cd..2f801ac96 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -1,3 +1,12 @@ --- redirect_url: ../Set-SPOServicePrioritizationAppRegistration.md +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy +applicable: SharePoint Online +title: Add-SPOAppPrioritizationPolicy +schema: 2.0.0 +author: killerewok2000 +ms.author: Sibourda +ms.reviewer: --- \ No newline at end of file From 07b9acadc7755c3b1e96e4fcc210c3d912c83f97 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 9 May 2025 19:29:02 +0000 Subject: [PATCH 25/29] still fixing redirection --- .../sharepoint-online/Get-SPOAppPrioritizationPolicies.md | 2 +- .../sharepoint-online/Remove-SPOAppPrioritizationPolicy.md | 2 +- .../sharepoint-online/Set-SPOAppPrioritizationPolicy.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md index 6d876b23e..7ddd0bddd 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md @@ -2,7 +2,7 @@ redirect_url: ../Get-SPOServicePrioritizationAppRegistrations.md external help file: sharepointonline.xml Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicy applicable: SharePoint Online title: Add-SPOAppPrioritizationPolicy schema: 2.0.0 diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md index a36d9ec74..a079562bd 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md @@ -2,7 +2,7 @@ redirect_url: ../Remove-SPOServicePrioritizationAppRegistration.md external help file: sharepointonline.xml Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Remove-SPOAppPrioritizationPolicy applicable: SharePoint Online title: Add-SPOAppPrioritizationPolicy schema: 2.0.0 diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index 2f801ac96..ff7c39274 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -2,7 +2,7 @@ redirect_url: ../Set-SPOServicePrioritizationAppRegistration.md external help file: sharepointonline.xml Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Set-SPOAppPrioritizationPolicy applicable: SharePoint Online title: Add-SPOAppPrioritizationPolicy schema: 2.0.0 From d66cecf8d01334dca03331a010d0edd050c0a55e Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 9 May 2025 19:34:57 +0000 Subject: [PATCH 26/29] canceling the deletes --- .openpublishing.redirection.json | 20 --- .../Add-SPOAppPrioritizationPolicy.md | 118 +++++++++++++++++- .../Get-SPOAppPrioritizationPolicies.md | 53 +++++++- .../Remove-SPOAppPrioritizationPolicy.md | 62 ++++++++- .../Set-SPOAppPrioritizationPolicy.md | 107 +++++++++++++++- 5 files changed, 328 insertions(+), 32 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 51c2bd71f..bded771da 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -24,26 +24,6 @@ "source_path": "sharepoint/virtual-folder/sharepoint-online/Set-SPOTenantRestrictedSearchMode.md", "redirect_url": "/powershell/module/sharepoint-online", "redirect_document_id": false - }, - { - "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md", - "redirect_url": "/powershell/module/sharepoint-online/add-sposerviceprioritizationappregistration", - "redirect_document_id": false - }, - { - "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", - "redirect_url": "/powershell/module/sharepoint-online/get-sposerviceprioritizationappregistrations", - "redirect_document_id": false - }, - { - "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md", - "redirect_url": "/powershell/module/sharepoint-online/remove-sposerviceprioritizationappregistration", - "redirect_document_id": false - }, - { - "source_path": "sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md", - "redirect_url": "/powershell/module/sharepoint-online/set-sposerviceprioritizationappregistration", - "redirect_document_id": false } ] } diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md index a3300e05e..9572cca92 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -9,4 +9,120 @@ schema: 2.0.0 author: killerewok2000 ms.author: Sibourda ms.reviewer: ---- \ No newline at end of file +--- + +# Add-SPOAppPrioritizationPolicy + +## SYNOPSIS + +Adds a new SPO app prioritization Policy to your tenancy. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. +## SYNTAX + +``` +Add-SPOAppPrioritizationPolicy -AppId -AzureSubscriptionId -ResourceGroup -Account -QuotaMultiplier [] +``` + +## DESCRIPTION + +This cmdlet adds a new SPO app prioritization billing policies to your tenancy. Ensure that you do not add a new billing policy to an app that already has one. + +## EXAMPLES + +### Example 1 + +```powershell +Add-SPOAppPrioritizationPolicies -AppId 48ab2ba9-5713-47d6-88a1-f6e3a0730833 -AzureSubscriptionId 48ab1ba4-9813-47d6-88a1-f6e3a0730822 -ResourceGroup newResourceGroup -Account newAccountName -QuotaMultiplier 5 +``` + +Example 1 adds the billing policy to your tenancy. It will not add the policy on invalid inputs or for apps that already have an associated policy. + + +## PARAMETERS + +### -AppId + +This parameter specifies the app ID of the application to onboard. +```yaml +Type: Guid +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### -AzureSubscriptionId +This parameter describes the Azure subscription ID to which the container type needs to be associated. +```yaml +Type: Guid +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### -ResourceGroup +This parameter describes the resource group to be used for the associated container type. +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### -Account +This parameter describes the account to which the billing profile of the container type is associated with. +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### -QuotaMultiplier + +This parameter specifies the multiplier for the scaling feature. Value must be between 2 and 10. +```yaml +Type: int +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### CommonParameters +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) + +[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) + +[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md index 7ddd0bddd..e26b8f60e 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md @@ -1,12 +1,55 @@ ---- -redirect_url: ../Get-SPOServicePrioritizationAppRegistrations.md external help file: sharepointonline.xml Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicy +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies applicable: SharePoint Online -title: Add-SPOAppPrioritizationPolicy +title: Get-SPOAppPrioritizationPolicies schema: 2.0.0 author: killerewok2000 ms.author: Sibourda ms.reviewer: ---- \ No newline at end of file +--- + +# Get-SPOAppPrioritizationPolicies + +## SYNOPSIS + +Gets all existing SPO app prioritization policies of your tenancy. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. +## SYNTAX + +``` +Get-SPOAppPrioritizationPolicies [] +``` + + +## DESCRIPTION + +This cmdlet gets all existing SPO App prioritization billing policies for your tenancy. + +## EXAMPLES + +### Example 1 + +```powershell +Get- SPOAppPrioritizationPolicies +``` + +Example 1 returns a collection of all existing SPO app prioritization policies. Each policy will contain PolicyId, AppId, AzureSubscription, ResourceGroup, Account, Enabled (status of this policy i.e true or false) and QuotaMultiplier + + +## PARAMETERS + +### CommonParameters + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) + +[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) + +[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md index a079562bd..1f0ef76d1 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md @@ -1,12 +1,68 @@ --- -redirect_url: ../Remove-SPOServicePrioritizationAppRegistration.md external help file: sharepointonline.xml Module Name: Microsoft.Online.SharePoint.PowerShell online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Remove-SPOAppPrioritizationPolicy applicable: SharePoint Online -title: Add-SPOAppPrioritizationPolicy +title: Remove-SPOAppPrioritizationPolicy schema: 2.0.0 author: killerewok2000 ms.author: Sibourda ms.reviewer: ---- \ No newline at end of file +--- + +# Remove-SPOAppPrioritizationPolicy + +## SYNOPSIS + +Deletes an existing SPO app prioritization policy in your tenancy. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. +## SYNTAX + +``` +Remove-SPOAppPrioritizationPolicy -PolicyId [] +``` + +## DESCRIPTION + +This cmdlet lets you delete an existing SPO app prioritization policy. + +## EXAMPLES + +### Example 1 + +```powershell +Remove-SPOAppPrioritizationPolicy -PolicyId 48abxxa9 +``` + +Example 1 deletes the policy bearing the policyId 48abxxa9. Running the `Get-SPOAppPrioritizationPolicies` command will no longer show the policy in the result. + +## PARAMETERS + +### -PolicyId + +This parameter specifies the ID of policy. +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### CommonParameters +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) + +[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) + +[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index ff7c39274..840095e59 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -1,12 +1,113 @@ --- -redirect_url: ../Set-SPOServicePrioritizationAppRegistration.md external help file: sharepointonline.xml Module Name: Microsoft.Online.SharePoint.PowerShell online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Set-SPOAppPrioritizationPolicy applicable: SharePoint Online -title: Add-SPOAppPrioritizationPolicy +title: Set-SPOAppPrioritizationPolicy schema: 2.0.0 author: killerewok2000 ms.author: Sibourda ms.reviewer: ---- \ No newline at end of file +--- + +# Set-SPOAppPrioritizationPolicy + +## SYNOPSIS + +Edits an existing SPO app prioritization policy in your tenancy. +> [!NOTE] +> This functionality is rolling out and might not be fully enabled in your environment yet. +## SYNTAX + +``` +Set-SPOAppPrioritizationPolicy -PolicyId [-Enabled ] [-QuotaMultiplier ] [] +``` + +## DESCRIPTION + +This cmdlet lets you enable or disable an existing policy and/or change the quota multiplier limit associated with the policy. Note that disabling the policy does not delete the policy. If you need to change only one of the two parameters, retain the value of the non-changing parameter from the `Get-SPOAppPrioritizationPolicies` commandlet. + +## EXAMPLES + +### Example 1 + +```powershell +Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $false +``` + +Example 1 disables the policy bearing the policyId 48abxxa9 + +### Example 2 + +```powershell +Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $true -QuotaMultiplier 7 +``` + +Example 2 enables the policy bearing the policyId 48abxxa9 and also sets the quota multiplier limit to 7. + +### Example 3 + +```powershell +Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -QuotaMultiplier 8 +``` + +Example 3 set the quota multiplier limit to 7 of the policy bearing the policyId 48abxxa9. + +## PARAMETERS + +### -PolicyId + +This parameter specifies the ID of policy. +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### -Enabled +This parameter described the state wanted of the policy. +```yaml +Type: Bool +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### -QuotaMultiplier + +This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 2 and 10. +```yaml +Type: int +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### CommonParameters +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) + +[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) + +[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) \ No newline at end of file From 4121a288d53f190998181c74afe8554f89fee6fa Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 9 May 2025 19:40:00 +0000 Subject: [PATCH 27/29] trying to revert it all --- .../sharepoint-online/Add-SPOAppPrioritizationPolicy.md | 1 - .../sharepoint-online/Get-SPOAppPrioritizationPolicies.md | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md index 9572cca92..22e9f3d59 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -1,5 +1,4 @@ --- -redirect_url: ../Add-SPOServicePrioritizationAppRegistration.md external help file: sharepointonline.xml Module Name: Microsoft.Online.SharePoint.PowerShell online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md index e26b8f60e..b0aa1ef9e 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md @@ -1,3 +1,4 @@ +--- external help file: sharepointonline.xml Module Name: Microsoft.Online.SharePoint.PowerShell online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies From 843271e2cac622cf1cc58631391a660dccdcc16b Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 9 May 2025 19:48:27 +0000 Subject: [PATCH 28/29] adding a note --- .../sharepoint-online/Add-SPOAppPrioritizationPolicy.md | 2 +- .../sharepoint-online/Get-SPOAppPrioritizationPolicies.md | 2 +- .../sharepoint-online/Remove-SPOAppPrioritizationPolicy.md | 2 +- .../sharepoint-online/Set-SPOAppPrioritizationPolicy.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md index 22e9f3d59..d6c16ee2d 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -16,7 +16,7 @@ ms.reviewer: Adds a new SPO app prioritization Policy to your tenancy. > [!NOTE] -> This functionality is rolling out and might not be fully enabled in your environment yet. +> New command is now : Add-SPOServicePrioritizationAppRegistration ## SYNTAX ``` diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md index b0aa1ef9e..e165c65ed 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md @@ -16,7 +16,7 @@ ms.reviewer: Gets all existing SPO app prioritization policies of your tenancy. > [!NOTE] -> This functionality is rolling out and might not be fully enabled in your environment yet. +> New command is now : Get-SPOServicePrioritizationAppRegistrations ## SYNTAX ``` diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md index 1f0ef76d1..8361a77e2 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md @@ -16,7 +16,7 @@ ms.reviewer: Deletes an existing SPO app prioritization policy in your tenancy. > [!NOTE] -> This functionality is rolling out and might not be fully enabled in your environment yet. +> New command is now : Remove-SPOServicePrioritizationAppRegistrations ## SYNTAX ``` diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index 840095e59..b7fce6f5d 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -16,7 +16,7 @@ ms.reviewer: Edits an existing SPO app prioritization policy in your tenancy. > [!NOTE] -> This functionality is rolling out and might not be fully enabled in your environment yet. +> New command is now : Set-SPOServicePrioritizationAppRegistrations ## SYNTAX ``` From 848cde3321432e4412eaceef24d0f1da323f5405 Mon Sep 17 00:00:00 2001 From: David Strome <21028455+dstrome@users.noreply.github.com> Date: Tue, 13 May 2025 11:47:12 -0700 Subject: [PATCH 29/29] remove old cmdlets, add redirects to new versions --- .openpublishing.redirection.json | 20 +++ .../Add-SPOAppPrioritizationPolicy.md | 127 ------------------ .../Get-SPOAppPrioritizationPolicies.md | 56 -------- .../Remove-SPOAppPrioritizationPolicy.md | 68 ---------- .../Set-SPOAppPrioritizationPolicy.md | 113 ---------------- 5 files changed, 20 insertions(+), 364 deletions(-) delete mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md delete mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md delete mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md delete mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index bded771da..bb88697cc 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -24,6 +24,26 @@ "source_path": "sharepoint/virtual-folder/sharepoint-online/Set-SPOTenantRestrictedSearchMode.md", "redirect_url": "/powershell/module/sharepoint-online", "redirect_document_id": false + }, + { + "source_path": "sharepoint/virtual-folder/sharepoint-online/Add-SPOAppPrioritizationPolicy.md", + "redirect_url": "/powershell/module/sharepoint-online/Add-SPOServicePrioritizationAppRegistration", + "redirect_document_id": false + }, + { + "source_path": "sharepoint/virtual-folder/sharepoint-online/Get-SPOAppPrioritizationPolicies.md", + "redirect_url": "/powershell/module/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations", + "redirect_document_id": false + }, + { + "source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md", + "redirect_url": "/powershell/module/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration", + "redirect_document_id": false + }, + { + "source_path": "sharepoint/virtual-folder/sharepoint-online/Set-SPOAppPrioritizationPolicy.md", + "redirect_url": "/powershell/module/sharepoint-online/Set-SPOServicePrioritizationAppRegistration", + "redirect_document_id": false } ] } diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md deleted file mode 100644 index d6c16ee2d..000000000 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ /dev/null @@ -1,127 +0,0 @@ ---- -external help file: sharepointonline.xml -Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy -applicable: SharePoint Online -title: Add-SPOAppPrioritizationPolicy -schema: 2.0.0 -author: killerewok2000 -ms.author: Sibourda -ms.reviewer: ---- - -# Add-SPOAppPrioritizationPolicy - -## SYNOPSIS - -Adds a new SPO app prioritization Policy to your tenancy. -> [!NOTE] -> New command is now : Add-SPOServicePrioritizationAppRegistration -## SYNTAX - -``` -Add-SPOAppPrioritizationPolicy -AppId -AzureSubscriptionId -ResourceGroup -Account -QuotaMultiplier [] -``` - -## DESCRIPTION - -This cmdlet adds a new SPO app prioritization billing policies to your tenancy. Ensure that you do not add a new billing policy to an app that already has one. - -## EXAMPLES - -### Example 1 - -```powershell -Add-SPOAppPrioritizationPolicies -AppId 48ab2ba9-5713-47d6-88a1-f6e3a0730833 -AzureSubscriptionId 48ab1ba4-9813-47d6-88a1-f6e3a0730822 -ResourceGroup newResourceGroup -Account newAccountName -QuotaMultiplier 5 -``` - -Example 1 adds the billing policy to your tenancy. It will not add the policy on invalid inputs or for apps that already have an associated policy. - - -## PARAMETERS - -### -AppId - -This parameter specifies the app ID of the application to onboard. -```yaml -Type: Guid -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### -AzureSubscriptionId -This parameter describes the Azure subscription ID to which the container type needs to be associated. -```yaml -Type: Guid -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### -ResourceGroup -This parameter describes the resource group to be used for the associated container type. -```yaml -Type: String -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### -Account -This parameter describes the account to which the billing profile of the container type is associated with. -```yaml -Type: String -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### -QuotaMultiplier - -This parameter specifies the multiplier for the scaling feature. Value must be between 2 and 10. -```yaml -Type: int -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### CommonParameters -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). - - -## RELATED LINKS - -[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) - -[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) - -[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md deleted file mode 100644 index e165c65ed..000000000 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -external help file: sharepointonline.xml -Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies -applicable: SharePoint Online -title: Get-SPOAppPrioritizationPolicies -schema: 2.0.0 -author: killerewok2000 -ms.author: Sibourda -ms.reviewer: ---- - -# Get-SPOAppPrioritizationPolicies - -## SYNOPSIS - -Gets all existing SPO app prioritization policies of your tenancy. -> [!NOTE] -> New command is now : Get-SPOServicePrioritizationAppRegistrations -## SYNTAX - -``` -Get-SPOAppPrioritizationPolicies [] -``` - - -## DESCRIPTION - -This cmdlet gets all existing SPO App prioritization billing policies for your tenancy. - -## EXAMPLES - -### Example 1 - -```powershell -Get- SPOAppPrioritizationPolicies -``` - -Example 1 returns a collection of all existing SPO app prioritization policies. Each policy will contain PolicyId, AppId, AzureSubscription, ResourceGroup, Account, Enabled (status of this policy i.e true or false) and QuotaMultiplier - - -## PARAMETERS - -### CommonParameters - -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). - -## RELATED LINKS - -[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) - -[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) - -[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md deleted file mode 100644 index 8361a77e2..000000000 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -external help file: sharepointonline.xml -Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Remove-SPOAppPrioritizationPolicy -applicable: SharePoint Online -title: Remove-SPOAppPrioritizationPolicy -schema: 2.0.0 -author: killerewok2000 -ms.author: Sibourda -ms.reviewer: ---- - -# Remove-SPOAppPrioritizationPolicy - -## SYNOPSIS - -Deletes an existing SPO app prioritization policy in your tenancy. -> [!NOTE] -> New command is now : Remove-SPOServicePrioritizationAppRegistrations -## SYNTAX - -``` -Remove-SPOAppPrioritizationPolicy -PolicyId [] -``` - -## DESCRIPTION - -This cmdlet lets you delete an existing SPO app prioritization policy. - -## EXAMPLES - -### Example 1 - -```powershell -Remove-SPOAppPrioritizationPolicy -PolicyId 48abxxa9 -``` - -Example 1 deletes the policy bearing the policyId 48abxxa9. Running the `Get-SPOAppPrioritizationPolicies` command will no longer show the policy in the result. - -## PARAMETERS - -### -PolicyId - -This parameter specifies the ID of policy. -```yaml -Type: String -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### CommonParameters -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). - -## RELATED LINKS - -[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) - -[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) - -[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) \ No newline at end of file diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md deleted file mode 100644 index b7fce6f5d..000000000 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ /dev/null @@ -1,113 +0,0 @@ ---- -external help file: sharepointonline.xml -Module Name: Microsoft.Online.SharePoint.PowerShell -online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Set-SPOAppPrioritizationPolicy -applicable: SharePoint Online -title: Set-SPOAppPrioritizationPolicy -schema: 2.0.0 -author: killerewok2000 -ms.author: Sibourda -ms.reviewer: ---- - -# Set-SPOAppPrioritizationPolicy - -## SYNOPSIS - -Edits an existing SPO app prioritization policy in your tenancy. -> [!NOTE] -> New command is now : Set-SPOServicePrioritizationAppRegistrations -## SYNTAX - -``` -Set-SPOAppPrioritizationPolicy -PolicyId [-Enabled ] [-QuotaMultiplier ] [] -``` - -## DESCRIPTION - -This cmdlet lets you enable or disable an existing policy and/or change the quota multiplier limit associated with the policy. Note that disabling the policy does not delete the policy. If you need to change only one of the two parameters, retain the value of the non-changing parameter from the `Get-SPOAppPrioritizationPolicies` commandlet. - -## EXAMPLES - -### Example 1 - -```powershell -Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $false -``` - -Example 1 disables the policy bearing the policyId 48abxxa9 - -### Example 2 - -```powershell -Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $true -QuotaMultiplier 7 -``` - -Example 2 enables the policy bearing the policyId 48abxxa9 and also sets the quota multiplier limit to 7. - -### Example 3 - -```powershell -Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -QuotaMultiplier 8 -``` - -Example 3 set the quota multiplier limit to 7 of the policy bearing the policyId 48abxxa9. - -## PARAMETERS - -### -PolicyId - -This parameter specifies the ID of policy. -```yaml -Type: String -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### -Enabled -This parameter described the state wanted of the policy. -```yaml -Type: Bool -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### -QuotaMultiplier - -This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 2 and 10. -```yaml -Type: int -Parameter Sets: (All) -Aliases: -Applicable: SharePoint Online - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` -### CommonParameters -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). - -## RELATED LINKS - -[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) - -[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) - -[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) \ No newline at end of file