deleteApplication

Back to index

Summary

Deletes an application.
projectName
Stringrequired
The name for the project that must be unique among all projects.
applicationName
Stringrequired
The name of the application.
foreground
Booleanoptional
True to delete the object in the foreground. The default is to delete the object in the background.
retainInventory
Booleanoptional
True if you wish to retain inventory after deleting the application.

Usage

Perl

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

ectool

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

Examples

Perl

$cmdr->deleteApplication("Default", "Undeploy");

ectool

ectool deleteApplication "Default" "Undeploy"