setOutputParameter

On this page
Back to index

Summary

Sets an output parameter value.
request
Stringrequired
This parameter and the value displayed are required; request=setOutputParameter must appear in your query string.
outputParameterName
Stringrequired
The name of the output parameter.
value
Stringrequired
The value of the output parameter.
flowRuntimeId
Stringoptional
The primary key or name of the flowRuntime container of the property sheet that owns the property.
jobId
Stringoptional
The ID of the job.
jobStepId
Stringoptional
The 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( request: "test-request", outputParameterName: "test-outputParameterName", value: "test-value" /* optional arguments */ )