deletePipelineRun

Back to index

Summary

Deletes a pipeline runtime.
flowRuntimeId
UUIDoptional
The ID of the flow runtime.
flowRuntimeName
Stringoptional
The name of the flow runtime.
projectName
Stringoptional
The name of the project.

Usage

Perl

$cmdr->deletePipelineRun( # optionals );

ectool

ectool deletePipelineRun \ # optionals

Examples

When making calls using ectool or cb-perl, you must provide values for either flowRuntimeId or both flowRuntimeName and projectName to identify the pipeline run to abort. Refer to the examples below for more information.

Delete pipeline run using flowRuntimeId

Perl

$cmdr->deletePipelineRun({flowRuntimeId => "ef9dc8c6-7104-f16a-9578-687a6484a35a"});

ectool

ectool deletePipelineRun --flowRuntimeId "ef9dc8c6-7104-f16a-9578-687a6484a35a"

Delete pipeline run using flowRuntimeName and projectName

Perl

$cmdr->deletePipelineRun({flowRuntimeName => "Test Run", projectName => "Default"});

ectool

ectool deletePipelineRun --flowRuntimeName "Test Run" --projectName "Default"