deleteGate

Back to index

Summary

Deletes a gate in a stage.
projectName
Stringrequired
The name for the project that must be unique among all projects.
stageName
Stringrequired
Name of the stage to which this task belongs to.
gateType
Stringrequired
The type of the gate.
Possible values: "POST", "PRE"
pipelineName
Stringoptional
The name of the pipeline.
releaseName
Stringoptional
The name of the release.

Usage

Perl

$cmdr->deleteGate( "test-projectName", # projectName "test-stageName", # stageName "test-gateType" # gateType # optionals );

ectool

ectool deleteGate \ "test-projectName" `# projectName` \ "test-stageName" `# stageName` \ "test-gateType" `# gateType` \ # optionals

Examples

Perl

$cmdr->deleteGate("Default", "Preflight", POST, {pipelineName => "Quarterly Summary"});

ectool

ectool deleteGate "Default" "Preflight" POST --pipelineName "Quarterly Summary"