d44e598692
Module py3kcompat was removed from oslo-incubator. We need remove its usage in client side firstly. This make us move smoothly when sync oslo-incubator code. Change-Id: I8b07c32c9852e747579a23685f3c8a07ac13ec01 Partial-Bug: #1280033
50 lines
1.5 KiB
Python
50 lines
1.5 KiB
Python
# Copyright 2013 IBM Corp
|
|
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
|
|
"""
|
|
Hypervisors interface
|
|
"""
|
|
|
|
from six.moves.urllib import parse
|
|
|
|
from novaclient.v1_1 import hypervisors
|
|
|
|
|
|
class Hypervisor(hypervisors.Hypervisor):
|
|
pass
|
|
|
|
|
|
class HypervisorManager(hypervisors.HypervisorManager):
|
|
resource_class = Hypervisor
|
|
|
|
def search(self, hypervisor_match):
|
|
"""
|
|
Get a list of matching hypervisors.
|
|
|
|
:param servers: If True, server information is also retrieved.
|
|
"""
|
|
url = ('/os-hypervisors/search?query=%s' %
|
|
parse.quote(hypervisor_match, safe=''))
|
|
return self._list(url, 'hypervisors')
|
|
|
|
def servers(self, hypervisor):
|
|
"""
|
|
Get servers for a specific hypervisor
|
|
|
|
:param hypervisor: ID of hypervisor to get list of servers for.
|
|
"""
|
|
return self._get('/os-hypervisors/%s/servers' % hypervisor,
|
|
'hypervisor')
|