Back to index
Summary
Retrieves an application or component process step.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. applicationEntityRevisionIdStringoptionalThe revision ID of the versioned object. applicationNameStringoptionalThe name of the application, if the process is owned by an application. componentApplicationNameStringoptionalIf specified, the component is scoped to this application not the project. microserviceApplicationNameStringoptionalIf specified, the microservice is scoped to an application. 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.getProcessStep( projectName: "test-projectName", processName: "test-processName", processStepName: "test-processStepName" /* optional arguments */ )