getTriggerErrorDetails

Back to index

Summary

Retrieves a list of trigger error details.
applicationName
Stringoptional
The name of the application.
includeDetails
Booleanoptional
True to include details (default is false).
path
Stringoptional
Property path string.
pipelineName
Stringoptional
The name of the pipeline.
procedureName
Stringoptional
The name of the procedure.
projectName
Stringoptional
The name for the project that must be unique among all projects.
releaseName
Stringoptional
The name of the release.
scmSyncName
Stringoptional
The name of the scmSync.
triggerName
Stringoptional
The name of the trigger.

Usage

Perl

$cmdr->getTriggerErrorDetails( # optionals );

ectool

ectool getTriggerErrorDetails \ # optionals

Examples

Perl

# for pipeline $cmdr->getTriggerErrorDetails( {projectName => "qe proj" pipelineName => "qe pipeline", triggerName => "qe trigger 1"}); # for procedure $cmdr->getTriggerErrorDetails( {projectName => "qe proj" procedureName => "qe procedure", triggerName => "qe trigger 1"});

ectool

ectool getTriggerErrorDetails --projectName 'qe proj' --pipelineName 'qe pipeline' --triggerName 'qe trigger 1'