class PaloAlto::XML::Config::Devices::Entry::DeviceGroup::Entry::Profiles::HipObjects::Entry::AntiMalware::Criteria::LastScanTime

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 93284
def _section
        :'last-scan-time'
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 93281
def has_multiple_values?
        false
end
not_available() click to toggle source
# File lib/palo_alto/config.rb, line 93296
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 93382
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 93337
def within
        if @create_children
                @subclasses['within'] ||= Within.new(parent_instance: self, create_children: @create_children)
        else
                Within.new(parent_instance: self)
        end
end