Back to index
Summary
Modifies a dependency between two process steps.projectNameStringrequiredThe name for the project that must be unique among all projects. componentNameStringoptionalThe name of the component, if the process is owned by a component. processNameStringrequiredThe name of the process. processStepNameStringrequiredThe name of the process step. targetProcessStepNameStringrequiredThe name of the target process step. applicationNameStringoptionalThe name of the application, if the process is owned by an application. branchConditionStringoptionalThe branch condition. branchConditionNameStringoptionalThe branch condition name. branchConditionTypeStringoptionalThe branch condition type. Possible values: "CUSTOM" , "NONE" , "VALUE" branchTypeStringoptionalThe branch type. Possible values: "ALWAYS" , "ERROR" , "SUCCESS" componentApplicationNameStringoptionalIf specified, the component is scoped to this application not the project. microserviceApplicationNameStringoptionalName of the application containing the microservice. microserviceNameStringoptionalThe name of the microservice, if the process is owned by a microservice. |
Usage
Groovy
import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.modifyProcessDependency( projectName: "test-projectName", processName: "test-processName", processStepName: "test-processStepName", targetProcessStepName: "test-targetProcessStepName" /* optional arguments */ )