class Azure::Network::Mgmt::V2018_02_01::Models::ApplicationGatewayBackendHealthPool

Application gateway BackendHealth pool.

Attributes

backend_address_pool[RW]

@return [ApplicationGatewayBackendAddressPool] Reference of an ApplicationGatewayBackendAddressPool resource.

backend_http_settings_collection[RW]

@return [Array<ApplicationGatewayBackendHealthHttpSettings>] List of ApplicationGatewayBackendHealthHttpSettings resources.

Public Class Methods

mapper() click to toggle source

Mapper for ApplicationGatewayBackendHealthPool class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-02-01/generated/azure_mgmt_network/models/application_gateway_backend_health_pool.rb, line 27
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