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

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 344199
def _section
        :'authentication-setting'
end
admin_lockout() click to toggle source
# File lib/palo_alto/config.rb, line 344467
def admin_lockout
        @subclasses['admin-lockout'] ||= AdminLockout.new(parent_instance: self, create_children: @create_children)
end
admin_session() click to toggle source
# File lib/palo_alto/config.rb, line 344548
def admin_session
        @subclasses['admin-session'] ||= AdminSession.new(parent_instance: self, create_children: @create_children)
end
api() click to toggle source
# File lib/palo_alto/config.rb, line 344424
def api
        @subclasses['api'] ||= Api.new(parent_instance: self, create_children: @create_children)
end
authentication_profile() click to toggle source

Authentication profile to use for non-local admins. Only RADIUS, TACACS+ and authentication sequence are supported.

# File lib/palo_alto/config.rb, line 344579
def authentication_profile
        prop_get('authentication-profile')
end
authentication_profile=(val) click to toggle source

Authentication profile to use for non-local admins. Only RADIUS, TACACS+ and authentication sequence are supported.

# File lib/palo_alto/config.rb, line 344583
def authentication_profile=(val)
        prop_set('authentication-profile', val)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 344196
def has_multiple_values?
        false
end
idle_timeout() click to toggle source

default administrative session idle timeout in minutes

# File lib/palo_alto/config.rb, line 344571
def idle_timeout
        prop_get('idle-timeout')
end
idle_timeout=(val) click to toggle source

default administrative session idle timeout in minutes

# File lib/palo_alto/config.rb, line 344575
def idle_timeout=(val)
        prop_set('idle-timeout', val)
end
imported_panorama_admin_users() click to toggle source
# File lib/palo_alto/config.rb, line 344381
def imported_panorama_admin_users
        if @create_children
                @subclasses['imported-panorama-admin-users'] ||= ImportedPanoramaAdminUsers.new(parent_instance: self, create_children: @create_children)
        else
                ImportedPanoramaAdminUsers.new(parent_instance: self)
        end
end
users() click to toggle source
# File lib/palo_alto/config.rb, line 344351
def users
        if @create_children
                @subclasses['users'] ||= Users.new(parent_instance: self, create_children: @create_children)
        else
                Users.new(parent_instance: self)
        end
end