Ramp Up Rule Args
data class RampUpRuleArgs(val actionHostName: Output<String>? = null, val changeDecisionCallbackUrl: Output<String>? = null, val changeIntervalInMinutes: Output<Int>? = null, val changeStep: Output<Double>? = null, val maxReroutePercentage: Output<Double>? = null, val minReroutePercentage: Output<Double>? = null, val name: Output<String>? = null, val reroutePercentage: Output<Double>? = null) : ConvertibleToJava<RampUpRuleArgs>
Routing rules for ramp up testing. This rule allows to redirect static traffic % to a slot or to gradually change routing % based on performance.
Constructors
Link copied to clipboard
fun RampUpRuleArgs(actionHostName: Output<String>? = null, changeDecisionCallbackUrl: Output<String>? = null, changeIntervalInMinutes: Output<Int>? = null, changeStep: Output<Double>? = null, maxReroutePercentage: Output<Double>? = null, minReroutePercentage: Output<Double>? = null, name: Output<String>? = null, reroutePercentage: Output<Double>? = null)
Functions
Properties
Link copied to clipboard
In auto ramp up scenario this is the step to add/remove from ReroutePercentage
until it reaches \nMinReroutePercentage
or MaxReroutePercentage
. Site metrics are checked every N minutes specified in ChangeIntervalInMinutes
.\nCustom decision algorithm can be provided in TiPCallback site extension which URL can be specified in ChangeDecisionCallbackUrl
.