removeTaskGroup

Back to index

Summary

Removes a task group, but does not delete the tasks. The location of the ungrouped tasks is the same as the location of the group task.
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"
groupName
Stringoptional
The name of the group task.
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.

Usage

Perl

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

ectool

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

Examples

Perl

$cmdr->removeTaskGroup("GroupTask2" {gateType => PRE});

ectool

ectool removeTaskGroup "GroupTask2" --gateType PRE