Class: Azure::Network::Mgmt::V2016_09_01::Models::ApplicationGatewayBackendHealthPool

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

Overview

Application gateway BackendHealth pool.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#backend_address_poolApplicationGatewayBackendAddressPool

ApplicationGatewayBackendAddressPool resource.

Returns:



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

def backend_address_pool
  @backend_address_pool
end

#backend_http_settings_collectionArray<ApplicationGatewayBackendHealthHttpSettings>

ApplicationGatewayBackendHealthHttpSettings resources.

Returns:



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

def backend_http_settings_collection
  @backend_http_settings_collection
end

Class Method Details

.mapperObject

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



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
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/application_gateway_backend_health_pool.rb', line 28

def self.mapper()
  {
    required: false,
    serialized_name: 'ApplicationGatewayBackendHealthPool',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayBackendHealthPool',
      model_properties: {
        backend_address_pool: {
          required: false,
          serialized_name: 'backendAddressPool',
          type: {
            name: 'Composite',
            class_name: 'ApplicationGatewayBackendAddressPool'
          }
        },
        backend_http_settings_collection: {
          required: false,
          serialized_name: 'backendHttpSettingsCollection',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'ApplicationGatewayBackendHealthHttpSettingsElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ApplicationGatewayBackendHealthHttpSettings'
                }
            }
          }
        }
      }
    }
  }
end