Skip to content

Commit 3e79fbb

Browse files
committed
Merge remote-tracking branch 'upstream/main' into pvrk-sharepointps-oct
2 parents e04ec35 + bdf292f commit 3e79fbb

20 files changed

+1502
-427
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Anyone who is interested can contribute to the topics. When you contribute, your
66

77
### Quickly update an article using GitHub.com
88

9-
Contributors who only make infrequent or small updates can edit the file directly on GitHub.com without having to install any additional software. This article shows you how. [This two-minute video](https://www.microsoft.com/videoplayer/embed/RE1XQTG) also covers how to contribute.
9+
Contributors who only make infrequent or small updates can edit the file directly on GitHub.com without having to install any additional software. This article shows you how. [This two-minute video](https://learn-video.azurefd.net/vod/player?id=b5167c5a-9c69-499b-99ac-e5467882bc92) also covers how to contribute.
1010

1111
1. Make sure you're signed in to GitHub.com with your GitHub account.
1212
2. Browse to the page you want to edit on Microsoft Learn.

sharepoint/docfx.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@
5555
"garycentric",
5656
"v-stchambers",
5757
"v-stsavell",
58-
"American-Dipper"
58+
"American-Dipper",
59+
"padmagit77",
60+
"aditisrivastava07",
61+
"Ruchika-mittal01"
5962
]
6063
},
6164
"fileMetadata": {

sharepoint/docs-conceptual/index.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ metadata:
77
title: SharePoint PowerShell # Required; page title displayed in search results. Include the brand. < 60 chars.
88
description: Use PowerShell cmdlets for SharePoint in Microsoft 365 and SharePoint Server # Required; article description that is displayed in search results. < 160 chars.
99
ms.service: sharepoint-online #Required; service per approved list. service slug assigned to your service by ACOM.
10-
ms.subservice: subservice
1110
ms.topic: landing-page # Required
1211
ms.collection: M365-collaboration
1312
author: kaarins #Required; your GitHub user alias, with correct capitalization.

sharepoint/docs-conceptual/sharepoint-online/index.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ metadata:
77
title: SharePoint PowerShell # Required; page title displayed in search results. Include the brand. < 60 chars.
88
description: Use PowerShell cmdlets for SharePoint in Microsoft 365 and SharePoint Server # Required; article description that is displayed in search results. < 160 chars.
99
ms.service: sharepoint-online #Required; service per approved list. service slug assigned to your service by ACOM.
10-
ms.subservice: subservice
1110
ms.topic: landing-page # Required
1211
ms.collection: M365-collaboration
1312
author: kaarins #Required; your GitHub user alias, with correct capitalization.
@@ -78,4 +77,4 @@ landingContent:
7877
url: /powershell/scripting/learn/more-powershell-learning
7978

8079

81-
80+

sharepoint/docs-conceptual/sharepoint-pnp/index.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ metadata:
77
title: SharePoint PowerShell # Required; page title displayed in search results. Include the brand. < 60 chars.
88
description: Use PowerShell cmdlets for SharePoint in Microsoft 365 and SharePoint Server # Required; article description that is displayed in search results. < 160 chars.
99
ms.service: sharepoint-online #Required; service per approved list. service slug assigned to your service by ACOM.
10-
ms.subservice: subservice
1110
ms.topic: landing-page # Required
1211
ms.collection: M365-collaboration
1312
author: kaarins #Required; your GitHub user alias, with correct capitalization.
@@ -78,4 +77,4 @@ landingContent:
7877
url: /powershell/scripting/learn/more-powershell-learning
7978

8079

81-
80+

sharepoint/docs-conceptual/sharepoint-server/index.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ metadata:
77
title: SharePoint PowerShell # Required; page title displayed in search results. Include the brand. < 60 chars.
88
description: Use PowerShell cmdlets for SharePoint in Microsoft 365 and SharePoint Server # Required; article description that is displayed in search results. < 160 chars.
99
ms.service: sharepoint-online #Required; service per approved list. service slug assigned to your service by ACOM.
10-
ms.subservice: subservice
1110
ms.topic: landing-page # Required
1211
ms.collection: M365-collaboration
1312
author: kaarins #Required; your GitHub user alias, with correct capitalization.
@@ -78,4 +77,4 @@ landingContent:
7877
url: /powershell/scripting/learn/more-powershell-learning
7978

8079

81-
80+
Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
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-spocontainertypebilling
5+
applicable: SharePoint Online
6+
title: Add-SPOContainerTypeBilling
7+
schema: 2.0.0
8+
author: ShreyasSar26
9+
ms.author: shsaravanan
10+
ms.reviewer:
11+
---
12+
13+
# Add-SPOContainerTypeBilling
14+
15+
## SYNOPSIS
16+
17+
Adds the mentioned billing profile details to a standard container type.
18+
19+
## SYNTAX
20+
21+
### ParamSet1
22+
23+
```powershell
24+
Add-SPOContainerTypeBilling –ContainerTypeId <ContainerTypeId> -AzureSubscriptionId <AzureSubscriptionId> -ResourceGroup <ResourceGroup> -Region <Region>
25+
```
26+
27+
28+
## DESCRIPTION
29+
30+
This cmdlet attaches the Azure subscription ID, resource group and region with the container type ID provided.
31+
32+
You must be a SharePoint Embedded Administrator to run this cmdlet. You also need to have owner or contributor permissions on an Azure subscription, with active time bound permission on billing, and on the Resource group.
33+
34+
If you don't have an Azure subscription, follow steps here to [create a subscription](/azure/cloud-adoption-framework/ready/azure-best-practices/initial-subscriptions).
35+
36+
For permissions and the most current information about Windows PowerShell for SharePoint Embedded Containers, see the documentation at [Intro to SharePoint Embedded Containers Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell).
37+
38+
## EXAMPLES
39+
40+
### Example 1
41+
42+
```powershell
43+
Add-SPOContainerTypeBilling - ContainerTypeId aa1d89b3 -AzureSubscriptionId 5a8a4d9f -ResourceGroup "RG100" -Region "(US) East US"
44+
```
45+
46+
Example 1 attaches the billing profile of Azure subscription ID "5a8a4d9f", resource group "RG100" and region "(US) East US" to the container type ID "aa1d89b3".
47+
48+
49+
## PARAMETERS
50+
51+
### -ContainerTypeId
52+
53+
This parameter specifies the ID of the container type corresponding to the SharePoint Embedded application.
54+
```yaml
55+
Type: String
56+
Parameter Sets: (All)
57+
Aliases:
58+
Applicable: SharePoint Online
59+
60+
Required: True
61+
Position: Named
62+
Default value: None
63+
Accept pipeline input: False
64+
Accept wildcard characters: False
65+
```
66+
67+
### -AzureSubscriptionId
68+
69+
This parameter describes the Azure subscription ID to which the container type needs to be associated.
70+
71+
```yaml
72+
Type: String
73+
Parameter Sets:
74+
Aliases:
75+
Applicable: SharePoint Online
76+
77+
Required: False
78+
Position: Named
79+
Default value: None
80+
Accept pipeline input: False
81+
Accept wildcard characters: False
82+
```
83+
84+
85+
### -ResourceGroup
86+
87+
This parameter describes the resource group to be used for the associated container type.
88+
89+
```yaml
90+
Type: String
91+
Parameter Sets:
92+
Aliases:
93+
Applicable: SharePoint Online
94+
95+
Required: False
96+
Position: Named
97+
Default value: None
98+
Accept pipeline input: False
99+
Accept wildcard characters: False
100+
```
101+
102+
### -Region
103+
104+
This parameter describes the region to which the billing profile of the container type is associated with.
105+
106+
```yaml
107+
Type: String
108+
Parameter Sets: ParamSet2, ParamSet3
109+
Aliases:
110+
Applicable: SharePoint Online
111+
112+
Required: False
113+
Position: Named
114+
Default value: None
115+
Accept pipeline input: False
116+
Accept wildcard characters: False
117+
```
118+
119+
## RELATED LINKS
120+
121+
[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online)
122+
123+
[New-SPOContainerType](./New-SPOContainerType.md)
124+
125+
[Get-SPOContainerType](./Get-SPOContainerType.md)
126+
127+
[Set-SPOContainerType](./Set-SPOContainerType.md)
128+
129+
[Remove-SPOContainerType](./Remove-SPOContainerType.md)

0 commit comments

Comments
 (0)