Files
openstacksdk/openstack/baremetal_introspection/baremetal_introspection_service.py
T
Dmitry Tantsur 598c994e11 Support for the baremetal introspection service
This change adds support for the baremetal introspection
(aka ironic-inspector) API. The initial patch includes starting,
stopping introspection, retrieving introspection statuses and
introspection data.

Change-Id: I4b8448316b1b6f6777ed0044374175ed794937f1
2019-04-18 15:54:24 +02:00

23 lines
832 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 import service_description
from openstack.baremetal_introspection.v1 import _proxy
class BaremetalIntrospectionService(service_description.ServiceDescription):
"""The bare metal introspection service."""
supported_versions = {
'1': _proxy.Proxy,
}