Andrea Frittoli (andreaf) | 14ecae1 | 2016-06-17 11:56:24 +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 | |
Ken'ichi Ohmichi | a1ad1fe | 2016-08-02 11:11:50 -0700 | [diff] [blame] | 15 | from tempest.lib.services.volume.v1.availability_zone_client import \ |
| 16 | AvailabilityZoneClient |
Daniel Mellado | 8e272ec | 2016-09-19 09:13:27 +0000 | [diff] [blame] | 17 | from tempest.lib.services.volume.v1.encryption_types_client import \ |
| 18 | EncryptionTypesClient |
Ken'ichi Ohmichi | 2d8f3a4 | 2016-07-29 11:12:51 -0700 | [diff] [blame] | 19 | from tempest.lib.services.volume.v1.extensions_client import ExtensionsClient |
Ken'ichi Ohmichi | 7ca65f7 | 2016-08-02 15:36:06 -0700 | [diff] [blame] | 20 | from tempest.lib.services.volume.v1.hosts_client import HostsClient |
David Paterson | 16c4cf2 | 2016-09-20 02:12:13 -0700 | [diff] [blame] | 21 | from tempest.lib.services.volume.v1.qos_client import QosSpecsClient |
Ken'ichi Ohmichi | fd4c5fb | 2016-08-05 15:01:08 -0700 | [diff] [blame] | 22 | from tempest.lib.services.volume.v1.quotas_client import QuotasClient |
Ken'ichi Ohmichi | 5e938c9 | 2016-08-02 16:11:50 -0700 | [diff] [blame] | 23 | from tempest.lib.services.volume.v1.services_client import ServicesClient |
Daniel Mellado | 8ea47c2 | 2016-09-19 10:36:19 +0000 | [diff] [blame] | 24 | from tempest.lib.services.volume.v1.snapshots_client import SnapshotsClient |
Dustin Schoenbrun | 67fbfaf | 2016-09-15 10:07:34 -0400 | [diff] [blame] | 25 | from tempest.lib.services.volume.v1.types_client import TypesClient |
Andrea Frittoli (andreaf) | 14ecae1 | 2016-06-17 11:56:24 +0100 | [diff] [blame] | 26 | from tempest.services.volume.v1.json.backups_client import BackupsClient |
Andrea Frittoli (andreaf) | 14ecae1 | 2016-06-17 11:56:24 +0100 | [diff] [blame] | 27 | from tempest.services.volume.v1.json.volumes_client import VolumesClient |
| 28 | |
Daniel Mellado | 8e272ec | 2016-09-19 09:13:27 +0000 | [diff] [blame] | 29 | __all__ = ['AvailabilityZoneClient', 'EncryptionTypesClient', |
David Paterson | 16c4cf2 | 2016-09-20 02:12:13 -0700 | [diff] [blame] | 30 | 'ExtensionsClient', 'HostsClient', 'QuotasClient', |
| 31 | 'QosSpecsClient', 'ServicesClient', |
| 32 | 'SnapshotsClient', 'TypesClient', 'BackupsClient', |
Dustin Schoenbrun | 67fbfaf | 2016-09-15 10:07:34 -0400 | [diff] [blame] | 33 | 'VolumesClient', ] |