getPipelineRuntimes

Back to index

Summary

Retrieves pipeline runs.
filters
Collectionoptional
A list of zero or more filter criteria definitions used to define objects to find.
firstResult
Integeroptional
Result pagination: the first row to return.
flowRuntimeId
UUIDoptional
The ID of the flow runtime.
flowRuntimeName
Stringoptional
The name of the flow runtime.
maxResults
Integeroptional
Result pagination: the number of rows to return.
pipelineName
Stringoptional
The name of the pipeline.
projectName
Stringoptional
The name of the project.
releaseId
UUIDoptional
The ID of the release.
releaseName
Stringoptional
The name of the release.
sortKey
Stringoptional
How to sort the results.
sortOrder
Stringoptional
Specifies the order to sort the results.
Possible values: "ascending", "descending"
viewName
Stringoptional
The name of the view.

Usage

Perl

$cmdr->getPipelineRuntimes( # optionals );

ectool

ectool getPipelineRuntimes \ # optionals

Examples

Perl

$cmdr->getPipelineRuntimes({pipelineName => "Pre-production", projectName => "Default"});

ectool

ectool getPipelineRuntimes --pipelineName "Pre-production" --projectName "Default"