class PaloAlto::XML::Config::Devices::Entry::DeviceGroup::Entry::Schedule::Entry::ScheduleType::Recurring

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 103861
def _section
        :'recurring'
end
daily() click to toggle source
# File lib/palo_alto/config.rb, line 104117
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 103858
def has_multiple_values?
        true
end
weekly() click to toggle source
# File lib/palo_alto/config.rb, line 104090
def weekly
        @subclasses['weekly'] ||= Weekly.new(parent_instance: self, create_children: @create_children)
end