class Azure::Network::Mgmt::V2015_05_01_preview::Models::ApplicationGatewayBackendAddress
Backend Address of application gateway
Attributes
fqdn[RW]
@return [String] Gets or sets the dns name
ip_address[RW]
@return [String] Gets or sets the 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/2015-05-01-preview/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