getRunHierarchy

Back to index

Summary

Retrieves either the definition view or the runtime view for the specified release.
filters
Collectionoptional
A list of zero or more filter criteria definitions used to define objects to find.
flowRuntimeId
UUIDoptional
The ID of the flow runtime.
mode
Stringoptional
The mode of portfolio view.
Possible values: "HIERARCHY", "LIST"
pipelineName
Stringoptional
The name of the pipeline.
projectName
Stringoptional
The name of the project.
releaseName
Stringoptional
The name of the release.

Usage

Perl

$cmdr->getRunHierarchy( # optionals );

ectool

ectool getRunHierarchy \ # optionals

Examples

Perl

To retrieve the release definition view:

$cmdr->getRunHierarchy(projectName=> "Default", releaseName => AugustRelease);

To retrieve the pipeline definition view:

$cmdr->getRunHierarchy(projectName=> "Default", pipelineName => "Pipeline A");

To retrieve the runtime view:

$cmdr->getRunHierarchy(flowRuntimeId => e9bebbe3-c087-11e9-8bf5-001c42c3ce23);

ectool

To retrieve the release definition view:

ectool getRunHierarchy --projectName "Default" --releaseName "AugustRelease"

To retrieve the pipeline definition view:

ectool getRunHierarchy --projectName "Default" --pipelineName "Pipeline A"

To retrieve the runtime view:

ectool getRunHierarchy --flowRuntimeId e9bebbe3-c087-11e9-8bf5-001c42c3ce23