RampUpRule Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RampUpRule() |
Initializes a new instance of the RampUpRule class. |
RampUpRule(String, Nullable<Double>, Nullable<Double>, Nullable<Int32>, Nullable<Double>, Nullable<Double>, String, String) |
Initializes a new instance of the RampUpRule class. |
RampUpRule()
Initializes a new instance of the RampUpRule class.
public RampUpRule ();
Public Sub New ()
Applies to
RampUpRule(String, Nullable<Double>, Nullable<Double>, Nullable<Int32>, Nullable<Double>, Nullable<Double>, String, String)
Initializes a new instance of the RampUpRule class.
public RampUpRule (string actionHostName = default, double? reroutePercentage = default, double? changeStep = default, int? changeIntervalInMinutes = default, double? minReroutePercentage = default, double? maxReroutePercentage = default, string changeDecisionCallbackUrl = default, string name = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.RampUpRule : string * Nullable<double> * Nullable<double> * Nullable<int> * Nullable<double> * Nullable<double> * string * string -> Microsoft.Azure.Management.AppService.Fluent.Models.RampUpRule
Public Sub New (Optional actionHostName As String = Nothing, Optional reroutePercentage As Nullable(Of Double) = Nothing, Optional changeStep As Nullable(Of Double) = Nothing, Optional changeIntervalInMinutes As Nullable(Of Integer) = Nothing, Optional minReroutePercentage As Nullable(Of Double) = Nothing, Optional maxReroutePercentage As Nullable(Of Double) = Nothing, Optional changeDecisionCallbackUrl As String = Nothing, Optional name As String = Nothing)
Parameters
- actionHostName
- String
Hostname of a slot to which the traffic will be redirected if decided to. E.g. myapp-stage.azurewebsites.net.
Percentage of the traffic which will be redirected to <code>ActionHostName</code>.
In auto ramp up scenario this is the step to add/remove from <code>ReroutePercentage</code> until it reaches \n<code>MinReroutePercentage</code> or <code>MaxReroutePercentage</code>. Site metrics are checked every N minutes specified in <code>ChangeIntervalInMinutes</code>.\nCustom decision algorithm can be provided in TiPCallback site extension which URL can be specified in <code>ChangeDecisionCallbackUrl</code>.
Specifies interval in minutes to reevaluate ReroutePercentage.
Specifies lower boundary above which ReroutePercentage will stay.
Specifies upper boundary below which ReroutePercentage will stay.
- changeDecisionCallbackUrl
- String
Custom decision algorithm can be provided in TiPCallback site extension which URL can be specified. See TiPCallback site extension for the scaffold and contracts. https://www.siteextensions.net/packages/TiPCallback/
- name
- String
Name of the routing rule. The recommended name would be to point to the slot which will receive the traffic in the experiment.
Applies to
Azure SDK for .NET