getCIJob

Back to index

Summary

Retrieves the specified CI job.
ciConfigurationName
Stringrequired
The CI configuration name.
ciControllerDomain
Stringoptional
The domain name of the CI controller.
ciEndpoint
Stringoptional
Endpoint of the CI Controller.
ciJobName
Stringoptional
The CI job name.
folder
Stringoptional
The path to the folder on the CI server referenced by the CI configuration that contains the CI jobs. The folder path must be in format of: folder1/folder2/folder3/...

Usage

Perl

$cmdr->getCIJob( "test-ciConfigurationName" # ciConfigurationName # optionals );

ectool

ectool getCIJob \ "test-ciConfigurationName" `# ciConfigurationName` \ # optionals

Examples

Perl

$cmdr->getCIJob ( ciConfigurationName => "CI Build Demo", ciJobName => "build-with-params" );

ectool

ectool getCIJob 'CI Build Demo' 'build-with-params'