Back to index
Summary
Deletes a dependency between two applications.projectNameStringrequiredThe name for the project that must be unique among all projects. applicationNameStringrequiredThe name of the application. applicationDependencyNameStringoptionalThe name of application dependency. If not specified, a system generated GUID is used. dependentApplicationNameStringoptionalThe name of application which this application depends on. dependentProjectNameStringoptionalThe name the project containing the dependent application. dependentSnapshotNameStringoptionalThe name of snapshot of the dependent application. snapshotNameStringoptionalName 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'