Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 966 Bytes

File metadata and controls

42 lines (29 loc) · 966 Bytes

OCA - OpenNebula Cloud Api

Version: 4.10.0-a1
status:

About

Bindings for XMLRPC OpenNebula Cloud API

Documentation

see http://python-oca.github.io/python-oca/index.html and http://docs.opennebula.org/4.10/integration/system_interfaces/api.html

All allocate functions are implemented as static methods.

Examples

Allocating new host:

client = oca.Client('user:password', 'http:12.12.12.12:2633/RPC2')
new_host_id = oca.Host.allocate(client, 'host_name', 'im_xen', 'vmm_xen', 'tm_nfs')
hostpool = oca.HostPool(client)
hostpool.info()
vm = hostpool.get_by_id(new_host_id)
print vm.name, vm.str_state

License

OCA is under Apache Software License

Authors

See AUTHORS file