Skip to content

Commit d66cecf

Browse files
canceling the deletes
1 parent 07b9aca commit d66cecf

File tree

5 files changed

+328
-32
lines changed

5 files changed

+328
-32
lines changed

.openpublishing.redirection.json

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,6 @@
2424
"source_path": "sharepoint/virtual-folder/sharepoint-online/Set-SPOTenantRestrictedSearchMode.md",
2525
"redirect_url": "/powershell/module/sharepoint-online",
2626
"redirect_document_id": false
27-
},
28-
{
29-
"source_path": "sharepoint/sharepoint-ps/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/sharepoint-ps/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/sharepoint-ps/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/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md",
45-
"redirect_url": "/powershell/module/sharepoint-online/set-sposerviceprioritizationappregistration",
46-
"redirect_document_id": false
4727
}
4828
]
4929
}

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

Lines changed: 117 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,120 @@ schema: 2.0.0
99
author: killerewok2000
1010
ms.author: Sibourda
1111
ms.reviewer:
12-
---
12+
---
13+
14+
# Add-SPOAppPrioritizationPolicy
15+
16+
## SYNOPSIS
17+
18+
Adds a new SPO app prioritization Policy to your tenancy.
19+
> [!NOTE]
20+
> This functionality is rolling out and might not be fully enabled in your environment yet.
21+
## SYNTAX
22+
23+
```
24+
Add-SPOAppPrioritizationPolicy -AppId <Guid> -AzureSubscriptionId <Guid> -ResourceGroup <String> -Account <String> -QuotaMultiplier <Int32> [<CommonParameters>]
25+
```
26+
27+
## DESCRIPTION
28+
29+
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.
30+
31+
## EXAMPLES
32+
33+
### Example 1
34+
35+
```powershell
36+
Add-SPOAppPrioritizationPolicies -AppId 48ab2ba9-5713-47d6-88a1-f6e3a0730833 -AzureSubscriptionId 48ab1ba4-9813-47d6-88a1-f6e3a0730822 -ResourceGroup newResourceGroup -Account newAccountName -QuotaMultiplier 5
37+
```
38+
39+
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.
40+
41+
42+
## PARAMETERS
43+
44+
### -AppId
45+
46+
This parameter specifies the app ID of the application to onboard.
47+
```yaml
48+
Type: Guid
49+
Parameter Sets: (All)
50+
Aliases:
51+
Applicable: SharePoint Online
52+
53+
Required: True
54+
Position: Named
55+
Default value: None
56+
Accept pipeline input: False
57+
Accept wildcard characters: False
58+
```
59+
### -AzureSubscriptionId
60+
This parameter describes the Azure subscription ID to which the container type needs to be associated.
61+
```yaml
62+
Type: Guid
63+
Parameter Sets: (All)
64+
Aliases:
65+
Applicable: SharePoint Online
66+
67+
Required: True
68+
Position: Named
69+
Default value: None
70+
Accept pipeline input: False
71+
Accept wildcard characters: False
72+
```
73+
### -ResourceGroup
74+
This parameter describes the resource group to be used for the associated container type.
75+
```yaml
76+
Type: String
77+
Parameter Sets: (All)
78+
Aliases:
79+
Applicable: SharePoint Online
80+
81+
Required: True
82+
Position: Named
83+
Default value: None
84+
Accept pipeline input: False
85+
Accept wildcard characters: False
86+
```
87+
### -Account
88+
This parameter describes the account to which the billing profile of the container type is associated with.
89+
```yaml
90+
Type: String
91+
Parameter Sets: (All)
92+
Aliases:
93+
Applicable: SharePoint Online
94+
95+
Required: True
96+
Position: Named
97+
Default value: None
98+
Accept pipeline input: False
99+
Accept wildcard characters: False
100+
```
101+
### -QuotaMultiplier
102+
103+
This parameter specifies the multiplier for the scaling feature. Value must be between 2 and 10.
104+
```yaml
105+
Type: int
106+
Parameter Sets: (All)
107+
Aliases:
108+
Applicable: SharePoint Online
109+
110+
Required: True
111+
Position: Named
112+
Default value: None
113+
Accept pipeline input: False
114+
Accept wildcard characters: False
115+
```
116+
### CommonParameters
117+
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).
118+
119+
120+
## RELATED LINKS
121+
122+
[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online)
123+
124+
[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md)
125+
126+
[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md)
127+
128+
[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md)
Lines changed: 48 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,55 @@
1-
---
2-
redirect_url: ../Get-SPOServicePrioritizationAppRegistrations.md
31
external help file: sharepointonline.xml
42
Module Name: Microsoft.Online.SharePoint.PowerShell
5-
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicy
3+
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies
64
applicable: SharePoint Online
7-
title: Add-SPOAppPrioritizationPolicy
5+
title: Get-SPOAppPrioritizationPolicies
86
schema: 2.0.0
97
author: killerewok2000
108
ms.author: Sibourda
119
ms.reviewer:
12-
---
10+
---
11+
12+
# Get-SPOAppPrioritizationPolicies
13+
14+
## SYNOPSIS
15+
16+
Gets all existing SPO app prioritization policies of your tenancy.
17+
> [!NOTE]
18+
> This functionality is rolling out and might not be fully enabled in your environment yet.
19+
## SYNTAX
20+
21+
```
22+
Get-SPOAppPrioritizationPolicies [<CommonParameters>]
23+
```
24+
25+
26+
## DESCRIPTION
27+
28+
This cmdlet gets all existing SPO App prioritization billing policies for your tenancy.
29+
30+
## EXAMPLES
31+
32+
### Example 1
33+
34+
```powershell
35+
Get- SPOAppPrioritizationPolicies
36+
```
37+
38+
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
39+
40+
41+
## PARAMETERS
42+
43+
### CommonParameters
44+
45+
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).
46+
47+
## RELATED LINKS
48+
49+
[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online)
50+
51+
[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md)
52+
53+
[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md)
54+
55+
[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md)
Lines changed: 59 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,68 @@
11
---
2-
redirect_url: ../Remove-SPOServicePrioritizationAppRegistration.md
32
external help file: sharepointonline.xml
43
Module Name: Microsoft.Online.SharePoint.PowerShell
54
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Remove-SPOAppPrioritizationPolicy
65
applicable: SharePoint Online
7-
title: Add-SPOAppPrioritizationPolicy
6+
title: Remove-SPOAppPrioritizationPolicy
87
schema: 2.0.0
98
author: killerewok2000
109
ms.author: Sibourda
1110
ms.reviewer:
12-
---
11+
---
12+
13+
# Remove-SPOAppPrioritizationPolicy
14+
15+
## SYNOPSIS
16+
17+
Deletes an existing SPO app prioritization policy in your tenancy.
18+
> [!NOTE]
19+
> This functionality is rolling out and might not be fully enabled in your environment yet.
20+
## SYNTAX
21+
22+
```
23+
Remove-SPOAppPrioritizationPolicy -PolicyId <String> [<CommonParameters>]
24+
```
25+
26+
## DESCRIPTION
27+
28+
This cmdlet lets you delete an existing SPO app prioritization policy.
29+
30+
## EXAMPLES
31+
32+
### Example 1
33+
34+
```powershell
35+
Remove-SPOAppPrioritizationPolicy -PolicyId 48abxxa9
36+
```
37+
38+
Example 1 deletes the policy bearing the policyId 48abxxa9. Running the `Get-SPOAppPrioritizationPolicies` command will no longer show the policy in the result.
39+
40+
## PARAMETERS
41+
42+
### -PolicyId
43+
44+
This parameter specifies the ID of policy.
45+
```yaml
46+
Type: String
47+
Parameter Sets: (All)
48+
Aliases:
49+
Applicable: SharePoint Online
50+
51+
Required: True
52+
Position: Named
53+
Default value: None
54+
Accept pipeline input: False
55+
Accept wildcard characters: False
56+
```
57+
### CommonParameters
58+
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).
59+
60+
## RELATED LINKS
61+
62+
[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online)
63+
64+
[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md)
65+
66+
[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md)
67+
68+
[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md)

0 commit comments

Comments
 (0)