PreBuildStepArgs

data class PreBuildStepArgs(val description: Output<String>? = null, val httpGet: Output<HttpGetArgs>? = null, val scripts: Output<List<String>>? = null) : ConvertibleToJava<PreBuildStepArgs>

Model representing a pre-build step.

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, httpGet: Output<HttpGetArgs>? = null, scripts: Output<List<String>>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

Description of the pre-build step.

Link copied to clipboard
val httpGet: Output<HttpGetArgs>? = null

Http get request to send before the build.

Link copied to clipboard
val scripts: Output<List<String>>? = null

List of custom commands to run.

Functions

Link copied to clipboard
open override fun toJava(): PreBuildStepArgs