Andrea Frittoli (andreaf) | 76a4b4e | 2016-06-14 23:28:16 +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.compute.agents_client import AgentsClient |
| 16 | from tempest.lib.services.compute.aggregates_client import AggregatesClient |
Rao Adnan Khan | ac1aaf6 | 2017-04-27 08:01:18 -0500 | [diff] [blame] | 17 | from tempest.lib.services.compute.assisted_volume_snapshots_client import \ |
| 18 | AssistedVolumeSnapshotsClient |
Andrea Frittoli (andreaf) | 76a4b4e | 2016-06-14 23:28:16 +0100 | [diff] [blame] | 19 | from tempest.lib.services.compute.availability_zone_client import \ |
| 20 | AvailabilityZoneClient |
| 21 | from tempest.lib.services.compute.baremetal_nodes_client import \ |
| 22 | BaremetalNodesClient |
| 23 | from tempest.lib.services.compute.certificates_client import \ |
| 24 | CertificatesClient |
| 25 | from tempest.lib.services.compute.extensions_client import \ |
| 26 | ExtensionsClient |
| 27 | from tempest.lib.services.compute.fixed_ips_client import FixedIPsClient |
| 28 | from tempest.lib.services.compute.flavors_client import FlavorsClient |
| 29 | from tempest.lib.services.compute.floating_ip_pools_client import \ |
| 30 | FloatingIPPoolsClient |
| 31 | from tempest.lib.services.compute.floating_ips_bulk_client import \ |
| 32 | FloatingIPsBulkClient |
| 33 | from tempest.lib.services.compute.floating_ips_client import \ |
| 34 | FloatingIPsClient |
| 35 | from tempest.lib.services.compute.hosts_client import HostsClient |
| 36 | from tempest.lib.services.compute.hypervisor_client import \ |
| 37 | HypervisorClient |
| 38 | from tempest.lib.services.compute.images_client import ImagesClient |
| 39 | from tempest.lib.services.compute.instance_usage_audit_log_client import \ |
| 40 | InstanceUsagesAuditLogClient |
| 41 | from tempest.lib.services.compute.interfaces_client import InterfacesClient |
| 42 | from tempest.lib.services.compute.keypairs_client import KeyPairsClient |
| 43 | from tempest.lib.services.compute.limits_client import LimitsClient |
| 44 | from tempest.lib.services.compute.migrations_client import MigrationsClient |
| 45 | from tempest.lib.services.compute.networks_client import NetworksClient |
| 46 | from tempest.lib.services.compute.quota_classes_client import \ |
| 47 | QuotaClassesClient |
| 48 | from tempest.lib.services.compute.quotas_client import QuotasClient |
| 49 | from tempest.lib.services.compute.security_group_default_rules_client import \ |
| 50 | SecurityGroupDefaultRulesClient |
| 51 | from tempest.lib.services.compute.security_group_rules_client import \ |
| 52 | SecurityGroupRulesClient |
| 53 | from tempest.lib.services.compute.security_groups_client import \ |
| 54 | SecurityGroupsClient |
| 55 | from tempest.lib.services.compute.server_groups_client import \ |
| 56 | ServerGroupsClient |
| 57 | from tempest.lib.services.compute.servers_client import ServersClient |
| 58 | from tempest.lib.services.compute.services_client import ServicesClient |
| 59 | from tempest.lib.services.compute.snapshots_client import SnapshotsClient |
| 60 | from tempest.lib.services.compute.tenant_networks_client import \ |
| 61 | TenantNetworksClient |
| 62 | from tempest.lib.services.compute.tenant_usages_client import \ |
| 63 | TenantUsagesClient |
| 64 | from tempest.lib.services.compute.versions_client import VersionsClient |
| 65 | from tempest.lib.services.compute.volumes_client import \ |
| 66 | VolumesClient |
| 67 | |
Rao Adnan Khan | ac1aaf6 | 2017-04-27 08:01:18 -0500 | [diff] [blame] | 68 | __all__ = ['AgentsClient', 'AggregatesClient', 'AssistedVolumeSnapshotsClient', |
| 69 | 'AvailabilityZoneClient', 'BaremetalNodesClient', |
| 70 | 'CertificatesClient', 'ExtensionsClient', 'FixedIPsClient', |
| 71 | 'FlavorsClient', 'FloatingIPPoolsClient', |
Andrea Frittoli (andreaf) | 76a4b4e | 2016-06-14 23:28:16 +0100 | [diff] [blame] | 72 | 'FloatingIPsBulkClient', 'FloatingIPsClient', 'HostsClient', |
| 73 | 'HypervisorClient', 'ImagesClient', 'InstanceUsagesAuditLogClient', |
| 74 | 'InterfacesClient', 'KeyPairsClient', 'LimitsClient', |
| 75 | 'MigrationsClient', 'NetworksClient', 'QuotaClassesClient', |
| 76 | 'QuotasClient', 'SecurityGroupDefaultRulesClient', |
| 77 | 'SecurityGroupRulesClient', 'SecurityGroupsClient', |
| 78 | 'ServerGroupsClient', 'ServersClient', 'ServicesClient', |
| 79 | 'SnapshotsClient', 'TenantNetworksClient', 'TenantUsagesClient', |
| 80 | 'VersionsClient', 'VolumesClient'] |