ListPipelineRuns
Retrieves a paginated list of deployment processes with optional filtering.
Operation description
Try it now
Test
RAM authorization
|
Action |
Access level |
Resource type |
Condition key |
Dependent action |
|
dataworks:* |
list |
*All Resource
|
None | None |
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| ProjectId |
integer |
Yes |
The ID of the DataWorks workspace. You can obtain this ID from the Workspace Management page in the DataWorks console. |
10000 |
| Creator |
string |
No |
Filters results by the pipeline creator. |
110755000425**** |
| Status |
string |
No |
Filters results by pipeline status. Valid values:
|
Running |
| ObjectId |
string |
No |
The ID of the artifact. |
860438872620113XXXX |
| PageNumber |
integer |
No |
The page number. Pages start from 1. The default value is 1. |
1 |
| PageSize |
integer |
No |
The number of entries per page. Default value: 10. Maximum value: 100. |
10 |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
Schema of Response |
||
| RequestId |
string |
The request ID. Use this ID to locate logs and troubleshoot issues. |
7C352CB7-CD88-50CF-9D0D-E81BDF02XXXX |
| PagingInfo |
object |
The pagination information. |
|
| TotalCount |
integer |
The total number of entries matching the filter criteria. |
2524 |
| PageSize |
integer |
The number of entries per page. |
10 |
| PageNumber |
integer |
The page number of the returned results. |
1 |
| PipelineRuns |
array<object> |
A list of deployment pipeline runs. |
|
|
array<object> |
A deployment pipeline run. |
||
| Id |
string |
The ID of the deployment pipeline run. |
097c73fe-ed6e-4fb1-b109-a5d59e46cd58 |
| ProjectId |
integer |
The project ID. |
70199 |
| CreateTime |
integer |
The creation timestamp of the deployment pipeline run. |
1702736654000 |
| ModifyTime |
integer |
The last modification timestamp of the deployment pipeline run. |
1702736654000 |
| Creator |
string |
The creator of the deployment pipeline run. |
110755000425XXXX |
| Status |
string |
The status of the deployment pipeline run. Valid values:
|
Running |
| Message |
string |
The error message returned if the deployment pipeline run fails. |
Error message |
| Stages |
array<object> |
A list of deployment stages. |
|
|
array<object> |
A deployment stage. |
||
| Code |
string |
The code of the deployment stage. |
DEV_CHECK |
| Step |
integer |
The step number of the deployment stage. |
1 |
| Type |
string |
The type of the deployment stage. Valid values:
|
Check |
| Name |
string |
The stage name. |
Check before going online to development |
| Description |
string |
The stage description. |
Check before going online to development |
| Message |
string |
The error message returned if the deployment stage fails. |
Error message |
| Status |
string |
The status of the deployment stage. Valid values:
|
Running |
| Detail |
object |
Additional information about the deployment stage. |
|
|
any |
Additional details for the stage, returned as key-value pairs. |
{ "checkerList": [ { "code": "BuildPackageChecker", "name": "package check" }, { "code": "NodeParentDependency", "name": "downstream dependency check" }, { "code": "NodeInProcess", "name": "offline process check" } ] } |
|
| Description |
string |
The description of the deployment pipeline run. |
发布流程描述信息 |
Examples
Success response
JSON format
{
"RequestId": "7C352CB7-CD88-50CF-9D0D-E81BDF02XXXX\n",
"PagingInfo": {
"TotalCount": 2524,
"PageSize": 10,
"PageNumber": 1,
"PipelineRuns": [
{
"Id": "097c73fe-ed6e-4fb1-b109-a5d59e46cd58",
"ProjectId": 70199,
"CreateTime": 1702736654000,
"ModifyTime": 1702736654000,
"Creator": "110755000425XXXX",
"Status": "Running",
"Message": "Error message",
"Stages": [
{
"Code": "DEV_CHECK",
"Step": 1,
"Type": "Check",
"Name": "Check before going online to development\n",
"Description": "Check before going online to development\n",
"Message": "Error message\n",
"Status": "Running",
"Detail": {
"key": "{\n \"checkerList\": [\n {\n \"code\": \"BuildPackageChecker\",\n \"name\": \"package check\"\n },\n {\n \"code\": \"NodeParentDependency\",\n \"name\": \"downstream dependency check\"\n },\n {\n \"code\": \"NodeInProcess\",\n \"name\": \"offline process check\"\n }\n ]\n}"
}
}
],
"Description": "发布流程描述信息"
}
]
}
}
Error codes
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.