Queue a new pipeline run. POST /pipeline
Aggregate pipeline statistics. GET /pipeline/stats
Fetch the status of a specific run.
The API has no GET /pipeline/runs/{id} route, so this method performs a
linear scan of the paginated GET /pipeline/runs endpoint to locate
runId. Cost is therefore O(n) in the number of runs — up to
STATUS_MAX_PAGES pages of STATUS_PAGE_SIZE are scanned
before the search is abandoned. Prefer paging runs.list directly when you
already know the run is recent.
Pipeline resource —
POST /pipeline,GET /pipeline/runs,GET /pipeline/stats.