ExecStepConfigResponse

data class ExecStepConfigResponse(val allowedSuccessCodes: List<Int>, val gcsObject: GcsObjectResponse, val interpreter: String, val localPath: String)

Common configurations for an ExecStep.

Constructors

Link copied to clipboard
fun ExecStepConfigResponse(allowedSuccessCodes: List<Int>, gcsObject: GcsObjectResponse, interpreter: String, localPath: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Defaults to 0. A list of possible return values that the execution can return to indicate a success.

Link copied to clipboard

A Google Cloud Storage object containing the executable.

Link copied to clipboard

The script interpreter to use to run the script. If no interpreter is specified the script will be executed directly, which will likely only succeed for scripts with shebang lines (https://en.wikipedia.org/wiki/Shebang_\(Unix\)).

Link copied to clipboard

An absolute path to the executable on the VM.