519475f94a
For compliance with the Project Testing Interface as described in: https://governance.openstack.org/tc/reference/project-testing-interface.html http://lists.openstack.org/pipermail/openstack-dev/2017-December/125710.html http://lists.openstack.org/pipermail/openstack-dev/2018-March/128594.html Some docstrings had to be updated to avoid ambiguous references to exceptions that are available both through ironic_inspector_client and ironic_inspector_client.v1. Co-Authored-By: Nguyen Hai <nguyentrihai93@gmail.com> Co-Authored-By: Dmitry Tantsur <dtantsur@redhat.com> Change-Id: Ib24cd87aedce77f3f0fa49245408ee83e7a9eef0
20 lines
837 B
Python
20 lines
837 B
Python
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from .v1 import ClientV1, DEFAULT_API_VERSION, MAX_API_VERSION # noqa
|
|
from .common.http import ClientError, EndpointNotFound, VersionNotSupported # noqa
|
|
|
|
|
|
__all__ = ['ClientV1', 'DEFAULT_API_VERSION', 'MAX_API_VERSION',
|
|
'ClientError', 'EndpointNotFound', 'VersionNotSupported']
|