-
Notifications
You must be signed in to change notification settings - Fork 166
Service Prioritization Name change from App prioritization #859
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
1e9b0f1
First add and remove of commands
killerewok2000 b20d113
added examples
killerewok2000 4f0c123
added notes back
killerewok2000 aa9c341
added parameters description to the following cmdlets:
killerewok2000 acbf084
addressed feedback
killerewok2000 e2c51d7
Merge branch 'MicrosoftDocs:main' into main
killerewok2000 9eb8d8c
fixing redirection
killerewok2000 2265992
fixing redirection
killerewok2000 d7542b4
fixing redirection
killerewok2000 1cb3dbf
tring to fix redirect
killerewok2000 81a5a43
revert change
killerewok2000 6452b14
restore deletted
killerewok2000 32effc2
trying redirect again
killerewok2000 fc68d8e
Merge branch 'MicrosoftDocs:main' into main
killerewok2000 da9cb10
Merge branch 'main' into main
aditisrivastava07 3741ca8
Merge branch 'main' into main
killerewok2000 3984d28
adding changes to json
killerewok2000 b69f9d8
fixing json file
killerewok2000 f7e5702
Merge branch 'main' into main
killerewok2000 e391417
try fix redirect
killerewok2000 26c52e3
fixing redirect
killerewok2000 79bf8f4
fixing redirection
killerewok2000 134168b
change
killerewok2000 2430953
trying to fix redirection
killerewok2000 4a4f666
redirection change
killerewok2000 bf8e559
fixu
killerewok2000 60678b1
fixing url
killerewok2000 a43d064
trying to fix redirection
killerewok2000 f51e568
trying to fix redirection
killerewok2000 07b9aca
still fixing redirection
killerewok2000 d66cecf
canceling the deletes
killerewok2000 4121a28
trying to revert it all
killerewok2000 843271e
adding a note
killerewok2000 37af70f
Merge branch 'main' into main
killerewok2000 848cde3
remove old cmdlets, add redirects to new versions
dstrome File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
140 changes: 0 additions & 140 deletions
140
sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md
This file was deleted.
Oops, something went wrong.
109 changes: 109 additions & 0 deletions
109
.../sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/Add-SPOServicePrioritizationAppRegistration | ||
applicable: SharePoint Online | ||
title: Add-SPOServicePrioritizationAppRegistration | ||
schema: 2.0.0 | ||
author: killerewok2000 | ||
ms.author: Sibourda | ||
ms.reviewer: | ||
--- | ||
|
||
# Add-SPOServicePrioritizationAppRegistration | ||
|
||
## 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 | ||
|
||
``` | ||
Add-SPOServicePrioritizationAppRegistration -AppId <Guid> -PolicyId <Guid> -QuotaMultiplier <Int32> | ||
[<CommonParameters>] | ||
``` | ||
|
||
## 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-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" -PolicyId "87654321-4321-4321-4321-0987654321ba" -QuotaMultiplier 2 | ||
killerewok2000 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
``` | ||
This example adds a new app registration with the specified AppId and PolicyId, and sets the quota multiplier to 2. | ||
|
||
## PARAMETERS | ||
|
||
### -AppId | ||
Specifies the unique identifier (GUID) of the app registration to be added. | ||
|
||
```yaml | ||
Type: Guid | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
|
||
### -PolicyId | ||
Specifies the unique identifier (GUID) of the policy to associate with the app registration. | ||
|
||
```yaml | ||
Type: Guid | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
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: 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). | ||
killerewok2000 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
## 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) |
57 changes: 0 additions & 57 deletions
57
sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md
This file was deleted.
Oops, something went wrong.
67 changes: 67 additions & 0 deletions
67
...sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
--- | ||
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 | ||
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 | ||
|
||
``` | ||
Get-SPOServicePrioritizationAppRegistrations [<CommonParameters>] | ||
``` | ||
|
||
## 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:\> 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. | ||
|
||
killerewok2000 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
### 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) | ||
|
||
|
||
killerewok2000 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
[Remove-SPOServicePrioritizationAppRegistration](./Remove-SPOServicePrioritizationAppRegistration.md) | ||
|
||
[New-SPOServicePrioritizationBillingPolicy](./New-SPOServicePrioritizationBillingPolicy.md) | ||
|
||
[Get-SPOServicePrioritizationBillingPolicies](./Get-SPOServicePrioritizationBillingPolicies.md) | ||
|
||
[Set-SPOServicePrioritizationAppRegistration](./Set-SPOServicePrioritizationAppRegistration.md) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.