Trigger Build Args
data class TriggerBuildArgs(val artifacts: Output<TriggerBuildArtifactsArgs>? = null, val availableSecrets: Output<TriggerBuildAvailableSecretsArgs>? = null, val images: Output<List<String>>? = null, val logsBucket: Output<String>? = null, val options: Output<TriggerBuildOptionsArgs>? = null, val queueTtl: Output<String>? = null, val secrets: Output<List<TriggerBuildSecretArgs>>? = null, val source: Output<TriggerBuildSourceArgs>? = null, val steps: Output<List<TriggerBuildStepArgs>>, val substitutions: Output<Map<String, String>>? = null, val tags: Output<List<String>>? = null, val timeout: Output<String>? = null) : ConvertibleToJava<TriggerBuildArgs>
Constructors
Link copied to clipboard
fun TriggerBuildArgs(artifacts: Output<TriggerBuildArtifactsArgs>? = null, availableSecrets: Output<TriggerBuildAvailableSecretsArgs>? = null, images: Output<List<String>>? = null, logsBucket: Output<String>? = null, options: Output<TriggerBuildOptionsArgs>? = null, queueTtl: Output<String>? = null, secrets: Output<List<TriggerBuildSecretArgs>>? = null, source: Output<TriggerBuildSourceArgs>? = null, steps: Output<List<TriggerBuildStepArgs>>, substitutions: Output<Map<String, String>>? = null, tags: Output<List<String>>? = null, timeout: Output<String>? = null)
Functions
Properties
Link copied to clipboard
A list of images to be pushed upon the successful completion of all build steps. The images are pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build status is marked FAILURE.
Link copied to clipboard
Link copied to clipboard
Amount of time that this build should be allowed to run, to second granularity. If this amount of time elapses, work on the build will cease and the build status will be TIMEOUT. This timeout must be equal to or greater than the sum of the timeouts for build steps within the build. The expected format is the number of seconds followed by s. Default time is ten minutes (600s).