Skip to content

Commit 6a86ac6

Browse files
committed
freshness
1 parent a68997e commit 6a86ac6

File tree

5 files changed

+14
-16
lines changed

5 files changed

+14
-16
lines changed

powerbi-docs/developer/embedded/datasets-permissions.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags: ''
99
ms.service: powerbi
1010
ms.subservice: powerbi-developer
1111
ms.topic: reference
12-
ms.date: 11/09/2023
12+
ms.date: 11/09/2024
1313
---
1414

1515
# Semantic model REST API permissions
@@ -28,7 +28,7 @@ Power BI has two sets of permissions:
2828

2929
Workspace permissions, also known as folder permissions or [roles](../../collaborate-share/service-roles-new-workspaces.md), are the highest level of permissions in Power BI. These permissions override permissions that are given to a specific item in the workspace folder.
3030

31-
The table below lists the four types of folder roles. It shows each role's level, and the code string returned by the Power BI REST APIs. Admin is the highest workspace permission level, and viewer is the lowest. Every permission level includes the capabilities of the permissions below it. You can review the capabilities of each permission in [Workspace roles](../../collaborate-share/service-roles-new-workspaces.md#workspace-roles).
31+
The following table lists the four types of folder roles. It shows each role's level, and the code string returned by the Power BI REST APIs. Admin is the highest workspace permission level, and viewer is the lowest. Every permission level includes the capabilities of the permissions below it. You can review the capabilities of each permission in [Workspace roles](../../collaborate-share/service-roles-new-workspaces.md#workspace-roles).
3232

3333
|Folder Role |Level |Derived permissions for semantic models created in the workspace |
3434
|------------|------|--------------------------|
@@ -38,7 +38,7 @@ The table below lists the four types of folder roles. It shows each role's level
3838
|Viewer |1 |`Read` |
3939

4040
>[!NOTE]
41-
>The *write* permission is applied to Power BI semantic models created by *admin*, *member* and *contributor* users in a workspace they own. The write permission can be granted or deleted using workspace permissions only. It cannot directly be granted to, or deleted from, a Power BI item.
41+
>The *write* permission is applied to Power BI semantic models created by *admin*, *member*, and *contributor* users in a workspace they own. The write permission can be granted or deleted using workspace permissions only. It can't directly be granted to, or deleted from, a Power BI item.
4242
4343
#### Get and add workspace permissions with APIs
4444

@@ -56,14 +56,14 @@ Power BI items, such as reports, semantic models, and dashboards have their own
5656

5757
## Semantic model permissions and REST APIs
5858

59-
Semantic model permissions are part of the [item permissions](#item-permissions). The table below lists the Power BI semantic model permissions and their representation in the [Power BI REST APIs](/rest/api/power-bi/).
59+
Semantic model permissions are part of the [item permissions](#item-permissions). The following table lists the Power BI semantic model permissions and their representation in the [Power BI REST APIs](/rest/api/power-bi/).
6060

6161
>[!TIP]
6262
>Although the API permissions are identical to the Power BI service permissions, [`build`](#build-permissions-and-rest-apis) permissions are referred to as *explore* permissions in the APIs.
6363
6464
|Permission |Read |Explore |Reshare |
6565
|-----------------------|---------|---------|---------|
66-
|Description |Allows the user to read the content of the semantic model|Equivalent to [build permissions](#build-permissions-and-rest-apis) |Allows the user to share the content of the semantic model with other users who will get read, reshare, or explore permissions for it |
66+
|Description |Allows the user to read the content of the semantic model|Equivalent to [build permissions](#build-permissions-and-rest-apis) |Allows the user to share the content of the semantic model with other users who get read, reshare, or explore permissions for it |
6767
|**ReadReshareExplore** | :::image type="icon" source="../../includes/media/yes-icon.svg" border="false"::: |:::image type="icon" source="../../includes/media/yes-icon.svg" border="false"::: |:::image type="icon" source="../../includes/media/yes-icon.svg" border="false"::: |
6868
|**ReadReshare** |:::image type="icon" source="../../includes/media/yes-icon.svg" border="false"::: |:::image type="icon" source="../../includes/media/no-icon.svg" border="false"::: |:::image type="icon" source="../../includes/media/yes-icon.svg" border="false"::: |
6969
|**ReadExplore** |:::image type="icon" source="../../includes/media/yes-icon.svg" border="false"::: |:::image type="icon" source="../../includes/media/yes-icon.svg" border="false"::: |:::image type="icon" source="../../includes/media/no-icon.svg" border="false"::: |
@@ -74,7 +74,7 @@ Semantic model permissions are part of the [item permissions](#item-permissions)
7474
7575
### Build permissions and REST APIs
7676

77-
In the [Power BI REST APIs](/rest/api/power-bi/), the `build` permission is returned as *explore*. For example, a string with the *read*, *reshare* and *build* permissions, will look like this: `ReadReshareExplore`.
77+
In the [Power BI REST APIs](/rest/api/power-bi/), the `build` permission is returned as *explore*. For example, a string with the *read*, *reshare* and *build* permissions, looks like this: `ReadReshareExplore`.
7878

7979
When you give a user `build` permission, they can build new content on your semantic model. Examples of content they can build are reports, dashboards, pinned tiles from Q&A, paginated reports, and Insights Discovery.
8080

@@ -88,7 +88,7 @@ Users also need `build` permissions to work with data outside Power BI:
8888

8989
### Row-level security
9090

91-
For a semantic model that uses row-level security (RLS), any permissions *higher* than `build` will enable the user to view all the data in the semantic model. `Build`, and permissions lower than `build`, will only give the semantic model user access to the data they're allowed to see as configured in your RLS settings.
91+
For a semantic model that uses row-level security (RLS), any permissions *higher* than `build` enables the user to view all the data in the semantic model. `Build`, and permissions lower than `build`, only give the semantic model user access to the data they're allowed to see as configured in your RLS settings.
9292

9393
### Get and update semantic model permissions with APIs
9494

@@ -107,9 +107,7 @@ For a semantic model that uses row-level security (RLS), any permissions *higher
107107
* [Datasets - Get Dataset Users](/rest/api/power-bi/datasets/get-dataset-users)
108108
* [Datasets - Get Dataset Users In Group](/rest/api/power-bi/datasets/get-dataset-users-in-group)
109109

110-
## Considerations and limitations
111-
112-
Each of the above APIs comes with certain limitations regarding who can use them and how. To see the limitations of each API, select the link for that API.
110+
Each of these APIs comes with certain limitations regarding who can use them and how. To see the limitations of each API, select the link for that API.
113111

114112
## Related content
115113

powerbi-docs/developer/visuals/fetch-more-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ btn_click(){
178178
As a response to calling the `this.host.fetchMoreData` method, Power BI calls the `update` method of the visual with a new segment of data.
179179
180180
> [!NOTE]
181-
> Although the data in the different updates of the data views are mostly exclusive, there is some overlap between consecutive data views.
181+
> Although the data in the different updates of the data views are mostly exclusive, there's some overlap between consecutive data views.
182182
>
183183
> For table and categorical data mapping, the first `N` data view rows can be expected to contain data copied from the previous data view.
184184
>

powerbi-docs/developer/visuals/permissions-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.reviewer:
77
ms.service: powerbi
88
ms.subservice: powerbi-custom-visuals
99
ms.topic: reference
10-
ms.date: 06/28/2022
10+
ms.date: 06/28/2024
1111
---
1212

1313
# Check permissions API

powerbi-docs/developer/visuals/total-subtotal-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.reviewer: tebercov
77
ms.service: powerbi
88
ms.subservice: powerbi-custom-visuals
99
ms.topic: how-to
10-
ms.date: 11/22/2023
10+
ms.date: 11/22/2024
1111
#customer intent: As a Power BI visual developer, I want to learn how to use the Total and Subtotal API to request aggregated subtotal data from the Power BI host.
1212
---
1313

@@ -31,7 +31,7 @@ The API offers the following customization for each data-view type (currently, o
3131
* `columnSubtotals`: (boolean) Indicates if the *subtotal* data should be requested for all fields in the columns field well.
3232
* `columnSubtotalsPerLevel`: (boolean) Indicates if the *subtotal* data can be toggled for individual fields in the columns field well.
3333
* `levelSubtotalEnabled`: (boolean) Indicates if the subtotals are requested for the row or column. Unlike all the other properties, this property is applied to individual rows or columns.
34-
* `rowSubtotalsType`: ("Top" or "Bottom") Indicates if the row with the *total* data should be retrieved before (`top`) or after (`bottom`) the rest of the data. If this property is set to `bottom`, the total can only be displayed after all the data has been fetched. The default is `bottom`.
34+
* `rowSubtotalsType`: ("Top" or "Bottom") Indicates if the row with the *total* data should be retrieved before (`top`) or after (`bottom`) the rest of the data. If this property is set to `bottom`, the total can only be displayed after all the data is fetched. The default is `bottom`.
3535

3636
Each of these switches is assigned a value based on the related properties in the property pane and the defaults.
3737

powerbi-docs/developer/visuals/utils-formatting-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.reviewer: tebercov
88
ms.service: powerbi
99
ms.subservice: powerbi-custom-visuals
1010
ms.topic: reference
11-
ms.date: 10/23/2023
11+
ms.date: 10/23/2024
1212
ms.custom: engagement-fy23
1313
---
1414

@@ -347,7 +347,7 @@ new formattingSettings.ColorPicker({
347347
348348
## Reset settings to default
349349
350-
Formatting model utils will enable you to [reset settings to default](./format-pane-example.md#reset-settings-to-default) by automatically adding all the formatting properties descriptors to the formatting card list of features to revet to default descriptors `revertToDefaultDescriptors`.
350+
Formatting model utils enable you to [reset settings to default](./format-pane-example.md#reset-settings-to-default) by automatically adding all the formatting properties descriptors to the formatting card list of features to revet to default descriptors `revertToDefaultDescriptors`.
351351
352352
You can enable resetting formatting settings from:
353353

0 commit comments

Comments
 (0)