class PaloAlto::XML::Config::Devices::Entry::Template::Entry::Config::Devices::Entry::Network::Interface::Vlan::Ipv6::NeighborDiscovery::RouterAdvertisement::Prefix::Entry

Public Instance Methods

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

Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages

# File lib/palo_alto/config.rb, line 182660
def auto_config_flag
        prop_get('auto-config-flag')
end
auto_config_flag=(val) click to toggle source

Set the Auto Address Configuration Flag (A-bit) of the prefix in Router Advertisement messages

# File lib/palo_alto/config.rb, line 182664
def auto_config_flag=(val)
        prop_set('auto-config-flag', val)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 182526
def has_multiple_values?
        false
end
name() click to toggle source

IPv6 prefix

# File lib/palo_alto/config.rb, line 182648
def name
        prop_get('@name')
end
preferred_lifetime() click to toggle source
# File lib/palo_alto/config.rb, line 182621
def preferred_lifetime
        if @create_children
                @subclasses['preferred-lifetime'] ||= PreferredLifetime.new(parent_instance: self, create_children: @create_children)
        else
                PreferredLifetime.new(parent_instance: self)
        end
end
valid_lifetime() click to toggle source
# File lib/palo_alto/config.rb, line 182573
def valid_lifetime
        if @create_children
                @subclasses['valid-lifetime'] ||= ValidLifetime.new(parent_instance: self, create_children: @create_children)
        else
                ValidLifetime.new(parent_instance: self)
        end
end