class PaloAlto::XML::Config::Shared::Profiles::HipObjects::Entry::DiskBackup::Criteria::LastBackupTime

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 20839
def _section
        :'last-backup-time'
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 20836
def has_multiple_values?
        false
end
not_available() click to toggle source
# File lib/palo_alto/config.rb, line 20851
def not_available
        @subclasses['not-available'] ||= NotAvailable.new(parent_instance: self, create_children: @create_children)
end
not_within() click to toggle source
# File lib/palo_alto/config.rb, line 20937
def not_within
        if @create_children
                @subclasses['not-within'] ||= NotWithin.new(parent_instance: self, create_children: @create_children)
        else
                NotWithin.new(parent_instance: self)
        end
end
within() click to toggle source
# File lib/palo_alto/config.rb, line 20892
def within
        if @create_children
                @subclasses['within'] ||= Within.new(parent_instance: self, create_children: @create_children)
        else
                Within.new(parent_instance: self)
        end
end