class PaloAlto::XML::Config::Devices::Entry::LogCollector::Entry::AuthenticationSetting::AdminLockout

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 344431
def _section
        :'admin-lockout'
end
failed_attempts() click to toggle source

Number of failed login attempts to trigger lock-out

# File lib/palo_alto/config.rb, line 344451
def failed_attempts
        prop_get('failed-attempts')
end
failed_attempts=(val) click to toggle source

Number of failed login attempts to trigger lock-out

# File lib/palo_alto/config.rb, line 344455
def failed_attempts=(val)
        prop_set('failed-attempts', val)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 344428
def has_multiple_values?
        false
end
lockout_time() click to toggle source

Number of minutes to lock-out

# File lib/palo_alto/config.rb, line 344459
def lockout_time
        prop_get('lockout-time')
end
lockout_time=(val) click to toggle source

Number of minutes to lock-out

# File lib/palo_alto/config.rb, line 344463
def lockout_time=(val)
        prop_set('lockout-time', val)
end