deleteProcessDependency

Back to index

Summary

Deletes a dependency between two process steps.
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.
targetProcessStepName
Stringrequired
The name of the target 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
Name of the application containing the microservice.
microserviceName
Stringoptional
The name of the microservice, if the process is owned by a microservice.

Usage

Perl

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

ectool

ectool deleteProcessDependency \ "test-projectName" `# projectName` \ "test-processName" `# processName` \ "test-processStepName" `# processStepName` \ "test-targetProcessStepName" `# targetProcessStepName` \ # optionals

Examples

Perl

To delete a dependency between two component process steps in a master component:

$cmdr->deleteProcessDependency('Default', 'Deploy', 'Get WAR file', 'Copy WAR file', {componentName => 'WAR file'});

To delete a dependency between two component process steps in a specific application:

$cmdr->deleteProcessDependency('Default', 'Deploy', 'Get WAR file', 'Copy WAR file', {componentName => 'WAR file', componentApplicationName => 'Shopping Cart'});

To delete a dependency between two application process steps:

$cmdr->deleteProcessDependency('Default', 'Deploy', 'Get WAR file', 'Copy WAR file', {applicationName => 'Shopping Cart'});

ectool

To delete a dependency between two component process steps in a master component:

ectool deleteProcessDependency 'Default' 'Deploy' 'Get WAR file' 'Copy WAR file' --componentName 'WAR file'

To create a dependency between two component process steps in a specific application:

ectool deleteProcessDependency 'Default' 'Deploy' 'Get WAR file' 'Copy WAR file' --componentName 'WAR file' --componentApplicationName 'Shopping Cart'

To create a dependency between two application process steps:

ectool deleteProcessDependency 'Default' 'Deploy' 'Get WAR file' 'Copy WAR file' --applicationName 'Shopping Cart'