class PaloAlto::XML::Config::Devices::Entry::Template::Entry::Config::Devices::Entry::Network::VirtualRouter::Entry::Protocol::RedistProfile::Entry::Filter

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 195191
def _section
        :'filter'
end
bgp() click to toggle source
# File lib/palo_alto/config.rb, line 195482
def bgp
        @subclasses['bgp'] ||= Bgp.new(parent_instance: self, create_children: @create_children)
end
destination() click to toggle source
# File lib/palo_alto/config.rb, line 195272
def destination
        if @create_children
                @subclasses['destination'] ||= Destination.new(parent_instance: self, create_children: @create_children)
        else
                Destination.new(parent_instance: self)
        end
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 195188
def has_multiple_values?
        false
end
interface() click to toggle source
# File lib/palo_alto/config.rb, line 195244
def interface
        if @create_children
                @subclasses['interface'] ||= Interface.new(parent_instance: self, create_children: @create_children)
        else
                Interface.new(parent_instance: self)
        end
end
nexthop() click to toggle source
# File lib/palo_alto/config.rb, line 195300
def nexthop
        if @create_children
                @subclasses['nexthop'] ||= Nexthop.new(parent_instance: self, create_children: @create_children)
        else
                Nexthop.new(parent_instance: self)
        end
end
ospf() click to toggle source
# File lib/palo_alto/config.rb, line 195394
def ospf
        @subclasses['ospf'] ||= Ospf.new(parent_instance: self, create_children: @create_children)
end
type() click to toggle source
# File lib/palo_alto/config.rb, line 195218
def type
        if @create_children
                @subclasses['type'] ||= Type.new(parent_instance: self, create_children: @create_children)
        else
                Type.new(parent_instance: self)
        end
end