Class: Azure::Network::Mgmt::V2017_09_01::Models::ApplicationGatewayBackendHealthHttpSettings

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

Overview

Application gateway BackendHealthHttp settings.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#backend_http_settingsApplicationGatewayBackendHttpSettings

ApplicationGatewayBackendHttpSettings resource.

Returns:



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

def backend_http_settings
  @backend_http_settings
end

#serversArray<ApplicationGatewayBackendHealthServer>

ApplicationGatewayBackendHealthServer resources.

Returns:



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

def servers
  @servers
end

Class Method Details

.mapperObject

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



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
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/application_gateway_backend_health_http_settings.rb', line 29

def self.mapper()
  {
    required: false,
    serialized_name: 'ApplicationGatewayBackendHealthHttpSettings',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayBackendHealthHttpSettings',
      model_properties: {
        backend_http_settings: {
          required: false,
          serialized_name: 'backendHttpSettings',
          type: {
            name: 'Composite',
            class_name: 'ApplicationGatewayBackendHttpSettings'
          }
        },
        servers: {
          required: false,
          serialized_name: 'servers',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'ApplicationGatewayBackendHealthServerElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ApplicationGatewayBackendHealthServer'
                }
            }
          }
        }
      }
    }
  }
end