class PaloAlto::XML::Config::Devices::Entry::Template::Entry
Public Instance Methods
_section()
click to toggle source
# File lib/palo_alto/config.rb, line 131355 def _section :'entry' end
config()
click to toggle source
# File lib/palo_alto/config.rb, line 237521 def config @subclasses['config'] ||= Config.new(parent_instance: self, create_children: @create_children) end
description()
click to toggle source
Description
# File lib/palo_alto/config.rb, line 237542 def description prop_get('description') end
description=(val)
click to toggle source
Description
# File lib/palo_alto/config.rb, line 237546 def description=(val) prop_set('description', val) end
has_multiple_values?()
click to toggle source
# File lib/palo_alto/config.rb, line 131352 def has_multiple_values? false end
name()
click to toggle source
alphanumeric string [ 0-9a-zA-Z._-]
# File lib/palo_alto/config.rb, line 237538 def name prop_get('@name') end
settings()
click to toggle source
# File lib/palo_alto/config.rb, line 131381 def settings @subclasses['settings'] ||= Settings.new(parent_instance: self, create_children: @create_children) end
variable()
click to toggle source
# File lib/palo_alto/config.rb, line 131569 def variable if @create_children @subclasses['variable'] ||= Variable.new(parent_instance: self, create_children: @create_children) else Variable.new(parent_instance: self) end end