# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Network::Mgmt::V2018_11_01 module Models # # Application gateway BackendHealth pool. # class ApplicationGatewayBackendHealthPool include MsRestAzure # @return [ApplicationGatewayBackendAddressPool] Reference of an # ApplicationGatewayBackendAddressPool resource. attr_accessor :backend_address_pool # @return [Array] List of # ApplicationGatewayBackendHealthHttpSettings resources. attr_accessor :backend_http_settings_collection # # Mapper for ApplicationGatewayBackendHealthPool class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayBackendHealthPool', type: { name: 'Composite', class_name: 'ApplicationGatewayBackendHealthPool', model_properties: { backend_address_pool: { client_side_validation: true, required: false, serialized_name: 'backendAddressPool', type: { name: 'Composite', class_name: 'ApplicationGatewayBackendAddressPool' } }, backend_http_settings_collection: { client_side_validation: true, required: false, serialized_name: 'backendHttpSettingsCollection', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayBackendHealthHttpSettingsElementType', type: { name: 'Composite', class_name: 'ApplicationGatewayBackendHealthHttpSettings' } } } } } } } end end end end