class PaloAlto::XML::Config::Shared::Schedule::Entry::ScheduleType::Recurring::Weekly
Public Instance Methods
_section()
click to toggle source
# File lib/palo_alto/config.rb, line 40980 def _section :'weekly' end
friday()
click to toggle source
# File lib/palo_alto/config.rb, line 41162 def friday if @create_children @subclasses['friday'] ||= Friday.new(parent_instance: self, create_children: @create_children) else Friday.new(parent_instance: self) end end
has_multiple_values?()
click to toggle source
# File lib/palo_alto/config.rb, line 40977 def has_multiple_values? false end
monday()
click to toggle source
# File lib/palo_alto/config.rb, line 41038 def monday if @create_children @subclasses['monday'] ||= Monday.new(parent_instance: self, create_children: @create_children) else Monday.new(parent_instance: self) end end
saturday()
click to toggle source
# File lib/palo_alto/config.rb, line 41193 def saturday if @create_children @subclasses['saturday'] ||= Saturday.new(parent_instance: self, create_children: @create_children) else Saturday.new(parent_instance: self) end end
sunday()
click to toggle source
# File lib/palo_alto/config.rb, line 41007 def sunday if @create_children @subclasses['sunday'] ||= Sunday.new(parent_instance: self, create_children: @create_children) else Sunday.new(parent_instance: self) end end
thursday()
click to toggle source
# File lib/palo_alto/config.rb, line 41131 def thursday if @create_children @subclasses['thursday'] ||= Thursday.new(parent_instance: self, create_children: @create_children) else Thursday.new(parent_instance: self) end end
tuesday()
click to toggle source
# File lib/palo_alto/config.rb, line 41069 def tuesday if @create_children @subclasses['tuesday'] ||= Tuesday.new(parent_instance: self, create_children: @create_children) else Tuesday.new(parent_instance: self) end end
wednesday()
click to toggle source
# File lib/palo_alto/config.rb, line 41100 def wednesday if @create_children @subclasses['wednesday'] ||= Wednesday.new(parent_instance: self, create_children: @create_children) else Wednesday.new(parent_instance: self) end end