Source code for f5.bigip.tm.auth

# coding=utf-8
#
# Copyright 2015-2016 F5 Networks Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

"""BIG-IPĀ® auth module

REST URI
    ``http://localhost/mgmt/tm/auth/``

GUI Path
    ``System --> Users``

REST Kind
    ``tm:auth:*``
"""


from f5.bigip.resource import OrganizingCollection
from f5.bigip.tm.auth.cert_ldap import Cert_Ldaps
from f5.bigip.tm.auth.ldap import Ldaps
from f5.bigip.tm.auth.partition import Partitions
from f5.bigip.tm.auth.password_policy import Password_Policy
from f5.bigip.tm.auth.radius import Radius_s
from f5.bigip.tm.auth.radius_server import Radius_Servers
from f5.bigip.tm.auth.remote_role import Remote_Role
from f5.bigip.tm.auth.remote_user import Remote_User
from f5.bigip.tm.auth.source import Source
from f5.bigip.tm.auth.tacacs import Tacacs_s
from f5.bigip.tm.auth.user import Users


[docs]class Auth(OrganizingCollection): def __init__(self, tm): super(Auth, self).__init__(tm) self._meta_data['allowed_lazy_attributes'] = [ Cert_Ldaps, Ldaps, Partitions, Password_Policy, Radius_s, Radius_Servers, Remote_Role, Remote_User, Source, Tacacs_s, Users ]