Software Recipe Step Run Script Args
data class SoftwareRecipeStepRunScriptArgs(val allowedExitCodes: Output<List<Int>>? = null, val interpreter: Output<SoftwareRecipeStepRunScriptInterpreter>? = null, val script: Output<String>) : ConvertibleToJava<SoftwareRecipeStepRunScriptArgs>
Runs a script through an interpreter.
Constructors
Link copied to clipboard
constructor(allowedExitCodes: Output<List<Int>>? = null, interpreter: Output<SoftwareRecipeStepRunScriptInterpreter>? = null, script: Output<String>)
Properties
Link copied to clipboard
Return codes that indicate that the software installed or updated successfully. Behaviour defaults to 0
Link copied to clipboard
The script interpreter to use to run the script. If no interpreter is specified the script is executed directly, which likely only succeed for scripts with shebang lines.