Back to index
Summary
Creates a new widget filter override.projectNameStringrequiredThe name for the project that must be unique among all projects. dashboardNameStringrequiredUnique name of the dashboard within the project. widgetNameStringrequiredName of the widget within the dashboard this widget filter override is scoped to. dashboardFilterNameStringrequiredThe name of the dashboard filter. descriptionStringoptionalComment text describing this object that is not interpreted at all by CloudBees CD/RO. ignoreFilterBooleanoptionalWhether to ignore the dashboard filter and not apply it to the report. All other arguments are ignored if this argument is set to true. parameterNameStringoptionalThe parameter name to use when applying the filter to the report instead of the parameter name specified in the dashboard filter. |
Usage
Groovy
import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.createWidgetFilterOverride( projectName: "test-projectName", dashboardName: "test-dashboardName", widgetName: "test-widgetName", dashboardFilterName: "test-dashboardFilterName" /* optional arguments */ )