OpenNebula OCCI Specification

Resources

The OpenNebula OCCI API is a RESTful service to create, control and monitor cloud resources based on the latest draft of the OGF OCCI API specification. There are two types of resources that resemble the basic entities managed by the OpenNebula system, namely:

A COMPUTE entry resource can be linked to one or more STORAGE or NETWORK resources.

Methods

The methods associated with each resource type are as follows:

Data Schema (XML Format)

This section describes the XML format used to represent COMPUTE, NETWORK and STORAGE resources; as well as the collection of them (Pool Resources, PRs).

You can download the XML Schemas (XSD) following this link

The Pool Resources

The root element required for all the PRs is named after the pool name, eg. COMPUTE_COLLECTION, NETWORK_COLLECTION or STORAGE_COLLECTION (note that XML tags are upper case). No attributes can be defined for the root element.

Each one of ERs in the pool are described by an element (e.g. COMPUTE, NETWORK or STORAGE) with one attribute:

Example:

    <COMPUTE_COLLECTION>
        <COMPUTE href="http://www.opennebula.org/compute/234">
        <COMPUTE href="http://www.opennebula.org/compute/432">
        <COMPUTE href="http://www.opennebula.org/compute/123">
    </COMPUTE_COLLECTION>
    <NETWORK_COLLECTION>
        <NETWORK href="http://www.opennebula.org/network/234">
        <NETWORK href="http://www.opennebula.org/network/432">
        <NETWORK href="http://www.opennebula.org/network/123">
    </NETWORK_COLLECTION>
    <STORAGE_COLLECTION>
        <STORAGE href="http://www.opennebula.org/storage/234">
        <STORAGE href="http://www.opennebula.org/storage/432">
        <STORAGE href="http://www.opennebula.org/storage/123">
    </STORAGE_COLLECTION>

The Network Resource

The NETWORK element defines a virtual network that interconnects those COMPUTES with a network interface card attached to that network. The traffic of each network is isolated from any other network, so it constitutes a broadcasting domain.

The following elements can be defined for a NETWORK:

Example:

    <NETWORK href="http://www.opennebula.org/network/123">
         <ID>123</ID>
         <NAME>BlueNetwork</NAME>
         <ADDRESS>192.168.0.1</ADDRESS>
         <SIZE>C</SIZE>
    </NETWORK>

The Storage Resource

The STORAGE is a resource containing an operative system or data, to be used as a virtual machine disk:

Example:

    <STORAGE href="http://www.opennebula.org/storage/123">
        <ID>123</ID>
        <NAME>Ubuntu Desktop</NAME>
        <DESCRIPTION>UUbuntu 10.04 desktop for students.</DESCRIPTION>
        <TYPE>OS</TYPE>
        <SIZE>2048</SIZE>
    </STORAGE>

The Compute Resource

The COMPUTE element defines a virtual machine by specifying its basic configuration attributes such as NIC or DISK. The following elements can be defined:

Example:

    <COMPUTE href="http://www.opennebula.org/compute/32">
        <ID>32</ID>
        <NAME>Web Server</NAME>
        <INSTANCE_TYPE>small</INSTANCE_TYPE>
        <STATE>running</STATE>
        <DISK>
            <STORAGE href="http://www.opennebula.org/storage/34"/>
            <TYPE>OS</TYPE>
            <TARGET>hda</TARGET>
            ...
        </DISK>
        <DISK>
            <STORAGE href="http://www.opennebula.org/storage/24"/>
            <TYPE>CDROM</TYPE>
            <TARGET>hdc</TARGET>
            ...
        </DISK>
        ...
        <NIC>
            <NETWORK href="http://www.opennebula.org/network/12"/>
            <MAC>00:ff:72:31:23:17</MAC>
            <IP>192.168.0.12</IP>
            ...
        </NIC>
        <NIC>
            <NETWORK href="http://www.opennebula.org/network/10"/>
            <MAC>00:ff:72:17:20:27</MAC>
            <IP>192.168.0.25</IP>
            ...
        </NIC>
        ...
    </COMPUTE>

Authentication & Authorization

User authentication will be HTTP Basic access authentication to comply with REST philosophy. Authorization will be handled by OpenNebula's user management module, that currently works as:

HTTP Headers

The following headers are compulsory:

Uploading images needs HTTP multi part support, and also the following header

Return Codes

The OpenNebula Cloud API uses the following subset of HTTP Status codes:

The methods specified below are described without taking into account 4xx (can be inferred from authorization information in section above) and 5xx errors (which are method independent). HTTP verbs not defined for a particular entity will return a 501 Not Implemented.

Pool Resource Methods

Computes

Networks

Storage

All the above resources share the same HTTP verb semantics:

Method Meaning / Entity Body Response
GET Request for the contents of the pool200 OK: An XML representation of the pool in the http body
POST Request for the creation of an ER. An XML representation of a VM without the ID element should be passed in the http body 201 Created: An XML representation of a ER of type COMPUTE with the ID

Entity Resource Methods

Network

Method Meaning / Entity Body Response
GET Request the representation of the network resource identified by <net_id>200 OK : An XML representation of the network in the http body
DELETE Deletes the Network resource identified by <net-id> 204 No Content: The Network has been successfully deleted

Storage

Method Meaning / Entity Body Response
GET Request the representation of the image resource identified by <storage_id>200 OK : An XML representation of the image in the http body
DELETE Deletes the Image resource identified by <storage_id>204 No Content : The image has been successfully deleted

Compute

Method Meaning / Entity Body Response
GET Request the representation of the Compute resource identified by <compute_id>200 OK : An XML representation of the Compute in the http body
PUT Update request for a Compute identified by <compute_id> 202 Accepted : The update request is being process, polling required to confirm update
DELETE Deletes the Compute resource identified by <compute_id>204 No Content : The Compute has been successfully deleted

Implementation Notes

Authentication

It is recommended that the server-client communication is performed over HTTPS to avoid sending user authentication information in plain text.

Notifications

HTTP protocol does not provide means for notification, so this API relies on asynchronous polling to find whether a VM update is successful or not.