Class: Azure::Network::Mgmt::V2016_06_01::Models::ApplicationGatewayRequestRoutingRule

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_request_routing_rule.rb

Overview

Request routing rule of application gateway

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#backend_address_poolSubResource

gateway

Returns:

  • (SubResource)

    Backend address pool resource of application



21
22
23
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_request_routing_rule.rb', line 21

def backend_address_pool
  @backend_address_pool
end

#backend_http_settingsSubResource

Returns Frontend port resource of application gateway.

Returns:

  • (SubResource)

    Frontend port resource of application gateway



24
25
26
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_request_routing_rule.rb', line 24

def backend_http_settings
  @backend_http_settings
end

#etagString

resource is updated

Returns:

  • (String)

    A unique read-only string that changes whenever the



42
43
44
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_request_routing_rule.rb', line 42

def etag
  @etag
end

#http_listenerSubResource

Returns Http listener resource of application gateway.

Returns:

  • (SubResource)

    Http listener resource of application gateway



27
28
29
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_request_routing_rule.rb', line 27

def http_listener
  @http_listener
end

#nameString

group. This name can be used to access the resource

Returns:

  • (String)

    Name of the resource that is unique within a resource



38
39
40
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_request_routing_rule.rb', line 38

def name
  @name
end

#provisioning_stateString

resource Updating/Deleting/Failed

Returns:

  • (String)

    Provisioning state of the request routing rule



34
35
36
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_request_routing_rule.rb', line 34

def provisioning_state
  @provisioning_state
end

#rule_typeApplicationGatewayRequestRoutingRuleType

values include: ‘Basic’, ‘PathBasedRouting’

Returns:



17
18
19
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_request_routing_rule.rb', line 17

def rule_type
  @rule_type
end

#url_path_mapSubResource

Returns Url path map resource of application gateway.

Returns:

  • (SubResource)

    Url path map resource of application gateway



30
31
32
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_request_routing_rule.rb', line 30

def url_path_map
  @url_path_map
end

Class Method Details

.mapperObject

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



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_request_routing_rule.rb', line 49

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewayRequestRoutingRule',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayRequestRoutingRule',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        rule_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.ruleType',
          type: {
            name: 'String'
          }
        },
        backend_address_pool: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.backendAddressPool',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        backend_http_settings: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.backendHttpSettings',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        http_listener: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.httpListener',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        url_path_map: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.urlPathMap',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end