Class: Azure::Network::Mgmt::V2020_03_01::Models::ApplicationGatewayBackendHealthOnDemand
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2020_03_01::Models::ApplicationGatewayBackendHealthOnDemand
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-03-01/generated/azure_mgmt_network/models/application_gateway_backend_health_on_demand.rb
Overview
Result of on demand test probe.
Instance Attribute Summary collapse
-
#backend_address_pool ⇒ ApplicationGatewayBackendAddressPool
ApplicationGatewayBackendAddressPool resource.
-
#backend_health_http_settings ⇒ ApplicationGatewayBackendHealthHttpSettings
gateway BackendHealthHttp settings.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGatewayBackendHealthOnDemand class as Ruby Hash.
Instance Attribute Details
#backend_address_pool ⇒ ApplicationGatewayBackendAddressPool
ApplicationGatewayBackendAddressPool resource.
17 18 19 |
# File 'lib/2020-03-01/generated/azure_mgmt_network/models/application_gateway_backend_health_on_demand.rb', line 17 def backend_address_pool @backend_address_pool end |
#backend_health_http_settings ⇒ ApplicationGatewayBackendHealthHttpSettings
gateway BackendHealthHttp settings.
21 22 23 |
# File 'lib/2020-03-01/generated/azure_mgmt_network/models/application_gateway_backend_health_on_demand.rb', line 21 def backend_health_http_settings @backend_health_http_settings end |
Class Method Details
.mapper ⇒ Object
Mapper for ApplicationGatewayBackendHealthOnDemand class as Ruby Hash. This will be used for serialization/deserialization.
28 29 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 |
# File 'lib/2020-03-01/generated/azure_mgmt_network/models/application_gateway_backend_health_on_demand.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayBackendHealthOnDemand', type: { name: 'Composite', class_name: 'ApplicationGatewayBackendHealthOnDemand', model_properties: { backend_address_pool: { client_side_validation: true, required: false, serialized_name: 'backendAddressPool', type: { name: 'Composite', class_name: 'ApplicationGatewayBackendAddressPool' } }, backend_health_http_settings: { client_side_validation: true, required: false, serialized_name: 'backendHealthHttpSettings', type: { name: 'Composite', class_name: 'ApplicationGatewayBackendHealthHttpSettings' } } } } } end |