Update Stage Args
data class UpdateStageArgs(val afterStageWaitInSeconds: Output<Int>? = null, val groups: Output<List<UpdateGroupArgs>>? = null, val name: Output<String>) : ConvertibleToJava<UpdateStageArgs>
Contains the groups to be updated by an UpdateRun. Update order:
Sequential between stages: Stages run sequentially. The previous stage must complete before the next one starts.
Parallel within a stage: Groups within a stage run in parallel.
Sequential within a group: Clusters within a group are updated sequentially.
Constructors
Link copied to clipboard
fun UpdateStageArgs(afterStageWaitInSeconds: Output<Int>? = null, groups: Output<List<UpdateGroupArgs>>? = null, name: Output<String>)