UpdateStageArgs

data class UpdateStageArgs(val afterStageWaitInSeconds: Output<Int>? = null, val groups: Output<List<UpdateGroupArgs>>? = null, val name: Output<String>) : ConvertibleToJava<UpdateStageArgs>

Defines a stage which contains the groups to update and the steps to take (e.g., wait for a time period) before starting the next stage.

Constructors

Link copied to clipboard
constructor(afterStageWaitInSeconds: Output<Int>? = null, groups: Output<List<UpdateGroupArgs>>? = null, name: Output<String>)

Properties

Link copied to clipboard
val afterStageWaitInSeconds: Output<Int>? = null

The time in seconds to wait at the end of this stage before starting the next one. Defaults to 0 seconds if unspecified.

Link copied to clipboard
val groups: Output<List<UpdateGroupArgs>>? = null

Defines the groups to be executed in parallel in this stage. Duplicate groups are not allowed. Min size: 1.

Link copied to clipboard
val name: Output<String>

The name of the stage. Must be unique within the UpdateRun.

Functions

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