Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 11 additions & 22 deletions sharepoint/sharepoint-ps/sharepoint-online/New-SPOContainerType.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,9 @@ This cmdlet creates a new container type of standard or trial status. The standa
### ParamSet1
Comment thread
ShreyasSar26 marked this conversation as resolved.
Outdated

```powershell
New-SPOContainerType [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [-GovernableByAdmin] <Boolean> [<CommonParameters>]
New-SPOContainerType [-ContainerTypeName] <String> -OwningApplicationId <Guid> [-ApplicationRedirectUrl <String>] [-TrialContainerType] [-IsPassThroughBilling] [-IsGovernableByAdmin <Boolean>] [-WhatIf] [-Confirm] [<CommonParameters>]
```

### ParamSet2

```powershell
New-SPOContainerType [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [-IsPassThroughBilling] [-GovernableByAdmin] <Boolean> [<CommonParameters>]
```

### ParamSet3

```powershell
New-SPOContainerType [–TrialContainerType] [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [-GovernableByAdmin] <Boolean> [<CommonParameters>]
```

## DESCRIPTION

Expand Down Expand Up @@ -91,7 +80,7 @@ Aliases:
Applicable: SharePoint Online

Required: True
Position: Named
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Expand All @@ -102,8 +91,8 @@ Accept wildcard characters: False
This parameter specifies the ID of the SharePoint Embedded application.

```yaml
Type: String
Parameter Sets:
Type: Guid
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online

Expand All @@ -120,8 +109,8 @@ Accept wildcard characters: False
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.

```yaml
Type: String
Parameter Sets:
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online

Expand All @@ -137,8 +126,8 @@ Accept wildcard characters: False
This parameter is used to create a direct to customer billed container type.

```yaml
Type: String
Parameter Sets:
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online

Expand All @@ -151,17 +140,17 @@ Accept wildcard characters: False

### –GovernableByAdmin

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.
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. When not passed, the value is set to Ture. 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.

```yaml
Type: Boolean
Parameter Sets:
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online

Required: False
Position: Named
Default value: True
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
Expand Down