deleteCIBuildDetail

Back to index

Summary

Deletes a CI build object.
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->deleteCIBuildDetail( "test-projectName", # projectName "test-ciBuildDetailName" # ciBuildDetailName # optionals );

ectool

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

Examples

Perl

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

ectool

ectool deleteCIBuildDetail 'Test' 'test_ci_build'