class Azure::Network::Mgmt::V2019_06_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.
Private Class Methods
mapper()
click to toggle source
Mapper for ApplicationGatewayBackendAddress class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-06-01/generated/azure_mgmt_network/models/application_gateway_backend_address.rb, line 25 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