class PaloAlto::XML::Config::Predefined
Public Instance Methods
_section()
click to toggle source
# File lib/palo_alto/config.rb, line 808 def _section :'predefined' end
default_security_rules()
click to toggle source
# File lib/palo_alto/config.rb, line 1233 def default_security_rules @subclasses['default-security-rules'] ||= DefaultSecurityRules.new(parent_instance: self, create_children: @create_children) end
has_multiple_values?()
click to toggle source
# File lib/palo_alto/config.rb, line 805 def has_multiple_values? false end
motd()
click to toggle source
# File lib/palo_alto/config.rb, line 1217 def motd if @create_children @subclasses['motd'] ||= Motd.new(parent_instance: self, create_children: @create_children) else Motd.new(parent_instance: self) end end
tag()
click to toggle source
# File lib/palo_alto/config.rb, line 1161 def tag if @create_children @subclasses['tag'] ||= Tag.new(parent_instance: self, create_children: @create_children) else Tag.new(parent_instance: self) end end
threats()
click to toggle source
# File lib/palo_alto/config.rb, line 1045 def threats @subclasses['threats'] ||= Threats.new(parent_instance: self, create_children: @create_children) end