class PaloAlto::XML::Config::Devices::Entry::TemplateStack::Entry::Config::Devices::Entry::Network::Dhcp::Interface::Entry::Server
Public Instance Methods
_section()
click to toggle source
# File lib/palo_alto/config.rb, line 315583 def _section :'server' end
has_multiple_values?()
click to toggle source
# File lib/palo_alto/config.rb, line 315580 def has_multiple_values? false end
ip_pool()
click to toggle source
# File lib/palo_alto/config.rb, line 316173 def ip_pool if @create_children @subclasses['ip-pool'] ||= IpPool.new(parent_instance: self, create_children: @create_children) else IpPool.new(parent_instance: self) end end
mode()
click to toggle source
# File lib/palo_alto/config.rb, line 316265 def mode prop_get('mode') end
mode=(val)
click to toggle source
# File lib/palo_alto/config.rb, line 316268 def mode=(val) prop_set('mode', val) end
option()
click to toggle source
# File lib/palo_alto/config.rb, line 316145 def option @subclasses['option'] ||= Option.new(parent_instance: self, create_children: @create_children) end
probe_ip()
click to toggle source
Ping IP when allocating a new IP
# File lib/palo_alto/config.rb, line 316272 def probe_ip prop_get('probe-ip') end
probe_ip=(val)
click to toggle source
Ping IP when allocating a new IP
# File lib/palo_alto/config.rb, line 316276 def probe_ip=(val) prop_set('probe-ip', val) end
reserved()
click to toggle source
# File lib/palo_alto/config.rb, line 316242 def reserved if @create_children @subclasses['reserved'] ||= Reserved.new(parent_instance: self, create_children: @create_children) else Reserved.new(parent_instance: self) end end