class PaloAlto::XML::Config::Predefined::Threats

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 815
def _section
        :'threats'
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 812
def has_multiple_values?
        false
end
phone_home() click to toggle source
# File lib/palo_alto/config.rb, line 886
def phone_home
        if @create_children
                @subclasses['phone-home'] ||= PhoneHome.new(parent_instance: self, create_children: @create_children)
        else
                PhoneHome.new(parent_instance: self)
        end
end
vulnerability() click to toggle source
# File lib/palo_alto/config.rb, line 1036
def vulnerability
        if @create_children
                @subclasses['vulnerability'] ||= Vulnerability.new(parent_instance: self, create_children: @create_children)
        else
                Vulnerability.new(parent_instance: self)
        end
end