deleteWidget

Back to index

Summary

Deletes a widget.
projectName
Stringrequired
The name for the project that must be unique among all projects.
dashboardName
Stringrequired
Unique name of the dashboard within the project.
widgetName
Stringrequired
The name of the dashboard widget.

Usage

Perl

$cmdr->deleteWidget( "test-projectName", # projectName "test-dashboardName", # dashboardName "test-widgetName" # widgetName );

ectool

ectool deleteWidget \ "test-projectName" `# projectName` \ "test-dashboardName" `# dashboardName` \ "test-widgetName" `# widgetName`

Examples

Perl

$cmdr->deleteWidget("Default", "Weekly Overview", "All Pipeline Runs");

ectool

ectool deleteWidget Default "Weekly Overview" "All Pipeline Runs"