Skip to main content

spe containertype get

Get a specific Container Type

Usage

m365 containertype get [options]

Options

-i, --id [id]

The Id of the Container Type. Specify either id or name but not both.

-n, --name [name]

The Container Type name. Specify either id or name but not both.

-h, --help [help]

Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are options, examples, remarks, response, full. Default is options.

--query [query]

JMESPath query string. See http://jmespath.org/ for more information and examples.

-o, --output [output]

Output type. json, text, csv, md, none. Default json.

--verbose

Runs command with verbose logging.

--debug

Runs command with debug logging.

Examples

Gets Container Type by id

m365 spe containertype get --id '4ec4aefd-4fa3-0e4a-20c3-6e68389e7138'

Gets Container Type by name

m365 spe containertype get --name 'test container'

Response

{
"_ObjectType_": "Microsoft.Online.SharePoint.TenantAdministration.SPContainerTypeProperties",
"ApplicationRedirectUrl": null,
"AzureSubscriptionId": "/Guid(00000000-0000-0000-0000-000000000000)/",
"ContainerTypeId": "/Guid(073269af-f1d2-042d-2ef5-5bdd6ac83115)/",
"CreationDate": null,
"DisplayName": "test1",
"ExpiryDate": null,
"IsBillingProfileRequired": true,
"OwningAppId": "/Guid(df4085cc-9a38-4255-badc-5c5225610475)/",
"OwningTenantId": "/Guid(00000000-0000-0000-0000-000000000000)/",
"Region": null,
"ResourceGroup": null,
"SPContainerTypeBillingClassification": 0
}

More information

In SharePoint Embedded, all files and documents are stored in Containers, and each Container is identified by a Container Type.

Container Type is a property stamped on every Container instance. Each Container Type is owned by one Application, and each Application can own only one Container Type.

The primary function of a Container Type is to manage the application workload that can access the Containers. Container Type defines the access permissions an Application has towards all Containers of that type, including create, read, write, delete containers; manage container permissions, etc.

More information about SharePoint Embedded and the limits can be found at the following location: SharePoint Embedded

CTRL + M