# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Web::Mgmt::V2016_03_01 module Models # # Routing rules for ramp up testing. This rule allows to redirect static # traffic % to a slot or to gradually change routing % based on # performance. # class RampUpRule include MsRestAzure # @return [String] Hostname of a slot to which the traffic will be # redirected if decided to. E.g. myapp-stage.azurewebsites.net. attr_accessor :action_host_name # @return [Float] Percentage of the traffic which will be redirected to # ActionHostName. attr_accessor :reroute_percentage # @return [Float] In auto ramp up scenario this is the step to to # add/remove from ReroutePercentage until it reaches # MinReroutePercentage or MaxReroutePercentage. # Site metrics are checked every N minutes specificed in # ChangeIntervalInMinutes. # Custom decision algorithm can be provided in TiPCallback site extension # which URL can be specified in ChangeDecisionCallbackUrl. attr_accessor :change_step # @return [Integer] Specifies interval in mimuntes to reevaluate # ReroutePercentage. attr_accessor :change_interval_in_minutes # @return [Float] Specifies lower boundary above which ReroutePercentage # will stay. attr_accessor :min_reroute_percentage # @return [Float] Specifies upper boundary below which ReroutePercentage # will stay. attr_accessor :max_reroute_percentage # @return [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/ attr_accessor :change_decision_callback_url # @return [String] Name of the routing rule. The recommended name would # be to point to the slot which will receive the traffic in the # experiment. attr_accessor :name # # Mapper for RampUpRule class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RampUpRule', type: { name: 'Composite', class_name: 'RampUpRule', model_properties: { action_host_name: { client_side_validation: true, required: false, serialized_name: 'actionHostName', type: { name: 'String' } }, reroute_percentage: { client_side_validation: true, required: false, serialized_name: 'reroutePercentage', type: { name: 'Double' } }, change_step: { client_side_validation: true, required: false, serialized_name: 'changeStep', type: { name: 'Double' } }, change_interval_in_minutes: { client_side_validation: true, required: false, serialized_name: 'changeIntervalInMinutes', type: { name: 'Number' } }, min_reroute_percentage: { client_side_validation: true, required: false, serialized_name: 'minReroutePercentage', type: { name: 'Double' } }, max_reroute_percentage: { client_side_validation: true, required: false, serialized_name: 'maxReroutePercentage', type: { name: 'Double' } }, change_decision_callback_url: { client_side_validation: true, required: false, serialized_name: 'changeDecisionCallbackUrl', type: { name: 'String' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } } } } } end end end end