class PaloAlto::XML::Config::Shared::Threats

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 16884
def _section
        :'threats'
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 16881
def has_multiple_values?
        false
end
spyware() click to toggle source
# File lib/palo_alto/config.rb, line 19039
def spyware
        if @create_children
                @subclasses['spyware'] ||= Spyware.new(parent_instance: self, create_children: @create_children)
        else
                Spyware.new(parent_instance: self)
        end
end
vulnerability() click to toggle source
# File lib/palo_alto/config.rb, line 17972
def vulnerability
        if @create_children
                @subclasses['vulnerability'] ||= Vulnerability.new(parent_instance: self, create_children: @create_children)
        else
                Vulnerability.new(parent_instance: self)
        end
end