Pipelines - Update Pipeline User
授與使用者許可權給指定的部署管線。
必要範圍
Pipeline.ReadWrite.All
POST https://api.powerbi.com/v1.0/myorg/pipelines/{pipelineId}/users
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
pipeline
|
path | True |
string uuid |
部署管線識別碼 |
要求本文
名稱 | 必要 | 類型 | Description |
---|---|---|---|
identifier | True |
string |
針對主體類型 |
principalType | True |
主體類型 |
|
accessRight |
必要。 使用者對於部署管線的存取權。 |
回應
名稱 | 類型 | Description |
---|---|---|
200 OK |
確定 |
範例
Add a group to a deployment pipeline example |
Add a service principal to a deployment pipeline example |
Add a user to a deployment pipeline example |
Add a group to a deployment pipeline example
Sample Request
POST https://api.powerbi.com/v1.0/myorg/pipelines/8ce96c50-85a0-4db3-85c6-7ccc3ed46523/users
{
"identifier": "154aef10-47b8-48c4-ab97-f0bf9d5f8fcf",
"accessRight": "Admin",
"principalType": "Group"
}
Sample Response
Add a service principal to a deployment pipeline example
Sample Request
POST https://api.powerbi.com/v1.0/myorg/pipelines/8ce96c50-85a0-4db3-85c6-7ccc3ed46523/users
{
"identifier": "a35d842b-90d5-59a1-c56a-5f8fcff0bf9d",
"accessRight": "Admin",
"principalType": "App"
}
Sample Response
Add a user to a deployment pipeline example
Sample Request
POST https://api.powerbi.com/v1.0/myorg/pipelines/8ce96c50-85a0-4db3-85c6-7ccc3ed46523/users
{
"identifier": "john@contoso.com",
"accessRight": "Admin",
"principalType": "User"
}
Sample Response
定義
名稱 | Description |
---|---|
Pipeline |
部署管線的 Power BI 使用者存取權專案 |
Pipeline |
必要。 使用者對於部署管線的存取權。 |
Principal |
主體類型 |
PipelineUser
部署管線的 Power BI 使用者存取權專案
名稱 | 類型 | Description |
---|---|---|
accessRight |
必要。 使用者對於部署管線的存取權。 |
|
identifier |
string |
針對主體類型 |
principalType |
主體類型 |
PipelineUserAccessRight
必要。 使用者對於部署管線的存取權。
名稱 | 類型 | Description |
---|---|---|
Admin |
string |
將系統管理員許可權授與部署管線 |
PrincipalType
主體類型
名稱 | 類型 | Description |
---|---|---|
App |
string |
服務主體類型 |
Group |
string |
群組主體類型 |
None |
string |
沒有主體類型。 用於整個組織層級存取。 |
User |
string |
使用者主體類型 |