class PaloAlto::XML::Config::Devices::Entry::TemplateStack::Entry::Config::Devices::Entry::Network::Interface::AggregateEthernet::Entry::Layer3::Ipv6::NeighborDiscovery::RouterAdvertisement::Prefix::Entry

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 285715
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 285846
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 285850
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 285712
def has_multiple_values?
        false
end
name() click to toggle source

IPv6 prefix

# File lib/palo_alto/config.rb, line 285834
def name
        prop_get('@name')
end
preferred_lifetime() click to toggle source
# File lib/palo_alto/config.rb, line 285807
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 285759
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