getReportObjectAttributeValues

Back to index

Summary

Retrieves the report object attribute values from DevOps Insight Server.

Contents of the result set vary based on the type of reportObjectAttributeName:

  • For enumerated types, all possible types are returned.

  • For string types, all values in the CloudBees Analytics server are returned.

  • For Boolean types, the Boolean values in the CloudBees Analytics server are returned.

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.
actualParameters
Mapoptional
Parameters passed as arguments to the reporting filter.
dashboardName
Stringoptional
The name of the dashboard.
dashboardProjectName
Stringoptional
The name of the dashboard project.
filters
Collectionoptional
A list of zero or more filter criteria definitions used to define objects to find.
fromIndex
Integeroptional
The index of the first value to be retrieved, numbered from 0.
maxValues
Integeroptional
The maximum number of values to return at a time.
reportingFilterName
Stringoptional
The name of the reporting filter.
valueStartsWith
Stringoptional
String that the values begin with.

Usage

Perl

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

ectool

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

Examples

Perl

$cmdr->getReportObjectAttributeValues("feature", "featureName");

ectool

ectool getReportObjectAttributeValues feature featureName