Update Stage Response
data class UpdateStageResponse(val afterStageWaitInSeconds: Int? = null, val groups: List<UpdateGroupResponse>? = null, val name: String)
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 UpdateStageResponse(afterStageWaitInSeconds: Int? = null, groups: List<UpdateGroupResponse>? = null, name: String)