modifyReportObjectAttribute

Back to index

Summary

Modifies a report object attribute.
reportObjectTypeName
Stringrequired
Report object type for which this attribute is defined. The attribute is owned by the specified report object type.
reportObjectAttributeName
Stringrequired
The name of the report object attribute.
description
Stringoptional
Comment text describing this object that is not interpreted at all by CloudBees CD/RO.
displayName
Stringoptional
Display name of report object attribute.
enumerationValues
Stringoptional
Enumeration values of report object attribute.
newName
Stringoptional
The new name for an existing object that is being renamed.
required
Booleanoptional
Whether the association between the report object type and attribute is always present.
type
Stringoptional
Type of report object attribute.
Possible values: "BOOLEAN", "CONSTANT", "DATE", "DATETIME", "DURATION", "NUMBER", "PERCENT", "STRING"

Usage

Perl

$cmdr->modifyReportObjectAttribute( "test-reportObjectTypeName", # reportObjectTypeName "test-reportObjectAttributeName" # reportObjectAttributeName # optionals );

ectool

ectool modifyReportObjectAttribute \ "test-reportObjectTypeName" `# reportObjectTypeName` \ "test-reportObjectAttributeName" `# reportObjectAttributeName` \ # optionals

Examples

Perl

$cmdr->modifyReportObjectAttribute("code_commit", "Test", {newName => "NewTest"});

ectool

ectool modifyReportObjectAttribute "code_commit" "Test" --newName "NewTest"