class PaloAlto::XML::Config::Devices::Entry::Template::Entry::Config::Devices::Entry::Network::DnsProxy::Entry::DomainServers::Entry

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 208571
def _section
        :'entry'
end
cacheable() click to toggle source

Turn on caching of domains resolved by this mapping

# File lib/palo_alto/config.rb, line 208632
def cacheable
        prop_get('cacheable')
end
cacheable=(val) click to toggle source

Turn on caching of domains resolved by this mapping

# File lib/palo_alto/config.rb, line 208636
def cacheable=(val)
        prop_set('cacheable', val)
end
domain_name() click to toggle source
# File lib/palo_alto/config.rb, line 208596
def domain_name
        if @create_children
                @subclasses['domain-name'] ||= DomainName.new(parent_instance: self, create_children: @create_children)
        else
                DomainName.new(parent_instance: self)
        end
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 208568
def has_multiple_values?
        false
end
name() click to toggle source

alphanumeric string [ 0-9a-zA-Z._-]

# File lib/palo_alto/config.rb, line 208628
def name
        prop_get('@name')
end
primary() click to toggle source

Primary DNS Name server IP address

# File lib/palo_alto/config.rb, line 208640
def primary
        prop_get('primary')
end
primary=(val) click to toggle source

Primary DNS Name server IP address

# File lib/palo_alto/config.rb, line 208644
def primary=(val)
        prop_set('primary', val)
end
secondary() click to toggle source

Secondary DNS Name server IP address

# File lib/palo_alto/config.rb, line 208648
def secondary
        prop_get('secondary')
end
secondary=(val) click to toggle source

Secondary DNS Name server IP address

# File lib/palo_alto/config.rb, line 208652
def secondary=(val)
        prop_set('secondary', val)
end