AgentsΒΆ

agent interface

class novaclient.v2.agents.Agent(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.agents.AgentsManager(api)

Bases: novaclient.base.ManagerWithFind

create(os, architecture, version, url, md5hash, hypervisor)

Create a new agent build.

delete(id)

Deletes an existing agent build.

list(hypervisor=None)

List all agent builds.

resource_class

alias of Agent

update(id, version, url, md5hash)

Update an existing agent build.

Previous topic

Hosts

Next topic

Aggregates

Project Source

This Page