Class: Azure::ARM::Network::Models::ApplicationGatewayBackendHealthServer
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::ApplicationGatewayBackendHealthServer
- Includes:
- MsRest::JSONable, 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
-
#address ⇒ String
IP address or FQDN of backend server.
-
#health ⇒ ApplicationGatewayBackendHealthServerHealth
server.
-
#ip_configuration ⇒ NetworkInterfaceIPConfiguration
of backend server.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGatewayBackendHealthServer class as Ruby Hash.
Instance Attribute Details
#address ⇒ String
Returns IP address or FQDN of backend server.
17 18 19 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_health_server.rb', line 17 def address @address end |
#health ⇒ ApplicationGatewayBackendHealthServerHealth
server. Possible values include: ‘Unknown’, ‘Up’, ‘Down’, ‘Partial’, ‘Draining’
26 27 28 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_health_server.rb', line 26 def health @health end |
#ip_configuration ⇒ NetworkInterfaceIPConfiguration
of backend server.
21 22 23 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_health_server.rb', line 21 def ip_configuration @ip_configuration end |
Class Method Details
.mapper ⇒ Object
Mapper for ApplicationGatewayBackendHealthServer class as Ruby Hash. This will be used for serialization/deserialization.
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 65 66 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_health_server.rb', line 33 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: 'NetworkInterfaceIPConfiguration' } }, health: { required: false, serialized_name: 'health', type: { name: 'String' } } } } } end |