Class: Azure::ARM::Network::Models::ApplicationGatewayBackendHealthHttpSettings
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::ApplicationGatewayBackendHealthHttpSettings
- 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
-
#backend_http_settings ⇒ ApplicationGatewayBackendHttpSettings
ApplicationGatewayBackendHttpSettings resource.
-
#servers ⇒ Array<ApplicationGatewayBackendHealthServer>
ApplicationGatewayBackendHealthServer resources.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGatewayBackendHealthHttpSettings class as Ruby Hash.
Instance Attribute Details
#backend_http_settings ⇒ ApplicationGatewayBackendHttpSettings
ApplicationGatewayBackendHttpSettings resource.
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 |
#servers ⇒ Array<ApplicationGatewayBackendHealthServer>
ApplicationGatewayBackendHealthServer resources.
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
.mapper ⇒ Object
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 |