Skip to content

Commit ada4574

Browse files
committed
Fix billing images and formatting cleanup
1 parent d3f647f commit ada4574

File tree

3 files changed

+27
-15
lines changed

3 files changed

+27
-15
lines changed

docs/embedded/concepts/admin-exp/billing/billing.md

Lines changed: 27 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,44 +7,54 @@ ms.localizationpriority: high
77

88
# SharePoint Embedded billing
99

10-
SharePoint Embedded is a consumption-based Pay-as-you-go (PAYG) offering meaning you pay only for what you use. SharePoint Embedded provides two billing models which the tenant developing the SharePoint Embedded application can select for each specific container types, tailoring it to their unique business requirements. The two billing models are
10+
SharePoint Embedded is a consumption-based Pay-as-you-go (PAYG) offering meaning you pay only for what you use. SharePoint Embedded provides two billing models which the tenant developing the SharePoint Embedded application can select for respective container types, tailoring it to their unique business requirements. The two billing models are
1111

12-
1) **Standard:** With this model, all consumption-based charges are directly billed to the tenant that owns/develops the application. Admin in the developer tenant must establish a valid billing profile when creating a standard container type.
12+
### Standard
1313

14-
<img width="800" alt="image" src="https://github.com/cindylay/sp-dev-docs/assets/132292644/53212756-569e-402c-8045-cb4d3bff4d50">
14+
With the standard billing model, all consumption-based charges are directly billed to the tenant that owns/develops the application. The admin in the developer tenant must establish a valid billing profile when creating a standard container type.
15+
16+
17+
![Standard](../../../images/1bill521.png)
1518

1619

17-
**Pass-through (Coming Soon):** With this model, consumption-based charges are billed directly to the tenant registered to use the SharePoint Embedded application. Admin in the developer tenant don't need to set up a billing profile when creating a pass-through SharePoint Embedded container type. Once the container type is registered in the consuming tenant, the consuming tenant admin (SharePoint Admin or Global Admin) needs to set up the billing profile in the consuming tenant to use the SharePoint Embedded application.
20+
### Pass-through (Coming Soon)
21+
22+
With pass-through billing, consumption-based charges are billed directly to the tenant registered to use the SharePoint Embedded application. Admins in the developer tenant don't need to set up a billing profile when creating a pass-through SharePoint Embedded container type. Once the container type is registered in the consuming tenant, the consuming tenant admin (SharePoint Admin or Global Admin) needs to set up the billing profile in the consuming tenant to use the SharePoint Embedded application.
1823

19-
<img width="800" alt="image" src="https://github.com/cindylay/sp-dev-docs/assets/132292644/c365892d-077c-4c71-9d94-1bfdccf26734">
24+
25+
![Pass Through](../../../images/2bill521.png)
2026

2127

2228
## Prerequisites to set up Pay-as-you-go for SharePoint Embedded
2329

2430
To enable PAYG on SharePoint Embedded, you need:
2531

2632
1. Existing SharePoint tenancy
27-
2. An Azure subscription in the tenancy
28-
3. A resource group attached to the Azure subscription
33+
1. An Azure subscription in the tenancy
34+
1. A resource group attached to the Azure subscription
35+
2936

3037
### Roles and Permissions
3138

3239
- Admin who sets up billing relationship for SharePoint Embedded needs to have owner or contributor permissions on Azure subscription.
3340
- Admin needs to have a SharePoint Embedded Administrator or Global Admin role to operate billing cmdlets.
3441

42+
3543
## Set up a Standard Billing container type:
3644

3745
For standard billed container types, developer admin should set up billing in their tenant. Microsoft 365 SharePoint Embedded Administrator serves as the developer admin. Global Administrators in Microsoft 365 can assign users the SharePoint Embedded Administrator. The Global Administrator role already has all the permissions of the SharePoint Embedded Administrator role. A SharePoint Administrator can assign themselves the SharePoint Embedded Administrator role to act as a Developer Admin for SharePoint Embedded. The SharePoint Embedded Admin role is available in Microsoft Entra and Microsoft 365 Admin Center.
3846

47+
3948
Here are the step-by-step instructions on how to create a standard billing container:
4049

4150
1. Download and install the [latest version of SharePoint Online Management Shell](https://www.microsoft.com/download/details.aspx?id=35588)
42-
2. Open SharePoint Online Management Shell from **Start** screen, type **sharepoint**, and then select **SharePoint Online Management Shell**.
43-
3. Connect to SPO service using `Connect-SPOService` cmdlet by providing admin credentials associated with tenancy. For information on [how to use Connect-SPOService](/powershell/module/sharepoint-online/connect-sposervice), refer the linked documentation.
44-
4. Create container type using `New-SPOContainerType` cmdlet by providing an **azure subscription**, **resource group** associated with the subscription and a **region**.
51+
1. Open SharePoint Online Management Shell from **Start** screen, type **sharepoint**, and then select **SharePoint Online Management Shell**.
52+
1. Connect to SPO service using `Connect-SPOService` cmdlet by providing admin credentials associated with tenancy. For information on [how to use Connect-SPOService](/powershell/module/sharepoint-online/connect-sposervice), refer the linked documentation.
53+
1. Create container type using `New-SPOContainerType` cmdlet by providing an **azure subscription**, **resource group** associated with the subscription and a **region**.
4554

4655
1. If you don't have an Azure subscription, you can create on by following steps here to [create an Azure subscription in your tenancy](/azure/cloud-adoption-framework/ready/azure-best-practices/initial-subscriptions)
47-
2. If you don't have a resource group, you can create on by following steps here to [create a resource group](/azure/azure-resource-manager/management/manage-resource-groups-portal)
56+
1. If you don't have a resource group, you can create on by following steps here to [create a resource group](/azure/azure-resource-manager/management/manage-resource-groups-portal)
57+
4858

4959
```powershell
5060
New-SPOContainerType -ContainerTypeName <ContainerTypeName>
@@ -53,6 +63,7 @@ New-SPOContainerType -ContainerTypeName <ContainerTypeName>
5363
-ResourceGroup <ResourceGroup>
5464
-Region <Region>
5565
```
66+
5667
> [!IMPORTANT]
5768
> Every container type must have an owning application.
5869
>
@@ -64,24 +75,25 @@ New-SPOContainerType -ContainerTypeName <ContainerTypeName>
6475

6576
You can view properties of a container type and associated billing properties by using one of the two PowerShell cmdlets:
6677

67-
1. To see all container types and billing properties except associated region:
78+
1. See all container types and billing properties except associated region:
6879

6980
```powershell
7081
Get-SPOContainerType
7182
```
7283
73-
1. To see billing properties associated with a container type including region:
84+
1. See billing properties associated with a container type including region:
7485
7586
```powershell
7687
Get-SPOContainerType -ContainerTypeId <ContainerTypeId>
7788
```
7889
79-
1. To update Azure subscription or resource group associated with a container type:
90+
1. Update Azure subscription or resource group associated with a container type:
8091
8192
```powershell
8293
Set-SPOContainerType -ContainerTypeId <ContainerTypeId> [-AzureSubscriptionId <AzureSubscriptionId>] [-ResourceGroup <ResourceGroup>]
8394
```
8495
85-
## SharePoint Embedded Meters
96+
## SharePoint Embedded meters
97+
8698
Refer to the [SharePoint Embedded meters](docs/embedded/concepts/admin-exp/meters.md) article to learn more about the pay-as-you-go meters supported.
8799

docs/embedded/images/1bill521.png

159 KB
Loading

docs/embedded/images/2bill521.png

149 KB
Loading

0 commit comments

Comments
 (0)