class Azure::Network::Mgmt::V2017_03_01::Models::ApplicationGatewayBackendHealthServer

Application gateway backendhealth http settings.

Attributes

address[RW]

@return [String] IP address or FQDN of backend server.

health[RW]

@return [ApplicationGatewayBackendHealthServerHealth] Health of backend server. Possible values include: 'Unknown', 'Up', 'Down', 'Partial', 'Draining'

ip_configuration[RW]

@return [SubResource] Reference of IP configuration of backend server.

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-03-01/generated/azure_mgmt_network/models/application_gateway_backend_health_server.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewayBackendHealthServer',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayBackendHealthServer',
      model_properties: {
        address: {
          client_side_validation: true,
          required: false,
          serialized_name: 'address',
          type: {
            name: 'String'
          }
        },
        ip_configuration: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ipConfiguration',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        health: {
          client_side_validation: true,
          required: false,
          serialized_name: 'health',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end