class Azure::Network::Mgmt::V2019_08_01::Models::ApplicationGatewayBackendHealthOnDemand

Result of on demand test probe.

Attributes

backend_address_pool[RW]

@return [ApplicationGatewayBackendAddressPool] Reference of an ApplicationGatewayBackendAddressPool resource.

backend_health_http_settings[RW]

@return [ApplicationGatewayBackendHealthHttpSettings] Application gateway BackendHealthHttp settings.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-08-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