class PaloAlto::XML::Config::Shared::Threats::Spyware::Entry::Signature

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 18232
def _section
        :'signature'
end
combination() click to toggle source
# File lib/palo_alto/config.rb, line 18943
def combination
        @subclasses['combination'] ||= Combination.new(parent_instance: self, create_children: @create_children)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 18229
def has_multiple_values?
        true
end
standard() click to toggle source
# File lib/palo_alto/config.rb, line 18778
def standard
        if @create_children
                @subclasses['standard'] ||= Standard.new(parent_instance: self, create_children: @create_children)
        else
                Standard.new(parent_instance: self)
        end
end