Dashboard column

2 minute readReference

createDashboardColumn

Creates a dashboard column.

Arguments

Argument Name Type Description

projectName

String

(Required) The name for the project that must be unique among all projects.

dashboardName

String

(Required) Unique name of the dashboard within the project.

column

String

(Required) The name of the dashboard column.

afterColumn

String

The 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.

beforeColumn

String

The 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.

Positional arguments

projectName, dashboardName, column

Usage

ec-perl

$cmdr->createDashboardColumn(<projectName>, <dashboardName>, <column>, {<optionals>});

ectool

ectool createDashboardColumn projectName, dashboardName, column, [optionals]

deleteDashboardColumn

Deletes a dashboard column.

Arguments

Argument Name Type Description

projectName

String

(Required) The name for the project that must be unique among all projects.

dashboardName

String

(Required) Unique name of the dashboard within the project.

column

String

(Required) The name of the dashboard column.

deleteWidgets

Boolean

(Required) Whether to delete the widgets associated with the column that is being deleted.

addToColumn

String

The 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.

Positional arguments

projectName, dashboardName, column, deleteWidgets

Usage

ec-perl

$cmdr->deleteDashboardColumn(<projectName>, <dashboardName>, <column>, <deleteWidgets>, {<optionals>});

ectool

ectool deleteDashboardColumn projectName, dashboardName, column, deleteWidgets, [optionals]

modifyDashboardColumn

Modifies a dashboard column.

Arguments

Argument Name Type Description

projectName

String

(Required) The name for the project that must be unique among all projects.

dashboardName

String

(Required) Unique name of the dashboard within the project.

column

String

(Required) The name of the dashboard column.

afterColumn

String

The 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.

beforeColumn

String

The 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.

newName

String

The new name for an existing object that is being renamed.

Positional arguments

projectName, dashboardName, column

Usage

ec-perl

$cmdr->modifyDashboardColumn(<projectName>, <dashboardName>, <column>, {<optionals>});

ectool

ectool modifyDashboardColumn projectName, dashboardName, column, [optionals]