Exec Step Config Response
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
constructor(allowedSuccessCodes: List<Int>, gcsObject: GcsObjectResponse, interpreter: String, localPath: String)
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 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\)).