-
Notifications
You must be signed in to change notification settings - Fork 196
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
SimonBourdages b20d113
added examples
SimonBourdages 4f0c123
added notes back
SimonBourdages aa9c341
added parameters description to the following cmdlets:
SimonBourdages acbf084
addressed feedback
SimonBourdages e2c51d7
Merge branch 'MicrosoftDocs:main' into main
SimonBourdages 9eb8d8c
fixing redirection
SimonBourdages 2265992
fixing redirection
SimonBourdages d7542b4
fixing redirection
SimonBourdages 1cb3dbf
tring to fix redirect
SimonBourdages 81a5a43
revert change
SimonBourdages 6452b14
restore deletted
SimonBourdages 32effc2
trying redirect again
SimonBourdages fc68d8e
Merge branch 'MicrosoftDocs:main' into main
SimonBourdages da9cb10
Merge branch 'main' into main
aditisrivastava07 3741ca8
Merge branch 'main' into main
SimonBourdages 3984d28
adding changes to json
SimonBourdages b69f9d8
fixing json file
SimonBourdages f7e5702
Merge branch 'main' into main
SimonBourdages e391417
try fix redirect
SimonBourdages 26c52e3
fixing redirect
SimonBourdages 79bf8f4
fixing redirection
SimonBourdages 134168b
change
SimonBourdages 2430953
trying to fix redirection
SimonBourdages 4a4f666
redirection change
SimonBourdages bf8e559
fixu
SimonBourdages 60678b1
fixing url
SimonBourdages a43d064
trying to fix redirection
SimonBourdages f51e568
trying to fix redirection
SimonBourdages 07b9aca
still fixing redirection
SimonBourdages d66cecf
canceling the deletes
SimonBourdages 4121a28
trying to revert it all
SimonBourdages 843271e
adding a note
SimonBourdages 37af70f
Merge branch 'main' into main
SimonBourdages 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 | ||
|
SimonBourdages marked this conversation as resolved.
Outdated
|
||
| ``` | ||
| 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). | ||
|
SimonBourdages marked this conversation as resolved.
Outdated
|
||
|
|
||
| ## 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. | ||
|
|
||
|
SimonBourdages marked this conversation as resolved.
Outdated
|
||
| ### 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) | ||
|
|
||
|
|
||
|
SimonBourdages marked this conversation as resolved.
Outdated
|
||
| [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.