Armando Migliaccio ddc1b2c083 bug 932408: python-novaclient miss OSAPI host operations
add client bindings for host-related actions.

Change-Id: I98b3c11ec189029bafe73f499070ab132de640af
2012-02-17 18:37:10 +00:00

64 lines
1.9 KiB
Python

# Copyright 2011 OpenStack LLC.
# 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.
"""
host interface (1.1 extension).
"""
from novaclient import base
class Host(base.Resource):
def __repr__(self):
return "<Host: %s>" % self.host
def _add_details(self, info):
dico = 'resource' in info and info['resource'] or info
for (k, v) in dico.items():
setattr(self, k, v)
def update(self, values):
return self.manager.update(self.host, values)
def startup(self):
return self.manager.host_action(self.host, 'startup')
def shutdown(self):
return self.manager.host_action(self.host, 'shutdown')
def reboot(self):
return self.manager.host_action(self.host, 'reboot')
class HostManager(base.ManagerWithFind):
resource_class = Host
def get(self, host):
"""
Describes cpu/memory/hdd info for host.
:param host: destination host name.
"""
return self._list("/os-hosts/%s" % host, "host")
def update(self, host, values):
"""Update status or maintenance mode for the host."""
result = self._update("/os-hosts/%s" % host, values)
return self.resource_class(self, result)
def host_action(self, host, action):
"""Performs an action on a host."""
url = "/os-hosts/%s/%s" % (host, action)
return self._get(url)