Back to index
Summary
Retrieves either the definition view or the runtime view for the specified release.filterArrayoptionalA list of zero or more filter criteria definitions used to define objects to find. flowRuntimeIdUUIDoptionalThe ID of the flow runtime. modeStringoptionalThe mode of portfolio view. Possible values: "HIERARCHY" , "LIST" pipelineNameStringoptionalThe name of the pipeline. projectNameStringoptionalThe name of the project. releaseNameStringoptionalThe 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