Andrea Frittoli (andreaf) | 6cb6b13 | 2016-06-17 11:39:10 +0100 | [diff] [blame] | 1 | # Copyright (c) 2016 Hewlett-Packard Enterprise Development Company, L.P. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 4 | # use this file except in compliance with the License. You may obtain a copy of |
| 5 | # the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | # License for the specific language governing permissions and limitations under |
| 13 | # the License. |
| 14 | |
| 15 | from tempest.lib.services.identity.v3.token_client import V3TokenClient |
| 16 | from tempest.services.identity.v3.json.credentials_client import \ |
| 17 | CredentialsClient |
| 18 | from tempest.services.identity.v3.json.domains_client import DomainsClient |
| 19 | from tempest.services.identity.v3.json.endpoints_client import EndPointsClient |
| 20 | from tempest.services.identity.v3.json.groups_client import GroupsClient |
| 21 | from tempest.services.identity.v3.json.identity_client import IdentityClient |
| 22 | from tempest.services.identity.v3.json.policies_client import PoliciesClient |
| 23 | from tempest.services.identity.v3.json.projects_client import ProjectsClient |
| 24 | from tempest.services.identity.v3.json.regions_client import RegionsClient |
| 25 | from tempest.services.identity.v3.json.roles_client import RolesClient |
| 26 | from tempest.services.identity.v3.json.services_client import ServicesClient |
| 27 | from tempest.services.identity.v3.json.trusts_client import TrustsClient |
| 28 | from tempest.services.identity.v3.json.users_clients import UsersClient |
| 29 | |
| 30 | __all__ = ['V3TokenClient', 'CredentialsClient', 'DomainsClient', |
| 31 | 'EndPointsClient', 'GroupsClient', 'IdentityClient', |
| 32 | 'PoliciesClient', 'ProjectsClient', 'RegionsClient', 'RolesClient', |
| 33 | 'ServicesClient', 'TrustsClient', 'UsersClient', ] |