CanaryDeploymentResponse

data class CanaryDeploymentResponse(val percentages: List<Int>, val verify: Boolean)

CanaryDeployment represents the canary deployment configuration

Constructors

Link copied to clipboard
fun CanaryDeploymentResponse(percentages: List<Int>, verify: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The percentage based deployments that will occur as a part of a Rollout. List is expected in ascending order and each integer n is 0 <= n < 100.

Link copied to clipboard

Whether to run verify tests after each percentage deployment.