Returns a paginated list of Deployment Pipelines. Use Filter Conditions to narrow the results.
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 log on to the DataWorks console and go to the workspace management page to obtain the workspace ID. This parameter specifies the DataWorks workspace for this API call. |
10000 |
| Creator |
string |
No |
The creator of the release pipeline. If specified, only pipeline runs created by this user are returned. |
110755000425**** |
| Status |
string |
No |
The status of the release pipeline. If specified, only pipeline runs in the specified status are returned. Valid values:
|
Running |
| PageNumber |
integer |
No |
The page number. Must be an integer greater than or equal to 1. The default is 1. |
1 |
| PageSize |
integer |
No |
The number of entries per page. |
10 |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
The response object. |
||
| RequestId |
string |
The ID of the request. You can 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 that match the filter criteria. |
2524 |
| PageSize |
integer |
The number of entries per page. |
10 |
| PageNumber |
integer |
The page number. |
1 |
| PipelineRuns |
array<object> |
A list of pipeline runs. |
|
|
array<object> |
The details of a pipeline run. |
||
| Id |
string |
The ID of the pipeline run. |
097c73fe-ed6e-4fb1-b109-a5d59e46cd58 |
| ProjectId |
integer |
The ID of the project. |
70199 |
| CreateTime |
integer |
The time when the pipeline run was created. The value is a UNIX timestamp measured in milliseconds. |
1702736654000 |
| ModifyTime |
integer |
The time when the pipeline run was last modified. The value is a UNIX timestamp measured in milliseconds. |
1702736654000 |
| Creator |
string |
The ID of the user who created the pipeline run. |
110755000425XXXX |
| Status |
string |
The status of the pipeline run. Valid values:
|
Running |
| Message |
string |
The error message returned if the pipeline run fails. |
Error message |
| Stages |
array<object> |
A list of stages in the pipeline run. |
|
|
array<object> |
The details of a stage. |
||
| Code |
string |
The code that identifies the stage. |
DEV_CHECK |
| Step |
integer |
The step number of the stage. |
1 |
| Type |
string |
The type of operation performed in the stage. Valid values:
|
Check |
| Name |
string |
The name of the stage. |
Check before going online to development |
| Description |
string |
The description of the stage. |
Check before going online to development |
| Message |
string |
The error message returned if this stage fails. |
Error message |
| Status |
string |
The status of the stage. Valid values:
|
Running |
| Detail |
object |
Additional information about the stage. |
|
|
any |
Additional properties. |
{ "checkerList": [ { "code": "BuildPackageChecker", "name": "package check" }, { "code": "NodeParentDependency", "name": "downstream dependency check" }, { "code": "NodeInProcess", "name": "offline process check" } ] } |
|
| Description |
string |
The description of the pipeline run. |
Description of the 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": "Description of the pipeline run"
}
]
}
}
Error codes
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.