deletePipelineRun

Back to index

Summary

Deletes a pipeline runtime.

When using deletePipelineRun with ec-groovy, the flowRuntimeId value is required. For more information, refer to the Examples below.

projectName
Stringoptional
The name of the project.
flowRuntimeId
Stringoptional
The ID of the flow runtime.
flowRuntimeName
Stringoptional
The name of the flow runtime.

Usage

Groovy

import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.deletePipelineRun( /* optional arguments */ )

Example

import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.deletePipelineRun(flowRuntimeId: "ef9dc8c6-7104-f16a-9578-687a6484a35a")