Class: Azure::ARM::Web::Models::RoutingRule
- Inherits:
-
Object
- Object
- Azure::ARM::Web::Models::RoutingRule
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_web/models/routing_rule.rb
Overview
Routing rules for TiP
Instance Attribute Summary collapse
-
#name ⇒ String
be to point to the slot which will receive the traffic in the experiment.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ RoutingRule
Deserializes given Ruby Hash into Model object.
-
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
Instance Method Summary collapse
-
#validate ⇒ Object
Validate the object.
Instance Attribute Details
#name ⇒ String
be to point to the slot which will receive the traffic in the experiment.
18 19 20 |
# File 'lib/azure_mgmt_web/models/routing_rule.rb', line 18 def name @name end |
Class Method Details
.deserialize_object(object) ⇒ RoutingRule
Deserializes given Ruby Hash into Model object.
47 48 49 50 51 52 53 54 55 |
# File 'lib/azure_mgmt_web/models/routing_rule.rb', line 47 def self.deserialize_object(object) return if object.nil? output_object = RoutingRule.new deserialized_property = object['name'] output_object.name = deserialized_property output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
32 33 34 35 36 37 38 39 40 |
# File 'lib/azure_mgmt_web/models/routing_rule.rb', line 32 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.name output_object['name'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
23 24 25 |
# File 'lib/azure_mgmt_web/models/routing_rule.rb', line 23 def validate # Nothing to validate end |