Skip to content

Commit d8ec55b

Browse files
authored
Merge pull request #813 from ShreyasSar26/patch-PS
Update New-SPOContainerType.md
2 parents 8a5eae8 + 1d98e56 commit d8ec55b

File tree

1 file changed

+33
-5
lines changed

1 file changed

+33
-5
lines changed

sharepoint/sharepoint-ps/sharepoint-online/New-SPOContainerType.md

Lines changed: 33 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,19 @@ This cmdlet creates a new container type of standard or trial status. The standa
2121
### ParamSet1
2222

2323
```powershell
24-
New-SPOContainerType [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [<CommonParameters>]
24+
New-SPOContainerType [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [-GovernableByAdmin] <Boolean> [<CommonParameters>]
2525
```
2626

2727
### ParamSet2
2828

2929
```powershell
30-
New-SPOContainerType [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [-IsPassThroughBilling] [<CommonParameters>]
30+
New-SPOContainerType [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [-IsPassThroughBilling] [-GovernableByAdmin] <Boolean> [<CommonParameters>]
3131
```
3232

3333
### ParamSet3
34+
3435
```powershell
35-
New-SPOContainerType [–TrialContainerType] [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [<CommonParameters>]
36+
New-SPOContainerType [–TrialContainerType] [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [-GovernableByAdmin] <Boolean> [<CommonParameters>]
3637
```
3738

3839
## DESCRIPTION
@@ -49,9 +50,11 @@ You must be a SharePoint Embedded Administrator to run this cmdlet.
4950
```powershell
5051
New-SPOContainerType -ContainerTypeName ContosoLegal -OwningApplicationId a735e4af
5152
```
53+
5254
In Example 1, the cmdlet creates a new regular billed container type ContosoLegal.
5355

5456
### Example 2
57+
5558
```powershell
5659
New-SPOContainerType –IsPassThroughBilling –ContainerTypeName ContosoLegal -OwningApplicationId a735e4af
5760
```
@@ -61,13 +64,20 @@ In Example 2, the cmdlet creates a direct to customer billed container type Cont
6164
### Example 3
6265

6366
```powershell
64-
6567
New-SPOContainerType –TrialContainerType -ContainerTypeName ContosoLegal -OwningApplicationId a735e4af
66-
6768
```
6869

6970
In Example 3, the cmdlet creates a trial container type, ContosoLegal, valid for 30 days.
7071

72+
### Example 4
73+
74+
```powershell
75+
New-SPOContainerType -ContainerTypeName ContosoLegal -OwningApplicationId a735e4af -GovernableByAdmin $false
76+
```
77+
78+
In Example 4, the cmdlet creates a standard container type, ContosoLegal that has opted out of management through Microsoft-enabled administrator platforms.
79+
80+
7181
## PARAMETERS
7282

7383
### -ContainerTypeName
@@ -106,6 +116,7 @@ Accept wildcard characters: False
106116
107117
108118
### –TrialContainerType
119+
109120
This parameter is used to specify that the cmdlet is used to create a trial container type and thereby the billing profile need not be provided.
110121
111122
```yaml
@@ -122,6 +133,7 @@ Accept wildcard characters: False
122133
```
123134
124135
### –IsPassThroughBilling
136+
125137
This parameter is used to create a direct to customer billed container type.
126138
127139
```yaml
@@ -137,6 +149,22 @@ Accept pipeline input: False
137149
Accept wildcard characters: False
138150
```
139151
152+
### –GovernableByAdmin
153+
154+
Using `-GovernableByAdmin`, you can decide whether consuming tenant administrators of the application should be provided management capabilities on Microsoft-enabled administrator support, through SharePoint admin center and PowerShell. By default, the value is set to True. When set to False, the consuming tenant administrator can perform only read-only actions on containers of the container type, in both SharePoint admin center and PowerShell.
155+
156+
```yaml
157+
Type: Boolean
158+
Parameter Sets:
159+
Aliases:
160+
Applicable: SharePoint Online
161+
162+
Required: False
163+
Position: Named
164+
Default value: True
165+
Accept pipeline input: False
166+
Accept wildcard characters: False
167+
```
140168

141169
## RELATED LINKS
142170

0 commit comments

Comments
 (0)