Back to index
Summary
Modifies 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. afterColumnStringoptionalThe name of the column after which the column should be placed. When creating the column, if neither beforeColumn nor afterColumn are specified, then the column is added as the last column in the dashboard.beforeColumnStringoptionalThe name of the column before which the column should be placed. When creating the column if neither beforeColumn nor afterColumn are specified, then the column is added as the last column in the dashboard.newNameStringoptionalThe new name for an existing object that is being renamed. |
Usage
Groovy
import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.modifyDashboardColumn( projectName: "test-projectName", dashboardName: "test-dashboardName", column: "test-column" /* optional arguments */ )