UpdateStageResponse

data class UpdateStageResponse(val afterStageWaitInSeconds: Int? = null, val groups: List<UpdateGroupResponse>? = null, val name: String)

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: 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

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

Link copied to clipboard

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