deleteProcessStep

Back to index

Summary

Deletes an application or component process step.
projectName
Stringrequired
The name for the project that must be unique among all projects.
processName
Stringrequired
The name of the process.
processStepName
Stringrequired
The name of the process step.
applicationName
Stringoptional
The name of the application, if the process is owned by an application.
componentApplicationName
Stringoptional
If specified, the component is scoped to this application not the project.
componentName
Stringoptional
The name of the component, if the process is owned by a component.
microserviceApplicationName
Stringoptional
If specified, the microservice is scoped to an application.
microserviceName
Stringoptional
The name of the microservice, if the process is owned by a microservice.

Usage

Perl

$cmdr->deleteProcessStep( "test-projectName", # projectName "test-processName", # processName "test-processStepName" # processStepName # optionals );

ectool

ectool deleteProcessStep \ "test-projectName" `# projectName` \ "test-processName" `# processName` \ "test-processStepName" `# processStepName` \ # optionals

Examples

Perl

To delete a component process step in a master component:

$cmdr->deleteProcessStep('Default', 'Deploy', 'Check out', {componentName => 'WAR file'});

To delete a component process step in a specific application:

$cmdr->deleteProcessStep('Default', 'Deploy', 'Check out', {componentName => 'WAR file', componentApplicationName => 'Shopping Cart'});

To delete an application process step:

$cmdr->deleteProcessStep('Default', 'Deploy', 'Check out', {applicationName => 'Shopping Cart'});

ectool

To delete a component process step in a master component:

ectool deleteProcessStep 'Default' 'Deploy' 'Check out' --componentName 'WAR file'

To delete a component process step in a specific application:

ectool deleteProcessStep 'Default' 'Deploy' 'Check out' --componentName 'WAR file' --componentApplicationName 'Shopping Cart'

To delete an application process step:

ectool deleteProcessStep 'Default' 'Deploy' 'Check out' --applicationName 'Shopping Cart'