Pipelines - Get Pipeline
지정된 배포 파이프라인을 반환합니다.
필수 범위
Pipeline.ReadWrite.All 또는 Pipeline.Read.All
GET https://api.powerbi.com/v1.0/myorg/pipelines/{pipelineId}
GET https://api.powerbi.com/v1.0/myorg/pipelines/{pipelineId}?$expand={$expand}
URI 매개 변수
Name | In(다음 안에) | 필수 | 형식 | Description |
---|---|---|---|---|
pipeline
|
path | True |
string uuid |
배포 파이프라인 ID |
$expand
|
query |
string |
응답에서 인라인으로 확장되는 쉼표로 구분된 데이터 형식 목록을 허용합니다. |
응답
Name | 형식 | Description |
---|---|---|
200 OK |
정상 |
예제
Get a deployment pipeline with its 'stages' expanded example |
Get a deployment pipeline without its 'stages' expanded example |
Get a deployment pipeline with its 'stages' expanded example
Sample Request
GET https://api.powerbi.com/v1.0/myorg/pipelines/a5ded933-57b7-41f4-b072-ed4c1f9d5824?$expand=stages
Sample Response
{
"id": "a5ded933-57b7-41f4-b072-ed4c1f9d5824",
"displayName": "My Deployment Pipeline",
"description": "My deployment pipeline",
"stages": [
{
"order": 0,
"workspaceId": "4de5bcc4-2c88-4efe-b827-4ee7b289b496",
"workspaceName": "Workspace-Development"
},
{
"order": 1,
"workspaceId": "44b499cf-1eeb-45e2-9ada-63b6ec9d516e"
},
{
"order": 2
}
]
}
Get a deployment pipeline without its 'stages' expanded example
Sample Request
GET https://api.powerbi.com/v1.0/myorg/pipelines/a5ded933-57b7-41f4-b072-ed4c1f9d5824
Sample Response
{
"id": "a5ded933-57b7-41f4-b072-ed4c1f9d5824",
"displayName": "Marketing Deployment Pipeline",
"description": "Power BI deployment pipeline to manage marketing reports"
}
정의
Name | Description |
---|---|
Pipeline |
Power BI 파이프라인 |
Pipeline |
Power BI 배포 파이프라인 단계 |
Pipeline
Power BI 파이프라인
Name | 형식 | Description |
---|---|---|
description |
string |
배포 파이프라인 설명 |
displayName |
string |
배포 파이프라인 표시 이름 |
id |
string |
배포 파이프라인 ID |
stages |
배포 파이프라인 단계의 컬렉션입니다. 요청에서 설정된 |
PipelineStage
Power BI 배포 파이프라인 단계
Name | 형식 | Description |
---|---|---|
order |
integer |
0부터 시작하는 스테이지 순서입니다. |
workspaceId |
string |
할당된 작업 영역 ID입니다. 할당된 작업 영역이 있는 경우에만 적용됩니다. |
workspaceName |
string |
할당된 작업 영역 이름입니다. 할당된 작업 영역이 있고 사용자가 작업 영역에 액세스할 수 있는 경우에만 적용됩니다. |