deleteComponent

Back to index

Summary

Deletes a component.
projectName
Stringrequired
The name for the project that must be unique among all projects.
componentName
Stringrequired
The name of the component.
applicationName
Stringoptional
The name of an application to scope this component to.

Usage

Perl

$cmdr->deleteComponent( "test-projectName", # projectName "test-componentName" # componentName # optionals );

ectool

ectool deleteComponent \ "test-projectName" `# projectName` \ "test-componentName" `# componentName` \ # optionals

Examples

Perl

$cmdr->deleteComponent("Default", "VCScomponent", {applicationName => "Deploy"});

ectool

ectool deleteComponent "Default" "VCScomponent" --applicationName "Deploy"