RampUpRule Class

 

Specifies a routing rule which can divert traffic to different site based on re-route percentage and host name.and can ramp up/down traffic based on metrics based algorithm or based on custom logic exposed as REST API

Namespace:   Microsoft.WindowsAzure.Management.WebSites.Models
Assembly:  Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)

Inheritance Hierarchy

System.Object
  Microsoft.WindowsAzure.Management.WebSites.Models.RoutingRule
    Microsoft.WindowsAzure.Management.WebSites.Models.RampUpRule

Syntax

public class RampUpRule : RoutingRule
public ref class RampUpRule : RoutingRule
type RampUpRule = 
    class
        inherit RoutingRule
    end
Public Class RampUpRule
    Inherits RoutingRule

Constructors

Name Description
System_CAPS_pubmethod RampUpRule()

Initializes a new instance of the RampUpRule class.

Properties

Name Description
System_CAPS_pubproperty ActionHostName

Optional. A string that contains host name of the other site which will take part of the re-reouted traffic

System_CAPS_pubproperty ChangeDecisionCallbackUrl

Optional. A string that contains callback REST API method to determine change direction and step.This property is optional

System_CAPS_pubproperty ChangeIntervalInMinutes

Optional. A number that contains interval in minutes to evaluate health of the re-reouted site and change reoute percentage with the step. This property is optional

System_CAPS_pubproperty ChangeStep

Optional. A number that contains reroute percentage change that would occur on each interval. This property is optional

System_CAPS_pubproperty MaxReroutePercentage

Optional. A number that contains maximum reeoute percentage. Default is 1000. This property is optional

System_CAPS_pubproperty MinReroutePercentage

Optional. A number that contains minimum reeoute percentage. Default is 0. This property is optional

System_CAPS_pubproperty Name

Optional. A string that contains name of the rule. It has to be unique in the collection of rules.(Inherited from RoutingRule.)

System_CAPS_pubproperty ReroutePercentage

Optional. A number that contains percentage of the traffic to be re-reouted.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.WindowsAzure.Management.WebSites.Models Namespace

Return to top