getRuntimeWaitDependencies

Back to index

Summary

Retrieves runtime wait dependencies for the specified pipeline runtime or pipeline runtime object.
flowRuntimeId
UUIDrequired
The UUID of the invoking flowRuntime.
gateType
Stringoptional
The type of gate.
Possible values: "POST", "PRE"
stageName
Stringoptional
The name of the stage.
taskName
Stringoptional
The name of the task.

Usage

Perl

$cmdr->getRuntimeWaitDependencies( "test-flowRuntimeId" # flowRuntimeId # optionals );

ectool

ectool getRuntimeWaitDependencies \ "test-flowRuntimeId" `# flowRuntimeId` \ # optionals

Examples

Perl

$cmdr->getRuntimeWaitDependencies(0509945d-e6ab-11e8-8b28-10653022f566,{stageName => "DEV"});
$cmdr->getRuntimeWaitDependencies(0509945d-e6ab-11e8-8b28-10653022f566,{stageName => "DEV", taskName => "TASK 1"});

ectool

ectool getRuntimeWaitDependencies 0509945d-e6ab-11e8-8b28-10653022f566 --stageName DEV
ectool getRuntimeWaitDependencies 0509945d-e6ab-11e8-8b28-10653022f566 --stageName DEV --taskName "TASK 1"