Skip to content

Commit

Permalink
feat(vdp): added pipeline run logging endpoints (#237)
Browse files Browse the repository at this point in the history
Because

- we need new pipeline & component endpoints for FE

This commit

- add new pipeline & component endpoints
  • Loading branch information
joremysh authored Aug 21, 2024
1 parent 1051b64 commit c0a52d9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions config/settings-env/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -1121,6 +1121,32 @@
"method": "GET",
"timeout": "30s",
"input_query_strings": ["view"]
},
{
"endpoint": "/v1beta/namespaces/{namespace_id}/pipelines/{pipeline_id}/runs",
"url_pattern": "/v1beta/namespaces/{namespace_id}/pipelines/{pipeline_id}/runs",
"method": "GET",
"timeout": "30s",
"input_query_strings": [
"view",
"pageSize",
"page",
"filter",
"orderBy"
]
},
{
"endpoint": "/v1beta/pipeline-runs/{pipeline_run_id}/component-runs",
"url_pattern": "/v1beta/pipeline-runs/{pipeline_run_id}/component-runs",
"method": "GET",
"timeout": "30s",
"input_query_strings": [
"view",
"pageSize",
"page",
"filter",
"orderBy"
]
}
],
"no_auth": [
Expand Down

0 comments on commit c0a52d9

Please sign in to comment.