Back to index
Summary
Sets an output parameter value.outputParameterNameStringrequiredThe name of the output parameter. valueStringrequiredThe value of the output parameter. flowRuntimeIdStringoptionalThe primary key or name of the flowRuntime container of the property sheet that owns the property. jobIdStringoptionalThe ID of the job. jobStepIdStringoptionalThe primary key of the job-step container of the property sheet that owns the property. |
Usage
Groovy
import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.setOutputParameter( outputParameterName: "test-outputParameterName", value: "test-value" /* optional arguments */ )