You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2012/04/01 20:07:17 UTC

svn commit: r1308166 [16/39] - in /libcloud/site/trunk/content/apidocs: ./ 0.9.1/

Added: libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.linode.LinodeNodeDriver.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.linode.LinodeNodeDriver.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.linode.LinodeNodeDriver.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.linode.LinodeNodeDriver.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,483 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.linode.LinodeNodeDriver : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.c.d.l.LinodeNodeDriver(<a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.linode.html">linode</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py#L54">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.linode.LinodeNodeDriver">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>libcloud driver for the Linode API
+
+Rough mapping of which is which:
+
+    list_nodes              linode.list
+    reboot_node             linode.reboot
+    destroy_node            linode.delete
+    create_node             linode.create, linode.update,
+                            linode.disk.createfromdistribution,
+                            linode.disk.create, linode.config.create,
+                            linode.ip.addprivate, linode.boot
+    list_sizes              avail.linodeplans
+    list_images             avail.distributions
+    list_locations          avail.datacenters
+
+For more information on the Linode API, be sure to read the reference:
+
+    http://www.linode.com/api/</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id256">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.linode.LinodeNodeDriver.html#__init__">__init__</a></td>
+    <td><tt>Instantiate the driver with the given API key</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.linode.LinodeNodeDriver.html#list_nodes">list_nodes</a></td>
+    <td><tt>List all Linodes that the API key can access</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.linode.LinodeNodeDriver.html#reboot_node">reboot_node</a></td>
+    <td><tt>Reboot the given Linode</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.linode.LinodeNodeDriver.html#destroy_node">destroy_node</a></td>
+    <td><tt>Destroy the given Linode</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.linode.LinodeNodeDriver.html#create_node">create_node</a></td>
+    <td><tt>Create a new Linode, deploy a Linux distribution, and boot</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.linode.LinodeNodeDriver.html#list_sizes">list_sizes</a></td>
+    <td><tt>List available Linode plans</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.linode.LinodeNodeDriver.html#list_images">list_images</a></td>
+    <td><tt>List available Linux distributions</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.linode.LinodeNodeDriver.html#list_locations">list_locations</a></td>
+    <td><tt>List available facilities for deployment</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.linode.LinodeNodeDriver.html#linode_set_datacenter">linode_set_datacenter</a></td>
+    <td><tt>Set the default datacenter for Linode creation</tt></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.linode.LinodeNodeDriver.html#_to_nodes">_to_nodes</a></td>
+    <td><tt>Convert returned JSON Linodes into Node instances</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a>:
+        </p>
+        <table class="children sortable" id="id257">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#deploy_node">deploy_node</a></td>
+    <td><tt>Create a new node, and start deployment.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_wait_until_running">_wait_until_running</a></td>
+    <td><tt>Block until node is fully booted and has an IP address assigned.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_ssh_client_connect">_ssh_client_connect</a></td>
+    <td><tt>Try to connect to the remote SSH server. If a connection times out or is refused it is retried up to timeout number of seconds.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_run_deployment_script">_run_deployment_script</a></td>
+    <td><tt>Run the deployment script on the provided node. At this point it is assumed that SSH connection has already been established.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_get_size_price">_get_size_price</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.BaseDriver.html">BaseDriver</a> (via <a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a>):
+        </p>
+        <table class="children sortable" id="id258">
+  
+  
+<tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.BaseDriver.html#_ex_connection_class_kwargs">_ex_connection_class_kwargs</a></td>
+    <td><tt>Return extra connection keyword arguments which are passed to the Connection class constructor.</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.drivers.linode.LinodeNodeDriver.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, key):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py#L79" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#__init__">libcloud.compute.base.NodeDriver.__init__</a></div>
+    <pre>Instantiate the driver with the given API key
+
+@keyword key: the API key to use
+@type key: C{str}</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.linode.LinodeNodeDriver.list_nodes">
+    
+  </a>
+  <a name="list_nodes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_nodes(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py#L98" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#list_nodes">libcloud.compute.base.NodeDriver.list_nodes</a></div>
+    <pre>List all Linodes that the API key can access
+
+This call will return all Linodes that the API key in use has access to.
+If a node is in this list, rebooting will work; however, creation and
+destruction are a separate grant.
+
+@return: C{list} of L{Node} objects that the API key can access</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.linode.LinodeNodeDriver.reboot_node">
+    
+  </a>
+  <a name="reboot_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    reboot_node(self, node):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py#L110" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#reboot_node">libcloud.compute.base.NodeDriver.reboot_node</a></div>
+    <pre>Reboot the given Linode
+
+Will issue a shutdown job followed by a boot job, using the last booted
+configuration.  In most cases, this will be the only configuration.
+
+@keyword node: the Linode to reboot
+@type node: L{Node}</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.linode.LinodeNodeDriver.destroy_node">
+    
+  </a>
+  <a name="destroy_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    destroy_node(self, node):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py#L122" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#destroy_node">libcloud.compute.base.NodeDriver.destroy_node</a></div>
+    <pre>Destroy the given Linode
+
+Will remove the Linode from the account and issue a prorated credit. A
+grant for removing Linodes from the account is required, otherwise this
+method will fail.
+
+In most cases, all disk images must be removed from a Linode before the
+Linode can be removed; however, this call explicitly skips those
+safeguards. There is no going back from this method.
+
+@keyword node: the Linode to destroy
+@type node: L{Node}</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.linode.LinodeNodeDriver.create_node">
+    
+  </a>
+  <a name="create_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    create_node(self, **kwargs):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py#L140" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#create_node">libcloud.compute.base.NodeDriver.create_node</a></div>
+    <pre>Create a new Linode, deploy a Linux distribution, and boot
+
+This call abstracts much of the functionality of provisioning a Linode
+and getting it booted.  A global grant to add Linodes to the account is
+required, as this call will result in a billing charge.
+
+Note that there is a safety valve of 5 Linodes per hour, in order to
+prevent a runaway script from ruining your day.
+
+@keyword name: the name to assign the Linode (mandatory)
+@type name: C{str}
+
+@keyword image: which distribution to deploy on the Linode (mandatory)
+@type image: L{NodeImage}
+
+@keyword size: the plan size to create (mandatory)
+@type size: L{NodeSize}
+
+@keyword auth: an SSH key or root password (mandatory)
+@type auth: L{NodeAuthSSHKey} or L{NodeAuthPassword}
+
+@keyword location: which datacenter to create the Linode in
+@type location: L{NodeLocation}
+
+@keyword ex_swap: size of the swap partition in MB (128)
+@type ex_swap: C{int}
+
+@keyword ex_rsize: size of the root partition in MB (plan size - swap).
+@type ex_rsize: C{int}
+
+@keyword ex_kernel: a kernel ID from avail.kernels (Latest 2.6 Stable).
+@type ex_kernel: C{str}
+
+@keyword ex_payment: one of 1, 12, or 24; subscription length (1)
+@type ex_payment: C{int}
+
+@keyword ex_comment: a small comment for the configuration (libcloud)
+@type ex_comment: C{str}
+
+@keyword ex_private: whether or not to request a private IP (False)
+@type ex_private: C{bool}
+
+@keyword lconfig: what to call the configuration (generated)
+@type lconfig: C{str}
+
+@keyword lroot: what to call the root image (generated)
+@type lroot: C{str}
+
+@keyword lswap: what to call the swap space (generated)
+@type lswap: C{str}
+
+@return: a L{Node} representing the newly-created Linode</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.linode.LinodeNodeDriver.list_sizes">
+    
+  </a>
+  <a name="list_sizes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_sizes(self, location=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py#L364" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#list_sizes">libcloud.compute.base.NodeDriver.list_sizes</a></div>
+    <pre>List available Linode plans
+
+Gets the sizes that can be used for creating a Linode.  Since available
+Linode plans vary per-location, this method can also be passed a
+location to filter the availability.
+
+@keyword location: the facility to retrieve plans in
+@type location: NodeLocation
+
+@return: a C{list} of L{NodeSize}s</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.linode.LinodeNodeDriver.list_images">
+    
+  </a>
+  <a name="list_images">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_images(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py#L385" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#list_images">libcloud.compute.base.NodeDriver.list_images</a></div>
+    <pre>List available Linux distributions
+
+Retrieve all Linux distributions that can be deployed to a Linode.
+
+@return: a C{list} of L{NodeImage}s</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.linode.LinodeNodeDriver.list_locations">
+    
+  </a>
+  <a name="list_locations">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_locations(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py#L403" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#list_locations">libcloud.compute.base.NodeDriver.list_locations</a></div>
+    <pre>List available facilities for deployment
+
+Retrieve all facilities that a Linode can be deployed in.
+
+@return: a C{list} of L{NodeLocation}s</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.linode.LinodeNodeDriver.linode_set_datacenter">
+    
+  </a>
+  <a name="linode_set_datacenter">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    linode_set_datacenter(self, dc):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py#L428" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>Set the default datacenter for Linode creation
+
+Since Linodes must be created in a facility, this function sets the
+default that L{create_node} will use.  If a C{location} keyword is not
+passed to L{create_node}, this method must have already been used.
+
+@keyword dc: the datacenter to create Linodes in unless specified
+@type dc: L{NodeLocation}</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.linode.LinodeNodeDriver._to_nodes">
+    
+  </a>
+  <a name="_to_nodes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_nodes(self, objs):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py#L449" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>Convert returned JSON Linodes into Node instances
+
+@keyword objs: C{list} of JSON dictionaries representing the Linodes
+@type objs: C{list}
+@return: C{list} of L{Node}s</pre>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-04-01 11:04:25.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.linode.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.linode.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.linode.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.linode.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,89 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.linode : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="module">l.c.d.linode : module documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <pre>libcloud driver for the Linode(R) API
+
+This driver implements all libcloud functionality for the Linode API.  Since the
+API is a bit more fine-grained, create_node abstracts a significant amount of
+work (and may take a while to run).
+
+Linode home page                    http://www.linode.com/
+Linode API documentation            http://www.linode.com/api/
+Alternate bindings for reference    http://github.com/tjfontaine/linode-python
+
+Linode(R) is a registered trademark of Linode, LLC.</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id255">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.drivers.linode.LinodeNodeDriver.html">LinodeNodeDriver</a></td>
+    <td><tt>libcloud driver for the Linode API</tt></td>
+  </tr><tr class="function private">
+    
+    
+    <td>Function</td>
+    <td><a href="libcloud.compute.drivers.linode.html#_izip_longest">_izip_longest</a></td>
+    <td><tt>Taken from Python docs</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.drivers.linode._izip_longest">
+    
+  </a>
+  <a name="_izip_longest">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _izip_longest(*args, **kwds):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/linode.py#L498" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>Taken from Python docs
+
+http://docs.python.org/library/itertools.html#itertools.izip</pre>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-04-01 11:04:25.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.ninefold.NinefoldNodeDriver.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.ninefold.NinefoldNodeDriver.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.ninefold.NinefoldNodeDriver.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.ninefold.NinefoldNodeDriver.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,200 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.ninefold.NinefoldNodeDriver : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.c.d.n.NinefoldNodeDriver(<a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html">CloudStackNodeDriver</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.ninefold.html">ninefold</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/ninefold.py#L20">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.ninefold.NinefoldNodeDriver">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>Driver for Ninefold's Compute platform.</pre>
+
+    
+    
+    <div id="splitTables">
+      
+      
+        <p>
+          Inherited from <a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html">CloudStackNodeDriver</a>:
+        </p>
+        <table class="children sortable" id="id436">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html#__init__">__init__</a></td>
+    <td><tt>@keyword    key:    API key or username to used @type       key:    str</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html#list_images">list_images</a></td>
+    <td><tt>List images on a provider</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html#list_locations">list_locations</a></td>
+    <td><tt>List data centers for a provider @return: C{list} of L{NodeLocation} objects</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html#list_nodes">list_nodes</a></td>
+    <td><tt>List all nodes @return: C{list} of L{Node} objects</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html#list_sizes">list_sizes</a></td>
+    <td><tt>List sizes on a provider</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html#create_node">create_node</a></td>
+    <td><tt>Create a new node instance.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html#destroy_node">destroy_node</a></td>
+    <td><tt>Destroy a node.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html#reboot_node">reboot_node</a></td>
+    <td><tt>Reboot a node.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html#ex_allocate_public_ip">ex_allocate_public_ip</a></td>
+    <td><tt>Allocate a public IP and bind it to a node.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html#ex_release_public_ip">ex_release_public_ip</a></td>
+    <td><tt>Release a public IP.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html#ex_add_ip_forwarding_rule">ex_add_ip_forwarding_rule</a></td>
+    <td><tt>Add a NAT/firewall forwarding rule.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html#ex_delete_ip_forwarding_rule">ex_delete_ip_forwarding_rule</a></td>
+    <td><tt>Remove a NAT/firewall forwading rule.</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.cloudstack.CloudStackDriverMixIn.html">CloudStackDriverMixIn</a> (via <a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html">CloudStackNodeDriver</a>):
+        </p>
+        <table class="children sortable" id="id437">
+  
+  
+<tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackDriverMixIn.html#_sync_request">_sync_request</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackDriverMixIn.html#_async_request">_async_request</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a> (via <a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html">CloudStackNodeDriver</a>):
+        </p>
+        <table class="children sortable" id="id438">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#deploy_node">deploy_node</a></td>
+    <td><tt>Create a new node, and start deployment.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_wait_until_running">_wait_until_running</a></td>
+    <td><tt>Block until node is fully booted and has an IP address assigned.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_ssh_client_connect">_ssh_client_connect</a></td>
+    <td><tt>Try to connect to the remote SSH server. If a connection times out or is refused it is retried up to timeout number of seconds.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_run_deployment_script">_run_deployment_script</a></td>
+    <td><tt>Run the deployment script on the provided node. At this point it is assumed that SSH connection has already been established.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_get_size_price">_get_size_price</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.BaseDriver.html">BaseDriver</a> (via <a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html">CloudStackNodeDriver</a>, <a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a>):
+        </p>
+        <table class="children sortable" id="id439">
+  
+  
+<tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.BaseDriver.html#_ex_connection_class_kwargs">_ex_connection_class_kwargs</a></td>
+    <td><tt>Return extra connection keyword arguments which are passed to the Connection class constructor.</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-04-01 11:04:25.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.ninefold.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.ninefold.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.ninefold.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.ninefold.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,51 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.ninefold : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="module">l.c.d.ninefold : module documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/ninefold.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">No module docstring</div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id435">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.drivers.ninefold.NinefoldNodeDriver.html">NinefoldNodeDriver</a></td>
+    <td><tt>Driver for Ninefold's Compute platform.</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-04-01 11:04:25.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.ACTION.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.ACTION.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.ACTION.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.ACTION.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,41 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.opennebula.ACTION : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.c.d.o.ACTION(<span title="object">object</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.opennebula.html">opennebula</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L57">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.opennebula.ACTION">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>All actions, except RESUME, only apply when the VM is in the "Running"
+state.</pre>
+
+    
+    
+    <div id="splitTables">
+      
+      
+      
+    </div>
+    
+    
+    
+
+    
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-04-01 11:04:25.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaConnection.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaConnection.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaConnection.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaConnection.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,80 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.opennebula.OpenNebulaConnection : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.c.d.o.OpenNebulaConnection(<span title="libcloud.common.base.ConnectionUserAndKey">ConnectionUserAndKey</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.opennebula.html">opennebula</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L146">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.opennebula.OpenNebulaConnection">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>Connection class for the OpenNebula.org driver.</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id452">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaConnection.html#add_default_headers">add_default_headers</a></td>
+    <td><tt>Add headers required by the OpenNebula.org OCCI interface.</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaConnection.add_default_headers">
+    
+  </a>
+  <a name="add_default_headers">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    add_default_headers(self, headers):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L156" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>Add headers required by the OpenNebula.org OCCI interface.
+
+Includes adding Basic HTTP Authorization headers for authenticating
+against the OpenNebula.org OCCI interface.
+
+@type  headers: C{dict}
+@param headers: Dictionary containing HTTP headers.
+
+@rtype:  C{dict}
+@return: Dictionary containing updated headers.</pre>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-04-01 11:04:25.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaNetwork.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaNetwork.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaNetwork.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaNetwork.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,159 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.opennebula.OpenNebulaNetwork : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.c.d.o.OpenNebulaNetwork(<span title="object">object</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.opennebula.html">opennebula</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L196">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.opennebula.OpenNebulaNetwork">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>Provide a common interface for handling networks of all types.
+
+Network objects are analogous to physical switches connecting two or
+more physical nodes together. The Network object provides the interface in
+libcloud through which we can manipulate networks in different cloud
+providers in the same way. Network objects don't actually do much directly
+themselves, instead the network driver handles the connection to the
+network.
+
+You don't normally create a network object yourself; instead you use
+a driver and then have that create the network for you.
+
+&gt;&gt;&gt; from libcloud.compute.drivers.dummy import DummyNodeDriver
+&gt;&gt;&gt; driver = DummyNetworkDriver()
+&gt;&gt;&gt; network = driver.create_network()
+&gt;&gt;&gt; network = driver.list_networks()[0]
+&gt;&gt;&gt; network.name
+'dummy-1'</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id455">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNetwork.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNetwork.html#get_uuid">get_uuid</a></td>
+    <td><tt>Unique hash for this network.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNetwork.html#__repr__">__repr__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNetwork.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, id, name, address, size, driver, extra=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L218" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNetwork.get_uuid">
+    
+  </a>
+  <a name="get_uuid">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    get_uuid(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L227" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>Unique hash for this network.
+
+The hash is a function of an SHA1 hash of the network's ID and
+its driver which means that it should be unique between all
+networks. In some subclasses (e.g. GoGrid) there is no ID
+available so the public IP address is used. This means that,
+unlike a properly done system UUID, the same UUID may mean a
+different system install at a different time
+
+&gt;&gt;&gt; from libcloud.network.drivers.dummy import DummyNetworkDriver
+&gt;&gt;&gt; driver = DummyNetworkDriver()
+&gt;&gt;&gt; network = driver.create_network()
+&gt;&gt;&gt; network.get_uuid()
+'d3748461511d8b9b0e0bfa0d4d3383a619a2bb9f'
+
+Note, for example, that this example will always produce the
+same UUID!
+
+@rtype:  C{string}
+@return: Unique identifier for this instance.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNetwork.__repr__">
+    
+  </a>
+  <a name="__repr__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __repr__(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L253" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-04-01 11:04:25.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,671 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.c.d.o.OpenNebulaNodeDriver(<a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.opennebula.html">opennebula</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L260">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver">View In Hierarchy</a>
+    </p>
+    <div>
+      <p>Known subclasses: <a href="libcloud.compute.drivers.opennebula.OpenNebula_1_4_NodeDriver.html">libcloud.compute.drivers.opennebula.OpenNebula_1_4_NodeDriver</a>, <a href="libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver.html">libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver</a></p>
+    </div>
+    <pre>OpenNebula.org node driver.</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id456">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#__new__">__new__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#create_node">create_node</a></td>
+    <td><tt>Create a new OpenNebula node.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#destroy_node">destroy_node</a></td>
+    <td><tt>Destroy a node.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#list_nodes">list_nodes</a></td>
+    <td><tt>List all nodes @return: C{list} of L{Node} objects</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#list_images">list_images</a></td>
+    <td><tt>List images on a provider</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#list_sizes">list_sizes</a></td>
+    <td><tt>Return list of sizes on a provider.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#list_locations">list_locations</a></td>
+    <td><tt>List data centers for a provider @return: C{list} of L{NodeLocation} objects</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#ex_list_networks">ex_list_networks</a></td>
+    <td><tt>List virtual networks on a provider.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#ex_node_action">ex_node_action</a></td>
+    <td><tt>Build action representation and instruct node to commit action.</tt></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_to_images">_to_images</a></td>
+    <td><tt>Request a list of images and convert that list to a list of NodeImage objects.</tt></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_to_image">_to_image</a></td>
+    <td><tt>Take XML object containing an image description and convert to NodeImage object.</tt></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_to_networks">_to_networks</a></td>
+    <td><tt>Request a list of networks and convert that list to a list of OpenNebulaNetwork objects.</tt></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_to_network">_to_network</a></td>
+    <td><tt>Take XML object containing a network description and convert to OpenNebulaNetwork object.</tt></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_to_nodes">_to_nodes</a></td>
+    <td><tt>Request a list of compute nodes and convert that list to a list of Node objects.</tt></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_to_node">_to_node</a></td>
+    <td><tt>Take XML object containing a compute node description and convert to Node object.</tt></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_extract_networks">_extract_networks</a></td>
+    <td><tt>Extract networks from a compute node XML representation.</tt></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_extract_images">_extract_images</a></td>
+    <td><tt>Extract image disks from a compute node XML representation.</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a>:
+        </p>
+        <table class="children sortable" id="id457">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#__init__">__init__</a></td>
+    <td><tt>@keyword    key:    API key or username to used @type       key:    str</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#reboot_node">reboot_node</a></td>
+    <td><tt>Reboot a node.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#deploy_node">deploy_node</a></td>
+    <td><tt>Create a new node, and start deployment.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_wait_until_running">_wait_until_running</a></td>
+    <td><tt>Block until node is fully booted and has an IP address assigned.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_ssh_client_connect">_ssh_client_connect</a></td>
+    <td><tt>Try to connect to the remote SSH server. If a connection times out or is refused it is retried up to timeout number of seconds.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_run_deployment_script">_run_deployment_script</a></td>
+    <td><tt>Run the deployment script on the provided node. At this point it is assumed that SSH connection has already been established.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_get_size_price">_get_size_price</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.BaseDriver.html">BaseDriver</a> (via <a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a>):
+        </p>
+        <table class="children sortable" id="id458">
+  
+  
+<tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.BaseDriver.html#_ex_connection_class_kwargs">_ex_connection_class_kwargs</a></td>
+    <td><tt>Return extra connection keyword arguments which are passed to the Connection class constructor.</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.__new__">
+    
+  </a>
+  <a name="__new__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __new__(cls, key, secret=None, api_version=DEFAULT_API_VERSION, **kwargs):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L279" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.create_node">
+    
+  </a>
+  <a name="create_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    create_node(self, **kwargs):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L296" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#create_node">libcloud.compute.base.NodeDriver.create_node</a></div><div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver.html">libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver</a></div>
+    <pre>Create a new OpenNebula node.
+
+See L{NodeDriver.create_node} for more keyword args.
+@type    networks: L{OpenNebulaNetwork} or C{list}
+                   of L{OpenNebulaNetwork}s
+@keyword networks: List of virtual networks to which this node should
+                   connect. (optional)
+
+@rtype:  L{Node}
+@return: Instance of a newly created node.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.destroy_node">
+    
+  </a>
+  <a name="destroy_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    destroy_node(self, node):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L341" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#destroy_node">libcloud.compute.base.NodeDriver.destroy_node</a></div><div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver.html">libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver</a></div>
+    <pre>Destroy a node.
+
+Depending upon the provider, this may destroy all data associated with
+the node, including backups.
+
+@param node: The node to be destroyed
+@type node: L{Node}
+
+@return: C{bool} True if the destroy was successful, otherwise False</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.list_nodes">
+    
+  </a>
+  <a name="list_nodes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_nodes(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L347" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#list_nodes">libcloud.compute.base.NodeDriver.list_nodes</a></div>
+    <pre>List all nodes
+@return: C{list} of L{Node} objects</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.list_images">
+    
+  </a>
+  <a name="list_images">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_images(self, location=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L350" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#list_images">libcloud.compute.base.NodeDriver.list_images</a></div>
+    <pre>List images on a provider
+
+@keyword location: The location at which to list images
+@type location: L{NodeLocation}
+
+@return: C{list} of L{NodeImage} objects</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.list_sizes">
+    
+  </a>
+  <a name="list_sizes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_sizes(self, location=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L353" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#list_sizes">libcloud.compute.base.NodeDriver.list_sizes</a></div><div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver.html">libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver</a></div>
+    <pre>Return list of sizes on a provider.
+
+See L{NodeDriver.list_sizes} for more args.
+
+@rtype:  C{list} of L{OpenNebulaNodeSize}
+@return: List of compute node sizes supported by the cloud provider.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.list_locations">
+    
+  </a>
+  <a name="list_locations">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_locations(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L386" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#list_locations">libcloud.compute.base.NodeDriver.list_locations</a></div>
+    <pre>List data centers for a provider
+@return: C{list} of L{NodeLocation} objects</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.ex_list_networks">
+    
+  </a>
+  <a name="ex_list_networks">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    ex_list_networks(self, location=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L389" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>List virtual networks on a provider.
+
+@type  location: L{NodeLocation}
+@param location: Location from which to request a list of virtual
+                 networks. (optional)
+
+@rtype:  C{list} of L{OpenNebulaNetwork}
+@return: List of virtual networks available to be connected to a
+         compute node.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.ex_node_action">
+    
+  </a>
+  <a name="ex_node_action">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    ex_node_action(self, node, action):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L403" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>Build action representation and instruct node to commit action.
+
+Build action representation from the compute node ID, and the
+action which should be carried out on that compute node. Then
+instruct the node to carry out that action.
+
+@type  node: L{Node}
+@param node: Compute node instance.
+@type  action: C{str}
+@param action: Action to be carried out on the compute node.
+
+@rtype:  C{bool}
+@return: False if an HTTP Bad Request is received, else, True is
+         returned.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver._to_images">
+    
+  </a>
+  <a name="_to_images">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_images(self, object):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L441" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver.html">libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver</a></div>
+    <pre>Request a list of images and convert that list to a list of NodeImage
+objects.
+
+Request a list of images from the OpenNebula web interface, and
+issue a request to convert each XML object representation of an image
+to a NodeImage object.
+
+@rtype:  C{list} of L{NodeImage}
+@return: List of images.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver._to_image">
+    
+  </a>
+  <a name="_to_image">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_image(self, image):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L462" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver.html">libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver</a></div>
+    <pre>Take XML object containing an image description and convert to
+NodeImage object.
+
+@type  image: L{ElementTree}
+@param image: XML representation of an image.
+
+@rtype:  L{NodeImage}
+@return: The newly extracted L{NodeImage}.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver._to_networks">
+    
+  </a>
+  <a name="_to_networks">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_networks(self, object):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L479" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>Request a list of networks and convert that list to a list of
+OpenNebulaNetwork objects.
+
+Request a list of networks from the OpenNebula web interface, and
+issue a request to convert each XML object representation of a network
+to an OpenNebulaNetwork object.
+
+@rtype:  C{list} of L{OpenNebulaNetwork}
+@return: List of virtual networks.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver._to_network">
+    
+  </a>
+  <a name="_to_network">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_network(self, element):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L500" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.opennebula.OpenNebula_3_0_NodeDriver.html">libcloud.compute.drivers.opennebula.OpenNebula_3_0_NodeDriver</a></div>
+    <pre>Take XML object containing a network description and convert to
+OpenNebulaNetwork object.
+
+Take XML representation containing a network description and
+convert to OpenNebulaNetwork object.
+
+@rtype:  L{OpenNebulaNetwork}
+@return: The newly extracted L{OpenNebulaNetwork}.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver._to_nodes">
+    
+  </a>
+  <a name="_to_nodes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_nodes(self, object):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L517" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>Request a list of compute nodes and convert that list to a list of
+Node objects.
+
+Request a list of compute nodes from the OpenNebula web interface, and
+issue a request to convert each XML object representation of a node
+to a Node object.
+
+@rtype:  C{list} of L{Node}
+@return: A list of compute nodes.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver._to_node">
+    
+  </a>
+  <a name="_to_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_node(self, compute):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L538" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver.html">libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver</a></div>
+    <pre>Take XML object containing a compute node description and convert to
+Node object.
+
+Take XML representation containing a compute node description and
+convert to Node object.
+
+@type  compute: L{ElementTree}
+@param compute: XML representation of a compute node.
+
+@rtype:  L{Node}
+@return: The newly extracted L{Node}.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver._extract_networks">
+    
+  </a>
+  <a name="_extract_networks">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _extract_networks(self, compute):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L565" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver.html">libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver</a></div>
+    <pre>Extract networks from a compute node XML representation.
+
+Extract network descriptions from a compute node XML representation,
+converting each network to an OpenNebulaNetwork object.
+
+@type  compute: L{ElementTree}
+@param compute: XML representation of a compute node.
+
+@rtype:  C{list} of L{OpenNebulaNetwork}s.
+@return: List of virtual networks attached to the compute node.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver._extract_images">
+    
+  </a>
+  <a name="_extract_images">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _extract_images(self, compute):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L591" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver.html">libcloud.compute.drivers.opennebula.OpenNebula_2_0_NodeDriver</a></div>
+    <pre>Extract image disks from a compute node XML representation.
+
+Extract image disk descriptions from a compute node XML representation,
+converting the disks to an NodeImage object.
+
+@type  compute: L{ElementTree}
+@param compute: XML representation of a compute node.
+
+@rtype:  L{NodeImage}.
+@return: First disk attached to a compute node.</pre>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-04-01 11:04:25.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaNodeSize.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaNodeSize.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaNodeSize.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaNodeSize.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,119 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.opennebula.OpenNebulaNodeSize : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.c.d.o.OpenNebulaNodeSize(<a href="libcloud.compute.base.NodeSize.html">NodeSize</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.opennebula.html">opennebula</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L175">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.opennebula.OpenNebulaNodeSize">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>NodeSize class for the OpenNebula.org driver.</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id453">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeSize.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeSize.html#__repr__">__repr__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.base.UuidMixin.html">UuidMixin</a> (via <a href="libcloud.compute.base.NodeSize.html">NodeSize</a>):
+        </p>
+        <table class="children sortable" id="id454">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.UuidMixin.html#get_uuid">get_uuid</a></td>
+    <td><tt>Unique hash for a node, node image, or node size</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.UuidMixin.html#uuid">uuid</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeSize.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, id, name, ram, disk, bandwidth, price, driver, cpu=None, vcpu=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L180" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeSize.html#__init__">libcloud.compute.base.NodeSize.__init__</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaNodeSize.__repr__">
+    
+  </a>
+  <a name="__repr__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __repr__(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L189" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeSize.html#__repr__">libcloud.compute.base.NodeSize.__repr__</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-04-01 11:04:25.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaResponse.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaResponse.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaResponse.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebulaResponse.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,144 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.opennebula.OpenNebulaResponse : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.c.d.o.OpenNebulaResponse(<a href="libcloud.common.base.XmlResponse.html">XmlResponse</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.opennebula.html">opennebula</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L116">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.opennebula.OpenNebulaResponse">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>XmlResponse class for the OpenNebula.org driver.</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id449">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaResponse.html#success">success</a></td>
+    <td><tt>Check if response has the appropriate HTTP response code to be a success.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaResponse.html#parse_error">parse_error</a></td>
+    <td><tt>Check if response contains any errors.</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.XmlResponse.html">XmlResponse</a>:
+        </p>
+        <table class="children sortable" id="id450">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.XmlResponse.html#parse_body">parse_body</a></td>
+    <td><tt>Parse response body.</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.Response.html">Response</a> (via <a href="libcloud.common.base.XmlResponse.html">XmlResponse</a>):
+        </p>
+        <table class="children sortable" id="id451">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Response.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Response.html#_decompress_response">_decompress_response</a></td>
+    <td><tt>Decompress a response body if it is using deflate or gzip encoding.</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaResponse.success">
+    
+  </a>
+  <a name="success">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    success(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L121" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.base.Response.html#success">libcloud.common.base.Response.success</a></div>
+    <pre>Check if response has the appropriate HTTP response code to be a
+success.
+
+@rtype:  C{bool}
+@return: True is success, else False.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.opennebula.OpenNebulaResponse.parse_error">
+    
+  </a>
+  <a name="parse_error">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    parse_error(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L132" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.base.Response.html#parse_error">libcloud.common.base.Response.parse_error</a></div>
+    <pre>Check if response contains any errors.
+
+@raise: L{InvalidCredsError}
+
+@rtype:  C{ElementTree}
+@return: Contents of HTTP response body.</pre>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-04-01 11:04:25.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebula_1_4_NodeDriver.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebula_1_4_NodeDriver.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebula_1_4_NodeDriver.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.compute.drivers.opennebula.OpenNebula_1_4_NodeDriver.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,220 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.opennebula.OpenNebula_1_4_NodeDriver : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.c.d.o.OpenNebula_1_4_NodeDriver(<a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html">OpenNebulaNodeDriver</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.opennebula.html">opennebula</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/opennebula.py#L623">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.opennebula.OpenNebula_1_4_NodeDriver">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>OpenNebula.org node driver for OpenNebula.org v1.4.</pre>
+
+    
+    
+    <div id="splitTables">
+      
+      
+        <p>
+          Inherited from <a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html">OpenNebulaNodeDriver</a>:
+        </p>
+        <table class="children sortable" id="id459">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#__new__">__new__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#create_node">create_node</a></td>
+    <td><tt>Create a new OpenNebula node.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#destroy_node">destroy_node</a></td>
+    <td><tt>Destroy a node.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#list_nodes">list_nodes</a></td>
+    <td><tt>List all nodes @return: C{list} of L{Node} objects</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#list_images">list_images</a></td>
+    <td><tt>List images on a provider</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#list_sizes">list_sizes</a></td>
+    <td><tt>Return list of sizes on a provider.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#list_locations">list_locations</a></td>
+    <td><tt>List data centers for a provider @return: C{list} of L{NodeLocation} objects</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#ex_list_networks">ex_list_networks</a></td>
+    <td><tt>List virtual networks on a provider.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#ex_node_action">ex_node_action</a></td>
+    <td><tt>Build action representation and instruct node to commit action.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_to_images">_to_images</a></td>
+    <td><tt>Request a list of images and convert that list to a list of NodeImage objects.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_to_image">_to_image</a></td>
+    <td><tt>Take XML object containing an image description and convert to NodeImage object.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_to_networks">_to_networks</a></td>
+    <td><tt>Request a list of networks and convert that list to a list of OpenNebulaNetwork objects.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_to_network">_to_network</a></td>
+    <td><tt>Take XML object containing a network description and convert to OpenNebulaNetwork object.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_to_nodes">_to_nodes</a></td>
+    <td><tt>Request a list of compute nodes and convert that list to a list of Node objects.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_to_node">_to_node</a></td>
+    <td><tt>Take XML object containing a compute node description and convert to Node object.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_extract_networks">_extract_networks</a></td>
+    <td><tt>Extract networks from a compute node XML representation.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html#_extract_images">_extract_images</a></td>
+    <td><tt>Extract image disks from a compute node XML representation.</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a> (via <a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html">OpenNebulaNodeDriver</a>):
+        </p>
+        <table class="children sortable" id="id460">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#__init__">__init__</a></td>
+    <td><tt>@keyword    key:    API key or username to used @type       key:    str</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#reboot_node">reboot_node</a></td>
+    <td><tt>Reboot a node.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#deploy_node">deploy_node</a></td>
+    <td><tt>Create a new node, and start deployment.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_wait_until_running">_wait_until_running</a></td>
+    <td><tt>Block until node is fully booted and has an IP address assigned.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_ssh_client_connect">_ssh_client_connect</a></td>
+    <td><tt>Try to connect to the remote SSH server. If a connection times out or is refused it is retried up to timeout number of seconds.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_run_deployment_script">_run_deployment_script</a></td>
+    <td><tt>Run the deployment script on the provided node. At this point it is assumed that SSH connection has already been established.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_get_size_price">_get_size_price</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.BaseDriver.html">BaseDriver</a> (via <a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeDriver.html">OpenNebulaNodeDriver</a>, <a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a>):
+        </p>
+        <table class="children sortable" id="id461">
+  
+  
+<tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.BaseDriver.html#_ex_connection_class_kwargs">_ex_connection_class_kwargs</a></td>
+    <td><tt>Return extra connection keyword arguments which are passed to the Connection class constructor.</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-04-01 11:04:25.
+    </address>
+  </body>
+</html>
\ No newline at end of file