Files
openstacksdk/openstack/container_infrastructure_management/container_infrastructure_management_service.py
Stephen Finucane 88d8d53d46 coe: Add support for clusters
This allows us to start migrating the coe cloud layer to this newly
introduced proxy layer.

Change-Id: Ia9c622dc284234bb618c2caf3d035097bba58ec5
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
2022-11-25 19:06:17 +01:00

25 lines
873 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 openstack.container_infrastructure_management.v1 import _proxy
from openstack import service_description
class ContainerInfrastructureManagementService(
service_description.ServiceDescription,
):
"""The container infrastructure management service."""
supported_versions = {
'1': _proxy.Proxy,
}