class PaloAlto::XML::Config::Devices::Entry::Template::Entry::Config::Devices::Entry::Network::Vlan::Entry
Public Instance Methods
_section()
click to toggle source
# File lib/palo_alto/config.rb, line 191567 def _section :'entry' end
has_multiple_values?()
click to toggle source
# File lib/palo_alto/config.rb, line 191564 def has_multiple_values? false end
interface()
click to toggle source
# File lib/palo_alto/config.rb, line 191593 def interface if @create_children @subclasses['interface'] ||= Interface.new(parent_instance: self, create_children: @create_children) else Interface.new(parent_instance: self) end end
mac()
click to toggle source
# File lib/palo_alto/config.rb, line 191646 def mac if @create_children @subclasses['mac'] ||= Mac.new(parent_instance: self, create_children: @create_children) else Mac.new(parent_instance: self) end end
name()
click to toggle source
alphanumeric string [ 0-9a-zA-Z._-]
# File lib/palo_alto/config.rb, line 191689 def name prop_get('@name') end
virtual_interface()
click to toggle source
# File lib/palo_alto/config.rb, line 191679 def virtual_interface @subclasses['virtual-interface'] ||= VirtualInterface.new(parent_instance: self, create_children: @create_children) end