Class: Azure::ARM::Network::Models::ApplicationGatewayBackendHealthServer

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_network/models/application_gateway_backend_health_server.rb

Overview

Application gateway backendhealth http settings.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#addressString

Returns IP address or FQDN of backend server.

Returns:

  • (String)

    IP address or FQDN of backend server.



16
17
18
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_health_server.rb', line 16

def address
  @address
end

#healthApplicationGatewayBackendHealthServerHealth

server. Possible values are: ‘Unknown’, ‘Up’, ‘Down’, and ‘Partial’. Possible values include: ‘Unknown’, ‘Up’, ‘Down’, ‘Partial’

Returns:



24
25
26
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_health_server.rb', line 24

def health
  @health
end

#ip_configurationSubResource

Returns Reference of IP configuration of backend server.

Returns:

  • (SubResource)

    Reference of IP configuration of backend server.



19
20
21
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_health_server.rb', line 19

def ip_configuration
  @ip_configuration
end

Class Method Details

.mapperObject

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



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_server.rb', line 31

def self.mapper()
  {
    required: false,
    serialized_name: 'ApplicationGatewayBackendHealthServer',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayBackendHealthServer',
      model_properties: {
        address: {
          required: false,
          serialized_name: 'address',
          type: {
            name: 'String'
          }
        },
        ip_configuration: {
          required: false,
          serialized_name: 'ipConfiguration',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        health: {
          required: false,
          serialized_name: 'health',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end