Class: Azure::ServiceFabric::V6_5_0_36::Models::HttpRouteMatchRule

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.5.0.36/generated/azure_service_fabric/models/http_route_match_rule.rb

Overview

Describes a rule for http route matching.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#headersArray<HttpRouteMatchHeader>

in request.

Returns:



20
21
22
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/http_route_match_rule.rb', line 20

def headers
  @headers
end

#pathHttpRouteMatchPath

Returns Path to match for routing.

Returns:



16
17
18
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/http_route_match_rule.rb', line 16

def path
  @path
end

Class Method Details

.mapperObject

Mapper for HttpRouteMatchRule class as Ruby Hash. This will be used for serialization/deserialization.



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/http_route_match_rule.rb', line 27

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'HttpRouteMatchRule',
    type: {
      name: 'Composite',
      class_name: 'HttpRouteMatchRule',
      model_properties: {
        path: {
          client_side_validation: true,
          required: true,
          serialized_name: 'path',
          default_value: {},
          type: {
            name: 'Composite',
            class_name: 'HttpRouteMatchPath'
          }
        },
        headers: {
          client_side_validation: true,
          required: false,
          serialized_name: 'headers',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'HttpRouteMatchHeaderElementType',
                type: {
                  name: 'Composite',
                  class_name: 'HttpRouteMatchHeader'
                }
            }
          }
        }
      }
    }
  }
end