Back to index
Summary
Deletes a dashboard column.projectNameStringrequiredThe name for the project that must be unique among all projects. dashboardNameStringrequiredUnique name of the dashboard within the project. columnStringrequiredThe name of the dashboard column. deleteWidgetsBooleanrequiredWhether to delete the widgets associated with the column that is being deleted. addToColumnStringoptionalThe column to which the widgets associated with the column being deleted should be added. Required if deleteWidgets is false , and there are existing widgets in the column being deleted. |
Usage
Groovy
import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.deleteDashboardColumn( projectName: "test-projectName", dashboardName: "test-dashboardName", column: "test-column", deleteWidgets: "test-deleteWidgets" /* optional arguments */ )