class Azure::Network::Mgmt::V2019_09_01::Models::PublicIPAddressDnsSettings

Contains FQDN of the DNS record associated with the public IP address.

Attributes

domain_name_label[RW]

@return [String] The domain name label. The concatenation of the domain name label and the regionalized DNS zone make up the fully qualified domain name associated with the public IP address. If a domain name label is specified, an A DNS record is created for the public IP in the Microsoft Azure DNS system.

fqdn[RW]

@return [String] The Fully Qualified Domain Name of the A DNS record associated with the public IP. This is the concatenation of the domainNameLabel and the regionalized DNS zone.

reverse_fqdn[RW]

@return [String] The reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-09-01/generated/azure_mgmt_network/models/public_ipaddress_dns_settings.rb, line 38
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PublicIPAddressDnsSettings',
    type: {
      name: 'Composite',
      class_name: 'PublicIPAddressDnsSettings',
      model_properties: {
        domain_name_label: {
          client_side_validation: true,
          required: false,
          serialized_name: 'domainNameLabel',
          type: {
            name: 'String'
          }
        },
        fqdn: {
          client_side_validation: true,
          required: false,
          serialized_name: 'fqdn',
          type: {
            name: 'String'
          }
        },
        reverse_fqdn: {
          client_side_validation: true,
          required: false,
          serialized_name: 'reverseFqdn',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end