deleteApplicationDependency

Back to index

Summary

Deletes a dependency between two applications.
projectName
Stringrequired
The name for the project that must be unique among all projects.
applicationName
Stringrequired
The name of the application.
applicationDependencyName
Stringoptional
The name of application dependency. If not specified, a system generated GUID is used.
dependentApplicationName
Stringoptional
The name of application which this application depends on.
dependentProjectName
Stringoptional
The name the project containing the dependent application.
dependentSnapshotName
Stringoptional
The name of snapshot of the dependent application.
snapshotName
Stringoptional
Name of the snapshot; must be unique within the application.

Usage

Perl

$cmdr->deleteApplicationDependency( "test-projectName", # projectName "test-applicationName" # applicationName # optionals );

ectool

ectool deleteApplicationDependency \ "test-projectName" `# projectName` \ "test-applicationName" `# applicationName` \ # optionals

Examples

Perl

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

$cmdr->deleteApplicationDependency('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->deleteApplicationDependency('Default', 'Deploy', 'Get WAR file', 'Copy WAR file', {componentName => 'WAR file', componentApplicationName => 'Shopping Cart'});

To delete a dependency between two application process steps:

$cmdr->deleteApplicationDependency('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 deleteApplicationDependency '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 deleteApplicationDependency 'Default' 'Deploy' 'Get WAR file' 'Copy WAR file' --componentName 'WAR file' --componentApplicationName 'Shopping Cart'

To create a dependency between two application process steps:

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