ebceca9414
To better facilitate the building and publishing of sphinx documentation by Jenkins we are moving all openstack projects with sphinx documentation to a common doc tree structure. Documentation goes in project/doc/source and build results go in project/doc/build. Change-Id: I868df12e3c15cc30043e782ce0a609b9574295cd
1.5 KiB
1.5 KiB
The novaclient
Python API
novaclient
novaclient
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:
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.
authenticate
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:
ref/index