class Azure::Network::Mgmt::V2018_04_01::Models::ApplicationGatewayBackendAddress

Backend address of an application gateway.

Attributes

fqdn[RW]

@return [String] Fully qualified domain name (FQDN).

ip_address[RW]

@return [String] IP address

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-04-01/generated/azure_mgmt_network/models/application_gateway_backend_address.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewayBackendAddress',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayBackendAddress',
      model_properties: {
        fqdn: {
          client_side_validation: true,
          required: false,
          serialized_name: 'fqdn',
          type: {
            name: 'String'
          }
        },
        ip_address: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ipAddress',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end