createReportObjectAssociation

Back to index

Summary

Creates a new report object association.
reportObjectTypeName
Stringrequired
Report object type for which this association is defined. The association is owned by the specified report object type.
associatedType
Stringrequired
The name of the associated type.
description
Stringoptional
Comment text describing this object that is not interpreted at all by CloudBees CD/RO.
required
Booleanoptional
Whether the association between the report object type and associated type is always present.
sourceFields
Stringoptional
Comma-separated list of fields in the report object type that should match the fields in the target or associated object type in order to establish a correlation between the two types.
targetFields
Stringoptional
Comma-separated list of fields in the associated object type that should match the fields in the source report object type in order to establish a correlation between the two types.

Usage

Perl

$cmdr->createReportObjectAssociation( "test-reportObjectTypeName", # reportObjectTypeName "test-associatedType" # associatedType # optionals );

ectool

ectool createReportObjectAssociation \ "test-reportObjectTypeName" `# reportObjectTypeName` \ "test-associatedType" `# associatedType` \ # optionals

Examples

Perl

$cmdr->createReportObjectAssociation("feature", "MyAssocType");

ectool

ectool createReportObjectAssociation "feature" "MyAssocType"