class PaloAlto::XML::Config::Shared::Schedule::Entry::ScheduleType::Recurring
Public Instance Methods
_section()
click to toggle source
# File lib/palo_alto/config.rb, line 40973 def _section :'recurring' end
daily()
click to toggle source
# File lib/palo_alto/config.rb, line 41229 def daily if @create_children @subclasses['daily'] ||= Daily.new(parent_instance: self, create_children: @create_children) else Daily.new(parent_instance: self) end end
has_multiple_values?()
click to toggle source
# File lib/palo_alto/config.rb, line 40970 def has_multiple_values? true end
weekly()
click to toggle source
# File lib/palo_alto/config.rb, line 41202 def weekly @subclasses['weekly'] ||= Weekly.new(parent_instance: self, create_children: @create_children) end