diff --git a/tempest/lib/services/volume/v3/backups_client.py b/tempest/lib/services/volume/v3/backups_client.py index 10538b0d94..f2d2d21c1b 100644 --- a/tempest/lib/services/volume/v3/backups_client.py +++ b/tempest/lib/services/volume/v3/backups_client.py @@ -23,7 +23,6 @@ from tempest.lib.services.volume import base_client class BackupsClient(base_client.BaseClient): """Volume V3 Backups client""" - api_version = "v3" def create_backup(self, **kwargs): """Creates a backup of volume. diff --git a/tempest/lib/services/volume/v3/base_client.py b/tempest/lib/services/volume/v3/base_client.py index e78380bb78..617da2eec2 100644 --- a/tempest/lib/services/volume/v3/base_client.py +++ b/tempest/lib/services/volume/v3/base_client.py @@ -20,4 +20,3 @@ from tempest.lib.services.volume import base_client BaseClient = moves.moved_class(base_client.BaseClient, 'BaseClient', __name__, version="Pike", removal_version='?') -BaseClient.api_version = 'v3' diff --git a/tempest/lib/services/volume/v3/group_snapshots_client.py b/tempest/lib/services/volume/v3/group_snapshots_client.py index 6e53e3e434..16412d3d46 100644 --- a/tempest/lib/services/volume/v3/group_snapshots_client.py +++ b/tempest/lib/services/volume/v3/group_snapshots_client.py @@ -23,7 +23,6 @@ from tempest.lib.services.volume import base_client class GroupSnapshotsClient(base_client.BaseClient): """Client class to send CRUD Volume Group Snapshot API requests""" - api_version = 'v3' def create_group_snapshot(self, **kwargs): """Creates a group snapshot. diff --git a/tempest/lib/services/volume/v3/group_types_client.py b/tempest/lib/services/volume/v3/group_types_client.py index ecbcba119a..1ccb9f8ada 100644 --- a/tempest/lib/services/volume/v3/group_types_client.py +++ b/tempest/lib/services/volume/v3/group_types_client.py @@ -22,7 +22,6 @@ from tempest.lib.services.volume import base_client class GroupTypesClient(base_client.BaseClient): """Client class to send CRUD Volume V3 Group Types API requests""" - api_version = 'v3' @property def resource_type(self): diff --git a/tempest/lib/services/volume/v3/groups_client.py b/tempest/lib/services/volume/v3/groups_client.py index e2e477dddc..3cf1e6ab34 100644 --- a/tempest/lib/services/volume/v3/groups_client.py +++ b/tempest/lib/services/volume/v3/groups_client.py @@ -23,7 +23,6 @@ from tempest.lib.services.volume import base_client class GroupsClient(base_client.BaseClient): """Client class to send CRUD Volume Group API requests""" - api_version = 'v3' def create_group(self, **kwargs): """Creates a group. diff --git a/tempest/lib/services/volume/v3/messages_client.py b/tempest/lib/services/volume/v3/messages_client.py index 0127271379..47538cdd58 100644 --- a/tempest/lib/services/volume/v3/messages_client.py +++ b/tempest/lib/services/volume/v3/messages_client.py @@ -22,7 +22,6 @@ from tempest.lib.services.volume import base_client class MessagesClient(base_client.BaseClient): """Client class to send user messages API requests.""" - api_version = 'v3' def show_message(self, message_id): """Show details for a single message.""" diff --git a/tempest/lib/services/volume/v3/snapshots_client.py b/tempest/lib/services/volume/v3/snapshots_client.py index 08e6c94aff..0cb5e5444d 100644 --- a/tempest/lib/services/volume/v3/snapshots_client.py +++ b/tempest/lib/services/volume/v3/snapshots_client.py @@ -22,7 +22,6 @@ from tempest.lib import exceptions as lib_exc class SnapshotsClient(rest_client.RestClient): """Client class to send CRUD Volume Snapshot V3 API requests.""" - api_version = "v3" create_resp = 202 def list_snapshots(self, detail=False, **params): diff --git a/tempest/lib/services/volume/v3/versions_client.py b/tempest/lib/services/volume/v3/versions_client.py index 5702f9521c..57629bd9f8 100644 --- a/tempest/lib/services/volume/v3/versions_client.py +++ b/tempest/lib/services/volume/v3/versions_client.py @@ -22,7 +22,6 @@ from tempest.lib.services.volume import base_client class VersionsClient(base_client.BaseClient): - api_version = 'v3' def list_versions(self): """List API versions diff --git a/tempest/lib/services/volume/v3/volumes_client.py b/tempest/lib/services/volume/v3/volumes_client.py index a1185c41b4..11c5767798 100644 --- a/tempest/lib/services/volume/v3/volumes_client.py +++ b/tempest/lib/services/volume/v3/volumes_client.py @@ -24,7 +24,6 @@ from tempest.lib.services.volume import base_client class VolumesClient(base_client.BaseClient): """Client class to send CRUD Volume V3 API requests""" - api_version = "v3" def _prepare_params(self, params): """Prepares params for use in get or _ext_get methods.