-
Notifications
You must be signed in to change notification settings - Fork 187
Update New-SPOContainerType.md #1075
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
edd321b
544e945
c372ff3
3fb1485
1508c6c
eb8ad5f
37d1e65
b67e757
b032198
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,7 +21,7 @@ This cmdlet creates a new container type of standard or trial status. The standa | |
| ``` | ||
| New-SPOContainerType [-ContainerTypeName] <String> -OwningApplicationId <Guid> | ||
| [-ApplicationRedirectUrl <String>] [-TrialContainerType] [-IsPassThroughBilling] | ||
| [-IsGovernableByAdmin <Boolean>] [-WhatIf] [-Confirm] [<CommonParameters>] | ||
| [-IsGovernableByAdmin <Boolean>] [-IsArchiveEnabled <Boolean>] [-WhatIf] [-Confirm] [<CommonParameters>] | ||
| ``` | ||
|
|
||
| ## DESCRIPTION | ||
|
|
@@ -64,6 +64,15 @@ New-SPOContainerType -ContainerTypeName ContosoLegal -OwningApplicationId 2ce032 | |
|
|
||
| In Example 4, the cmdlet creates a standard container type, ContosoLegal that has opted out of management through Microsoft-enabled administrator platforms. | ||
|
|
||
| ### Example 5 | ||
|
|
||
|
|
||
| ```powershell | ||
| New-SPOContainerType -ContainerTypeName ContosoLegal -OwningApplicationId 2ce03211-353e-45d7-b487-8ac6981332cf -IsArchiveEnabled $true | ||
| ``` | ||
|
|
||
| In Example 5, the cmdlet creates a standard container type, ContosoLegal that support archive and reactivate actions on its containers. | ||
|
||
|
|
||
| ## PARAMETERS | ||
|
|
||
| ### -ApplicationRedirectUrl | ||
|
|
@@ -102,6 +111,25 @@ Accept pipeline input: False | |
| Accept wildcard characters: False | ||
| ``` | ||
|
|
||
| ### -IsArchiveEnabled | ||
|
|
||
| > Applicable: SharePoint Online | ||
|
|
||
| Using -IsArchiveEnabled flag, you can start supporting archival and reactivation actions on containers. Archival moves the data in cold tier and offers cost saving benefit. While archived, the content becomes inaccessible and needs to be reactivated first. Reactivation is instantaneous within first 7 days of archival and may take up to 24 hours after that. When not passed, the value of this parameter is set to False and all the calls to archive and unarchive API will fail. | ||
|
|
||
|
||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. extra blank line #Closed |
||
| ```yaml | ||
| Type: System.Boolean | ||
| Parameter Sets: (All) | ||
| Aliases: | ||
|
|
||
| Required: False | ||
| Position: Named | ||
| Default value: False | ||
| Accept pipeline input: False | ||
| Accept wildcard characters: False | ||
| ``` | ||
|
|
||
| ### -IsGovernableByAdmin | ||
|
|
||
| > Applicable: SharePoint Online | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
extra blank line #Closed