getCIBuildDetail

Back to index

Summary

Retrieves the specified CI build details.
projectName
Stringrequired
The name for the project that must be unique among all projects.
ciBuildDetailName
Stringrequired
The name of the CI build detail.
flowRuntimeId
UUIDoptional
The ID of the flow runtime the CI build should be associated with.
releaseName
Stringoptional
The name of the release that the CI build should be associated with.
releaseProjectName
Stringoptional
The name of the project that contains the release the CI build should be associated with.

Usage

Perl

$cmdr->getCIBuildDetail( "test-projectName", # projectName "test-ciBuildDetailName" # ciBuildDetailName # optionals );

ectool

ectool getCIBuildDetail \ "test-projectName" `# projectName` \ "test-ciBuildDetailName" `# ciBuildDetailName` \ # optionals

Examples

Perl

$cmdr->getCIBuildDetail ( projectName => "Test", ciBuildDetailName => "test_ci_build" );

ectool

ectool getCIBuildDetail 'Test' 'test_ci_build'