Skip to content

Commit 2089321

Browse files
authored
Update New-SPOContainerType.md
1 parent bdf292f commit 2089321

File tree

1 file changed

+29
-4
lines changed

1 file changed

+29
-4
lines changed

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

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ 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
3434
```powershell
35-
New-SPOContainerType [–TrialContainerType] [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [<CommonParameters>]
35+
New-SPOContainerType [–TrialContainerType] [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [-GovernableByAdmin] <Boolean> [<CommonParameters>]
3636
```
3737

3838
## DESCRIPTION
3939

40-
This cmdlet creates a new standard or trial container type. A standard container type, by definition, has a billing profile associated with it and can be either regular billed or direct to consumer billed. A trial container type does not have a billing profile. In case of regular billing, the next step after creation is the addition of a billing profile using the [Add-SPOContainerTypeBilling](./Add-SPOContainerTypeBilling.md) cmdlet. With the use of `-IsPassThroughBilling`, you can create a direct to customer billed container type. There is no need to attach a billing profile in case this case. `–TrialContainerType` when used creates a trial container type that has a validity of 30 days.
40+
This cmdlet creates a new standard or trial container type. A standard container type, by definition, has a billing profile associated with it and can be either regular billed or direct to consumer billed. A trial container type does not have a billing profile. In case of regular billing, the next step after creation is the addition of a billing profile using the [Add-SPOContainerTypeBilling](./Add-SPOContainerTypeBilling.md) cmdlet. With the use of `-IsPassThroughBilling`, you can create a direct to customer billed container type. There is no need to attach a billing profile in case this case. `–TrialContainerType` when used creates a trial container type that has a validity of 30 days. Using `-GovernableByAdmin`, you can decide whether consuming tenant administrators of the application should be provided management capabilities on Microsoft-enabled administrator support, through the SharePoint Administrator 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 the SharePoint Administrator Center and PowerShell.
4141

4242
You must be a SharePoint Embedded Administrator to run this cmdlet.
4343

@@ -68,6 +68,17 @@ New-SPOContainerType –TrialContainerType -ContainerTypeName ContosoLegal -Owni
6868

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

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

7384
### -ContainerTypeName
@@ -136,7 +147,21 @@ Default value: None
136147
Accept pipeline input: False
137148
Accept wildcard characters: False
138149
```
150+
### –GovernableByAdmin
151+
This parameter is used to opt in/out of management capabilities on Microsoft-enabled administrator platforms for the consuming tenant administrators of the container type.
152+
153+
```yaml
154+
Type: Boolean
155+
Parameter Sets:
156+
Aliases:
157+
Applicable: SharePoint Online
139158

159+
Required: False
160+
Position: Named
161+
Default value: True
162+
Accept pipeline input: False
163+
Accept wildcard characters: False
164+
```
140165
141166
## RELATED LINKS
142167

0 commit comments

Comments
 (0)