Class: Azure::ARM::Network::Models::ApplicationGatewayBackendHealthHttpSettings

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/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:



18
19
20
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_health_http_settings.rb', line 18

def backend_http_settings
  @backend_http_settings
end

#serversArray<ApplicationGatewayBackendHealthServer>

ApplicationGatewayBackendHealthServer resources.

Returns:



22
23
24
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_health_http_settings.rb', line 22

def servers
  @servers
end

Class Method Details

.mapperObject

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



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

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