The novaclient Python API

Usage

First create an instance of OpenStack with your credentials:

>>> from novaclient import OpenStack
>>> nova = OpenStack(USERNAME, PASSWORD, AUTH_URL)

Then call methods on the OpenStack object:

class novaclient.OpenStack
backup_schedules

A BackupScheduleManager – manage automatic backup images.

flavors

A FlavorManager – query available “flavors” (hardware configurations).

images

An ImageManager – query and create server disk images.

ipgroups

A IPGroupManager – manage shared public IP addresses.

servers

A ServerManager – start, stop, and manage virtual machines.

For example:

>>> nova.servers.list()
[<Server: buildslave-ubuntu-9.10>]

>>> nova.flavors.list()
[<Flavor: 256 server>,
 <Flavor: 512 server>,
 <Flavor: 1GB server>,
 <Flavor: 2GB server>,
 <Flavor: 4GB server>,
 <Flavor: 8GB server>,
 <Flavor: 15.5GB server>]

>>> fl = nova.flavors.find(ram=512)
>>> nova.servers.create("my-server", flavor=fl)
<Server: my-server>

For more information, see the reference:

Table Of Contents

Previous topic

The nova shell utility

Next topic

API Reference

This Page