HypervisorsΒΆ

Hypervisors interface (1.1 extension).

class novaclient.v2.hypervisors.Hypervisor(manager, info, loaded=False)

Bases: novaclient.openstack.common.apiclient.base.Resource

Populate and bind to a manager.

Parameters:
  • manager – BaseManager object
  • info – dictionary representing resource attributes
  • loaded – prevent lazy-loading if set to True
Hypervisor.NAME_ATTR = 'hypervisor_hostname'
class novaclient.v2.hypervisors.HypervisorManager(api)

Bases: novaclient.base.ManagerWithFind

HypervisorManager.get(hypervisor)

Get a specific hypervisor.

HypervisorManager.list(detailed=True)

Get a list of hypervisors.

HypervisorManager.resource_class

alias of Hypervisor

HypervisorManager.search(hypervisor_match, servers=False)

Get a list of matching hypervisors.

Parameters:servers – If True, server information is also retrieved.
HypervisorManager.statistics()

Get hypervisor statistics over all compute nodes.

Kept for backwards compatibility, new code should call hypervisor_stats.statistics() instead of hypervisors.statistics()

HypervisorManager.uptime(hypervisor)

Get the uptime for a specific hypervisor.

class novaclient.v2.hypervisors.HypervisorStats(manager, info, loaded=False)

Bases: novaclient.openstack.common.apiclient.base.Resource

Populate and bind to a manager.

Parameters:
  • manager – BaseManager object
  • info – dictionary representing resource attributes
  • loaded – prevent lazy-loading if set to True
class novaclient.v2.hypervisors.HypervisorStatsManager(api)

Bases: novaclient.base.Manager

HypervisorStatsManager.resource_class

alias of HypervisorStats

HypervisorStatsManager.statistics()

Get hypervisor statistics over all compute nodes.

Previous topic

Floating_ips

Next topic

Keypairs

This Page