UpdateStageResponse

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)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

A list of group names that compose the stage. The groups will be updated in parallel. Each group name can only appear once in the UpdateRun.

Link copied to clipboard

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