Merge "Define volume extensions_clients as library"

This commit is contained in:
Jenkins 2016-08-04 19:09:42 +00:00 committed by Gerrit Code Review
commit 9529aca152
8 changed files with 12 additions and 2 deletions

View File

@ -0,0 +1,10 @@
---
features:
- |
Define volume service clients as libraries
The following volume service clients are defined as library interface,
so the other projects can use these modules as stable libraries
without any maintenance changes.
* extensions_client(v1)
* extensions_client(v2)

View File

View File

@ -12,6 +12,7 @@
# License for the specific language governing permissions and limitations under
# the License.
from tempest.lib.services.volume.v1.extensions_client import ExtensionsClient
from tempest.services.volume.v1.json.admin.hosts_client import HostsClient
from tempest.services.volume.v1.json.admin.quotas_client import QuotasClient
from tempest.services.volume.v1.json.admin.services_client import \
@ -20,7 +21,6 @@ from tempest.services.volume.v1.json.admin.types_client import TypesClient
from tempest.services.volume.v1.json.availability_zone_client import \
AvailabilityZoneClient
from tempest.services.volume.v1.json.backups_client import BackupsClient
from tempest.services.volume.v1.json.extensions_client import ExtensionsClient
from tempest.services.volume.v1.json.qos_client import QosSpecsClient
from tempest.services.volume.v1.json.snapshots_client import SnapshotsClient
from tempest.services.volume.v1.json.volumes_client import VolumesClient

View File

@ -12,6 +12,7 @@
# License for the specific language governing permissions and limitations under
# the License.
from tempest.lib.services.volume.v2.extensions_client import ExtensionsClient
from tempest.services.volume.v2.json.admin.hosts_client import HostsClient
from tempest.services.volume.v2.json.admin.quotas_client import QuotasClient
from tempest.services.volume.v2.json.admin.services_client import \
@ -20,7 +21,6 @@ from tempest.services.volume.v2.json.admin.types_client import TypesClient
from tempest.services.volume.v2.json.availability_zone_client import \
AvailabilityZoneClient
from tempest.services.volume.v2.json.backups_client import BackupsClient
from tempest.services.volume.v2.json.extensions_client import ExtensionsClient
from tempest.services.volume.v2.json.qos_client import QosSpecsClient
from tempest.services.volume.v2.json.snapshots_client import SnapshotsClient
from tempest.services.volume.v2.json.volumes_client import VolumesClient