class PaloAlto::XML::Config::Shared::Profiles::HipObjects::Entry::NetworkInfo::Criteria::Network

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 19661
def _section
        :'network'
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 19658
def has_multiple_values?
        true
end
is() click to toggle source
# File lib/palo_alto/config.rb, line 19735
def is
        if @create_children
                @subclasses['is'] ||= Is.new(parent_instance: self, create_children: @create_children)
        else
                Is.new(parent_instance: self)
        end
end
is_not() click to toggle source
# File lib/palo_alto/config.rb, line 19825
def is_not
        if @create_children
                @subclasses['is-not'] ||= IsNot.new(parent_instance: self, create_children: @create_children)
        else
                IsNot.new(parent_instance: self)
        end
end