class PaloAlto::XML::Config::Shared::DeviceObject::Entry
Public Instance Methods
_section()
click to toggle source
# File lib/palo_alto/config.rb, line 19062 def _section :'entry' end
category()
click to toggle source
# File lib/palo_alto/config.rb, line 19087 def category if @create_children @subclasses['category'] ||= Category.new(parent_instance: self, create_children: @create_children) else Category.new(parent_instance: self) end end
description()
click to toggle source
# File lib/palo_alto/config.rb, line 19272 def description prop_get('description') end
description=(val)
click to toggle source
# File lib/palo_alto/config.rb, line 19275 def description=(val) prop_set('description', val) end
disable_override()
click to toggle source
disable object override in child device groups
# File lib/palo_alto/config.rb, line 19265 def disable_override prop_get('disable-override') end
disable_override=(val)
click to toggle source
disable object override in child device groups
# File lib/palo_alto/config.rb, line 19269 def disable_override=(val) prop_set('disable-override', val) end
has_multiple_values?()
click to toggle source
# File lib/palo_alto/config.rb, line 19059 def has_multiple_values? false end
model()
click to toggle source
# File lib/palo_alto/config.rb, line 19203 def model if @create_children @subclasses['model'] ||= Model.new(parent_instance: self, create_children: @create_children) else Model.new(parent_instance: self) end end
name()
click to toggle source
alphanumeric string [ 0-9a-zA-Z._-]
# File lib/palo_alto/config.rb, line 19261 def name prop_get('@name') end
os()
click to toggle source
# File lib/palo_alto/config.rb, line 19174 def os if @create_children @subclasses['os'] ||= Os.new(parent_instance: self, create_children: @create_children) else Os.new(parent_instance: self) end end
osfamily()
click to toggle source
# File lib/palo_alto/config.rb, line 19145 def osfamily if @create_children @subclasses['osfamily'] ||= Osfamily.new(parent_instance: self, create_children: @create_children) else Osfamily.new(parent_instance: self) end end
profile()
click to toggle source
# File lib/palo_alto/config.rb, line 19116 def profile if @create_children @subclasses['profile'] ||= Profile.new(parent_instance: self, create_children: @create_children) else Profile.new(parent_instance: self) end end
vendor()
click to toggle source
# File lib/palo_alto/config.rb, line 19232 def vendor if @create_children @subclasses['vendor'] ||= Vendor.new(parent_instance: self, create_children: @create_children) else Vendor.new(parent_instance: self) end end