Skip to content

Commit 758938a

Browse files
authored
Merge branch 'main' into patch-1
2 parents f087b84 + 74c3e91 commit 758938a

22 files changed

+975
-561
lines changed

.github/workflows/AutoPublish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,23 @@ name: (Scheduled) Publish to live
33
permissions:
44
contents: write
55
pull-requests: write
6+
checks: read
67

78
on:
89
schedule:
9-
- cron: "25 5,11,17,22 * * *" # Times are UTC based on Daylight Saving Time. Need to be adjusted for Standard Time. Scheduling at :25 to account for queuing lag.
10+
- cron: "25 2,5,8,11,14,17,20,22 * * *" # Times are UTC based on Daylight Saving Time. Need to be adjusted for Standard Time. Scheduling at :25 to account for queuing lag.
1011

1112
workflow_dispatch:
1213

1314
jobs:
1415

1516
auto-publish:
1617
if: github.repository_owner == 'MicrosoftDocs' && contains(github.event.repository.topics, 'build')
17-
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoPublish.yml@workflows-prod
18+
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoPublishV2.yml@workflows-prod
1819
with:
1920
PayloadJson: ${{ toJSON(github) }}
2021
EnableAutoPublish: true
22+
EnableAutoMerge: true
2123

2224
secrets:
2325
AccessToken: ${{ secrets.GITHUB_TOKEN }}

.openpublishing.publish.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
]
2525
},
2626
"monikerPath": [
27-
"mapping/monikerMapping.json"
27+
"mapping/MAML2Yaml/monikerMapping.json"
2828
]
2929
}
3030
],

.openpublishing.redirection.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,26 @@
2424
"source_path": "sharepoint/virtual-folder/sharepoint-online/Set-SPOTenantRestrictedSearchMode.md",
2525
"redirect_url": "/powershell/module/sharepoint-online",
2626
"redirect_document_id": false
27-
}
27+
},
28+
{
29+
"source_path": "sharepoint/virtual-folder/sharepoint-online/Add-SPOAppPrioritizationPolicy.md",
30+
"redirect_url": "/powershell/module/sharepoint-online/Add-SPOServicePrioritizationAppRegistration",
31+
"redirect_document_id": false
32+
},
33+
{
34+
"source_path": "sharepoint/virtual-folder/sharepoint-online/Get-SPOAppPrioritizationPolicies.md",
35+
"redirect_url": "/powershell/module/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations",
36+
"redirect_document_id": false
37+
},
38+
{
39+
"source_path": "sharepoint/virtual-folder/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md",
40+
"redirect_url": "/powershell/module/sharepoint-online/Remove-SPOServicePrioritizationAppRegistration",
41+
"redirect_document_id": false
42+
},
43+
{
44+
"source_path": "sharepoint/virtual-folder/sharepoint-online/Set-SPOAppPrioritizationPolicy.md",
45+
"redirect_url": "/powershell/module/sharepoint-online/Set-SPOServicePrioritizationAppRegistration",
46+
"redirect_document_id": false
47+
}
2848
]
2949
}

sharepoint/docs-conceptual/sharepoint-online/connect-sharepoint-online.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ To open the SharePoint Online Management Shell command prompt, from the **Start*
3939

4040
> [!VIDEO https://www.youtube.com/embed/TMzHAWEQjlk]
4141
42+
> [!NOTE]
43+
> In order to run SharePoint Online PowerShell commands in a Windows PowerShell 7 console, you must import the SharePoint module using the -UseWindowsPowerShell parameter.
44+
```powershell
45+
Import-Module Microsoft.Online.SharePoint.PowerShell -UseWindowsPowerShell
46+
```
47+
4248
## To connect with a user name and password
4349

4450
1. Run the following command at the SharePoint Online Management Shell command prompt:
File renamed without changes.

sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md

Lines changed: 0 additions & 140 deletions
This file was deleted.
Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
---
2+
external help file: sharepointonline.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOServicePrioritizationAppRegistration
5+
applicable: SharePoint Online
6+
title: Add-SPOServicePrioritizationAppRegistration
7+
schema: 2.0.0
8+
author: killerewok2000
9+
ms.author: Sibourda
10+
ms.reviewer:
11+
---
12+
13+
# Add-SPOServicePrioritizationAppRegistration
14+
15+
## SYNOPSIS
16+
Adds a new app registration for service prioritization in SharePoint Online.
17+
> [!NOTE]
18+
> This functionality is rolling out and might not be fully enabled in your environment yet.
19+
20+
## SYNTAX
21+
22+
```
23+
Add-SPOServicePrioritizationAppRegistration -AppId <Guid> -PolicyId <Guid> -QuotaMultiplier <Int32>
24+
[<CommonParameters>]
25+
```
26+
27+
## DESCRIPTION
28+
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.
29+
30+
## EXAMPLES
31+
32+
### Example 1
33+
```powershell
34+
Add-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" -PolicyId "87654321-4321-4321-4321-0987654321ba" -QuotaMultiplier 2
35+
```
36+
This example adds a new app registration with the specified AppId and PolicyId, and sets the quota multiplier to 2.
37+
38+
## PARAMETERS
39+
40+
### -AppId
41+
Specifies the unique identifier (GUID) of the app registration to be added.
42+
43+
```yaml
44+
Type: Guid
45+
Parameter Sets: (All)
46+
Aliases:
47+
48+
Required: True
49+
Position: Named
50+
Default value: None
51+
Accept pipeline input: False
52+
Accept wildcard characters: False
53+
```
54+
55+
### -PolicyId
56+
Specifies the unique identifier (GUID) of the policy to associate with the app registration.
57+
58+
```yaml
59+
Type: Guid
60+
Parameter Sets: (All)
61+
Aliases:
62+
63+
Required: True
64+
Position: Named
65+
Default value: None
66+
Accept pipeline input: False
67+
Accept wildcard characters: False
68+
```
69+
70+
### -QuotaMultiplier
71+
This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 2 and 10.
72+
73+
```yaml
74+
Type: Int32
75+
Parameter Sets: (All)
76+
Aliases:
77+
78+
Required: True
79+
Position: Named
80+
Default value: None
81+
Accept pipeline input: False
82+
Accept wildcard characters: False
83+
```
84+
85+
### CommonParameters
86+
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).
87+
88+
## INPUTS
89+
90+
### None
91+
92+
## OUTPUTS
93+
94+
### System.Object
95+
## NOTES
96+
97+
## RELATED LINKS
98+
99+
[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online)
100+
101+
[Get-SPOServicePrioritizationAppRegistrations](./Get-SPOServicePrioritizationAppRegistrations.md)
102+
103+
[Remove-SPOServicePrioritizationAppRegistration](./Remove-SPOServicePrioritizationAppRegistration.md)
104+
105+
[New-SPOServicePrioritizationBillingPolicy](./New-SPOServicePrioritizationBillingPolicy.md)
106+
107+
[Get-SPOServicePrioritizationBillingPolicies](./Get-SPOServicePrioritizationBillingPolicies.md)
108+
109+
[Set-SPOServicePrioritizationAppRegistration](./Set-SPOServicePrioritizationAppRegistration.md)

sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)