getTasks

Back to index

Summary

Retrieves all tasks.
projectName
Stringrequired
The name for the project that must be unique among all projects.
gateType
Stringoptional
The type of the gate.
Possible values: "POST", "PRE"
pipelineName
Stringoptional
The name of the pipeline.
releaseName
Stringoptional
The name of the release.
stageName
Stringoptional
Name of the stage to which this task belongs to.
validate
Booleanoptional
If passed 1, then all validations check if the definition is complete and valid.

Usage

Perl

$cmdr->getTasks( "test-projectName" # projectName # optionals );

ectool

ectool getTasks \ "test-projectName" `# projectName` \ # optionals

Examples

Perl

$cmdr->getTasks("Default", {pipelineName => "Final"});

ectool

ectool getTasks "Default" --pipelineName "Final"