CanaryDeploymentArgs

data class CanaryDeploymentArgs(val percentages: Output<List<Int>>, val verify: Output<Boolean>? = null) : ConvertibleToJava<CanaryDeploymentArgs>

CanaryDeployment represents the canary deployment configuration

Constructors

Link copied to clipboard
constructor(percentages: Output<List<Int>>, verify: Output<Boolean>? = null)

Properties

Link copied to clipboard
val percentages: Output<List<Int>>

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
val verify: Output<Boolean>? = null

Whether to run verify tests after each percentage deployment.

Functions

Link copied to clipboard
open override fun toJava(): CanaryDeploymentArgs