Merge "Prepare for enabling H302 rule(services/compute/v3/json)"
This commit is contained in:
commit
a26bae35ce
@ -15,14 +15,14 @@
|
||||
|
||||
import json
|
||||
|
||||
from tempest.common.rest_client import RestClient
|
||||
from tempest.common import rest_client
|
||||
from tempest import config
|
||||
from tempest import exceptions
|
||||
|
||||
CONF = config.CONF
|
||||
|
||||
|
||||
class AggregatesV3ClientJSON(RestClient):
|
||||
class AggregatesV3ClientJSON(rest_client.RestClient):
|
||||
|
||||
def __init__(self, auth_provider):
|
||||
super(AggregatesV3ClientJSON, self).__init__(auth_provider)
|
||||
|
@ -15,13 +15,13 @@
|
||||
|
||||
import json
|
||||
|
||||
from tempest.common.rest_client import RestClient
|
||||
from tempest.common import rest_client
|
||||
from tempest import config
|
||||
|
||||
CONF = config.CONF
|
||||
|
||||
|
||||
class AvailabilityZoneV3ClientJSON(RestClient):
|
||||
class AvailabilityZoneV3ClientJSON(rest_client.RestClient):
|
||||
|
||||
def __init__(self, auth_provider):
|
||||
super(AvailabilityZoneV3ClientJSON, self).__init__(
|
||||
|
@ -15,13 +15,13 @@
|
||||
|
||||
import json
|
||||
|
||||
from tempest.common.rest_client import RestClient
|
||||
from tempest.common import rest_client
|
||||
from tempest import config
|
||||
|
||||
CONF = config.CONF
|
||||
|
||||
|
||||
class CertificatesV3ClientJSON(RestClient):
|
||||
class CertificatesV3ClientJSON(rest_client.RestClient):
|
||||
|
||||
def __init__(self, auth_provider):
|
||||
super(CertificatesV3ClientJSON, self).__init__(auth_provider)
|
||||
|
@ -15,13 +15,13 @@
|
||||
|
||||
import json
|
||||
|
||||
from tempest.common.rest_client import RestClient
|
||||
from tempest.common import rest_client
|
||||
from tempest import config
|
||||
|
||||
CONF = config.CONF
|
||||
|
||||
|
||||
class ExtensionsV3ClientJSON(RestClient):
|
||||
class ExtensionsV3ClientJSON(rest_client.RestClient):
|
||||
|
||||
def __init__(self, auth_provider):
|
||||
super(ExtensionsV3ClientJSON, self).__init__(auth_provider)
|
||||
|
@ -16,13 +16,13 @@
|
||||
import json
|
||||
import urllib
|
||||
|
||||
from tempest.common.rest_client import RestClient
|
||||
from tempest.common import rest_client
|
||||
from tempest import config
|
||||
|
||||
CONF = config.CONF
|
||||
|
||||
|
||||
class FlavorsV3ClientJSON(RestClient):
|
||||
class FlavorsV3ClientJSON(rest_client.RestClient):
|
||||
|
||||
def __init__(self, auth_provider):
|
||||
super(FlavorsV3ClientJSON, self).__init__(auth_provider)
|
||||
|
@ -15,13 +15,13 @@
|
||||
import json
|
||||
import urllib
|
||||
|
||||
from tempest.common.rest_client import RestClient
|
||||
from tempest.common import rest_client
|
||||
from tempest import config
|
||||
|
||||
CONF = config.CONF
|
||||
|
||||
|
||||
class HostsV3ClientJSON(RestClient):
|
||||
class HostsV3ClientJSON(rest_client.RestClient):
|
||||
|
||||
def __init__(self, auth_provider):
|
||||
super(HostsV3ClientJSON, self).__init__(auth_provider)
|
||||
|
@ -15,13 +15,13 @@
|
||||
|
||||
import json
|
||||
|
||||
from tempest.common.rest_client import RestClient
|
||||
from tempest.common import rest_client
|
||||
from tempest import config
|
||||
|
||||
CONF = config.CONF
|
||||
|
||||
|
||||
class HypervisorV3ClientJSON(RestClient):
|
||||
class HypervisorV3ClientJSON(rest_client.RestClient):
|
||||
|
||||
def __init__(self, auth_provider):
|
||||
super(HypervisorV3ClientJSON, self).__init__(auth_provider)
|
||||
|
@ -16,14 +16,14 @@
|
||||
import json
|
||||
import time
|
||||
|
||||
from tempest.common.rest_client import RestClient
|
||||
from tempest.common import rest_client
|
||||
from tempest import config
|
||||
from tempest import exceptions
|
||||
|
||||
CONF = config.CONF
|
||||
|
||||
|
||||
class InterfacesV3ClientJSON(RestClient):
|
||||
class InterfacesV3ClientJSON(rest_client.RestClient):
|
||||
|
||||
def __init__(self, auth_provider):
|
||||
super(InterfacesV3ClientJSON, self).__init__(auth_provider)
|
||||
|
@ -15,13 +15,13 @@
|
||||
|
||||
import json
|
||||
|
||||
from tempest.common.rest_client import RestClient
|
||||
from tempest.common import rest_client
|
||||
from tempest import config
|
||||
|
||||
CONF = config.CONF
|
||||
|
||||
|
||||
class KeyPairsV3ClientJSON(RestClient):
|
||||
class KeyPairsV3ClientJSON(rest_client.RestClient):
|
||||
|
||||
def __init__(self, auth_provider):
|
||||
super(KeyPairsV3ClientJSON, self).__init__(auth_provider)
|
||||
|
@ -15,13 +15,13 @@
|
||||
|
||||
import json
|
||||
|
||||
from tempest.common.rest_client import RestClient
|
||||
from tempest.common import rest_client
|
||||
from tempest import config
|
||||
|
||||
CONF = config.CONF
|
||||
|
||||
|
||||
class QuotasV3ClientJSON(RestClient):
|
||||
class QuotasV3ClientJSON(rest_client.RestClient):
|
||||
|
||||
def __init__(self, auth_provider):
|
||||
super(QuotasV3ClientJSON, self).__init__(auth_provider)
|
||||
|
@ -19,7 +19,7 @@ import json
|
||||
import time
|
||||
import urllib
|
||||
|
||||
from tempest.common.rest_client import RestClient
|
||||
from tempest.common import rest_client
|
||||
from tempest.common import waiters
|
||||
from tempest import config
|
||||
from tempest import exceptions
|
||||
@ -27,7 +27,7 @@ from tempest import exceptions
|
||||
CONF = config.CONF
|
||||
|
||||
|
||||
class ServersV3ClientJSON(RestClient):
|
||||
class ServersV3ClientJSON(rest_client.RestClient):
|
||||
|
||||
def __init__(self, auth_provider):
|
||||
super(ServersV3ClientJSON, self).__init__(auth_provider)
|
||||
|
@ -17,13 +17,13 @@
|
||||
import json
|
||||
import urllib
|
||||
|
||||
from tempest.common.rest_client import RestClient
|
||||
from tempest.common import rest_client
|
||||
from tempest import config
|
||||
|
||||
CONF = config.CONF
|
||||
|
||||
|
||||
class ServicesV3ClientJSON(RestClient):
|
||||
class ServicesV3ClientJSON(rest_client.RestClient):
|
||||
|
||||
def __init__(self, auth_provider):
|
||||
super(ServicesV3ClientJSON, self).__init__(auth_provider)
|
||||
|
Loading…
Reference in New Issue
Block a user