class Azure::Network::Mgmt::V2017_10_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 [NetworkInterfaceIPConfiguration] Reference of IP configuration of backend server.
Private Class Methods
mapper()
click to toggle source
Mapper for ApplicationGatewayBackendHealthServer class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-10-01/generated/azure_mgmt_network/models/application_gateway_backend_health_server.rb, line 31 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: 'NetworkInterfaceIPConfiguration' } }, health: { client_side_validation: true, required: false, serialized_name: 'health', type: { name: 'String' } } } } } end