StrategyArgs

data class StrategyArgs(val canary: Output<CanaryArgs>? = null, val standard: Output<StandardArgs>? = null) : ConvertibleToJava<StrategyArgs>

Strategy contains deployment strategy information.

Constructors

Link copied to clipboard
fun StrategyArgs(canary: Output<CanaryArgs>? = null, standard: Output<StandardArgs>? = null)

Functions

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

Properties

Link copied to clipboard
val canary: Output<CanaryArgs>? = null

Canary deployment strategy provides progressive percentage based deployments to a Target.

Link copied to clipboard
val standard: Output<StandardArgs>? = null

Standard deployment strategy executes a single deploy and allows verifying the deployment.