Skip to content

Commit 2c73017

Browse files
Improve readability score
- update doc timestamp from PR edit - address readability score with grammatical improvements
1 parent f326024 commit 2c73017

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/embedded/concepts/app-concepts/containertypes.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: SharePoint Embedded Container Types
33
description: This article explains how Container Types work.
4-
ms.date: 05/21/2024
4+
ms.date: 07/30/2024
55
ms.localizationpriority: high
66
---
77

@@ -13,15 +13,15 @@ Each container type is strongly coupled with one SharePoint Embedded application
1313

1414
Container type is represented on each container instance as an immutable property (ContainerTypeID) and is used across the entire SharePoint Embedded ecosystem, including:
1515

16-
- Access authorization. A SharePoint Embedded application must be associated to a container type to get access to container instances of that type. Once associated, the application has access to all container instances of that type. The actual access privilege is determined by the application-ContainerTypeID permission setting. The owning application by default has full access privilege to all container instances of the container type it's strongly coupled with. Learn more about [SharePoint Embedded Authorization](../app-concepts/auth.md).
16+
- Access authorization. A SharePoint Embedded application must be associated with a container type to get access to container instances of that type. Once associated, the application has access to all container instances of that type. The actual access privilege is determined by the application-ContainerTypeID permission setting. The owning application by default has full access privilege to all container instances of the container type it's strongly coupled with. Learn more about [SharePoint Embedded Authorization](../app-concepts/auth.md).
1717
- Easy exploration. Container type can be created for trial purposes, allowing developers to explore SharePoint Embedded application development and assess its features for free.
18-
- Billing. Container types for non-trial purposes are billable and must be created with an Azure Subscription. Usage of containers is metered and charged. Learn more about [metering](../admin-exp/billing/meters.md) and the [SharePoint Embedded billing experience](../admin-exp/billing/billing.md).
18+
- Billing. Container types for non-trial purposes are billable and must be created with an Azure Subscription. The usage of containers is metered and charged. Learn more about [metering](../admin-exp/billing/meters.md) and the [SharePoint Embedded billing experience](../admin-exp/billing/billing.md).
1919
- Configurable behaviors. Container type defines selected behaviors for all container instances of that type. Learn more about setting [Container type configuration](../app-concepts/containertypes.md#configuring-container-types).
2020

2121
> [!NOTE]
2222
>
23-
> 1. You must specify the purpose of the container type you are creating at creation time. Dependent on the purpose, you may or may not need to provide your Azure Subscription ID. A container type set for trial purpose cannot be converted for production; or vice versa.
24-
> 2. You must use the latest version of SharePoint Powershell for container type configurations.
23+
> 1. You must specify the purpose of the container type you are creating at creation time. Depending on the purpose, you may or may not need to provide your Azure Subscription ID. A container type set for trial purpose cannot be converted for production; or vice versa.
24+
> 1. You must use the latest version of SharePoint Powershell for container type configurations.
2525
2626
## Trial use
2727

@@ -42,7 +42,7 @@ The following restrictions are applied to container type in the trial status:
4242
- Up to five active containers of the container type can be created.
4343
- Each container has up to 1 GB of storage space.
4444
- The container type expires after 30 days and access to any existing containers of that container type will be removed.
45-
- Developer must permanently delete all containers of an existing container type in trial status to create a new container type for trial. This includes containers in the deleted container collection.
45+
- The developer must permanently delete all containers of an existing container type in trial status to create a new container type for trial. This includes containers in the deleted container collection.
4646
- The container type is restricted to work in the developer tenant. It can't be deployed in other consuming tenants.
4747

4848
## Standard/Non-trial use
@@ -63,13 +63,13 @@ New-SPOContainerType
6363
```
6464

6565
> [!NOTE]
66-
> The user or admin who will set up billing relationship for SharePoint Embedded will need to have owner or contributor permissions on the Azure subscription.
66+
> The user or admin who will set up a billing relationship for SharePoint Embedded will need to have owner or contributor permissions on the Azure subscription.
6767
6868
## Configuring Container Types
6969

7070
Developer Admin can set selected settings on the SharePoint Embedded container types created by using this PowerShell cmdlet.
7171

72-
This cmdlet allows admins to set [Microsoft 365 content discoverability](../content-experiences/user-experiences-overview.md) and [sharing](../app-concepts/sharing-and-perm.md) settings on container types. The setting is applicable to all container instances of the container type
72+
This cmdlet allows admins to set [Microsoft 365 content discoverability](../content-experiences/user-experiences-overview.md) and [sharing](../app-concepts/sharing-and-perm.md) settings on container types. The setting applies to all container instances of the container type
7373

7474
```powershell
7575
Set-SPOContainerTypeConfiguration -ContainerTypeId 4f0af585-8dcc-0000-223d-661eb2c604e4 -DiscoverabilityDisabled $False
@@ -97,7 +97,7 @@ Region : EastUS
9797

9898
## Registering Container Types
9999

100-
In order to create and interact with containers, you must [register](../app-concepts/register-api-documentation.md) the container type within the Consuming Tenant. The owning application defines the permissions for the container type by invoking the [registration API](../app-concepts/register-api-documentation.md).
100+
To create and interact with containers, you must [register](../app-concepts/register-api-documentation.md) the container type within the Consuming Tenant. The owning application defines the permissions for the container type by invoking the [registration API](../app-concepts/register-api-documentation.md).
101101

102102
## Deleting Container Types
103103

0 commit comments

Comments
 (0)