class PaloAlto::XML::Config::Devices::Entry::TemplateStack::Entry::Config::Devices::Entry::Network::Vlan::Entry

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 298113
def _section
        :'entry'
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 298110
def has_multiple_values?
        false
end
interface() click to toggle source
# File lib/palo_alto/config.rb, line 298139
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 298192
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 298235
def name
        prop_get('@name')
end
virtual_interface() click to toggle source
# File lib/palo_alto/config.rb, line 298225
def virtual_interface
        @subclasses['virtual-interface'] ||= VirtualInterface.new(parent_instance: self, create_children: @create_children)
end