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 [4/39] - in /libcloud/site/trunk/content/apidocs: ./ 0.9.1/

Added: libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.brightbox.BrightboxResponse.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.brightbox.BrightboxResponse.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.brightbox.BrightboxResponse.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.brightbox.BrightboxResponse.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,158 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.brightbox.BrightboxResponse : 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.b.BrightboxResponse(<a href="libcloud.common.base.JsonResponse.html">JsonResponse</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.brightbox.html">brightbox</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/brightbox.py#L29">View Source</a>
+      <a href="classIndex.html#libcloud.common.brightbox.BrightboxResponse">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">Undocumented</div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id664">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.brightbox.BrightboxResponse.html#success">success</a></td>
+    <td><tt>Determine if our request was successful.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.brightbox.BrightboxResponse.html#parse_body">parse_body</a></td>
+    <td><tt>Parse response body.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.brightbox.BrightboxResponse.html#parse_error">parse_error</a></td>
+    <td><tt>Parse the error messages.</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.Response.html">Response</a> (via <a href="libcloud.common.base.JsonResponse.html">JsonResponse</a>):
+        </p>
+        <table class="children sortable" id="id665">
+  
+  
+<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.common.brightbox.BrightboxResponse.success">
+    
+  </a>
+  <a name="success">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    success(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/brightbox.py#L30" 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>Determine if our request was successful.
+
+The meaning of this can be arbitrary; did we receive OK status? Did
+the node get created? Were we authenticated?
+
+@return: C{True} or C{False}</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.brightbox.BrightboxResponse.parse_body">
+    
+  </a>
+  <a name="parse_body">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    parse_body(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/brightbox.py#L33" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.base.JsonResponse.html#parse_body">libcloud.common.base.JsonResponse.parse_body</a></div>
+    <pre>Parse response body.
+
+Override in a provider's subclass.
+
+@return: Parsed body.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.brightbox.BrightboxResponse.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/common/brightbox.py#L39" 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>Parse the error messages.
+
+Override in a provider's subclass.
+
+@return: Parsed error.</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.common.brightbox.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.brightbox.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.brightbox.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.brightbox.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,57 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.brightbox : 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.brightbox : module documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/brightbox.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">No module docstring</div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id663">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.brightbox.BrightboxResponse.html">BrightboxResponse</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.brightbox.BrightboxConnection.html">BrightboxConnection</a></td>
+    <td><tt>Connection class for the Brightbox driver</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.common.cloudstack.CloudStackConnection.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.cloudstack.CloudStackConnection.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.cloudstack.CloudStackConnection.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.cloudstack.CloudStackConnection.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,447 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.cloudstack.CloudStackConnection : 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.c.CloudStackConnection(<a href="libcloud.compute.base.ConnectionUserAndKey.html">ConnectionUserAndKey</a>, <a href="libcloud.common.base.PollingConnection.html">PollingConnection</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.cloudstack.html">cloudstack</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L32">View Source</a>
+      <a href="classIndex.html#libcloud.common.cloudstack.CloudStackConnection">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">No class docstring</div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id593">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackConnection.html#add_default_params">add_default_params</a></td>
+    <td><tt>Adds default parameters (such as API key, version, etc.) to the passed `params`</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackConnection.html#pre_connect_hook">pre_connect_hook</a></td>
+    <td><tt>A hook which is called before connecting to the remote server. This hook can perform a final manipulation on the params, headers and url parameters.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackConnection.html#get_request_kwargs">get_request_kwargs</a></td>
+    <td><tt>Arguments which are passed to the initial request() call inside async_request.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackConnection.html#get_poll_request_kwargs">get_poll_request_kwargs</a></td>
+    <td><tt>Return keyword arguments which are passed to the request() method when polling for the job status.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackConnection.html#has_completed">has_completed</a></td>
+    <td><tt>Return job completion status.</tt></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackConnection.html#_make_signature">_make_signature</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackConnection.html#_async_request">_async_request</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackConnection.html#_sync_request">_sync_request</a></td>
+    <td><tt>This method handles synchronous calls which are generally fast information retrieval requests and thus return 'quickly'.</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.base.ConnectionUserAndKey.html">ConnectionUserAndKey</a>:
+        </p>
+        <table class="children sortable" id="id594">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.ConnectionUserAndKey.html#__init__">__init__</a></td>
+    <td><tt>Initialize `user_id` and `key`; set `secure` to an C{int} based on passed value.</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.Connection.html">Connection</a> (via <a href="libcloud.compute.base.ConnectionUserAndKey.html">ConnectionUserAndKey</a>, <a href="libcloud.compute.base.ConnectionKey.html">ConnectionKey</a>):
+        </p>
+        <table class="children sortable" id="id595">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#set_context">set_context</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#connect">connect</a></td>
+    <td><tt>Establish a connection with the API server.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#user_agent_append">user_agent_append</a></td>
+    <td><tt>Append a token to a user agent string.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#request">request</a></td>
+    <td><tt>Request a given `action`.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#morph_action_hook">morph_action_hook</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#add_default_headers">add_default_headers</a></td>
+    <td><tt>Adds default headers (such as Authorization, X-Foo-Bar) to the passed `headers`</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#encode_data">encode_data</a></td>
+    <td><tt>Encode body data.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#_tuple_from_url">_tuple_from_url</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#_user_agent">_user_agent</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.PollingConnection.html">PollingConnection</a>:
+        </p>
+        <table class="children sortable" id="id596">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.PollingConnection.html#async_request">async_request</a></td>
+    <td><span class="undocumented">No summary</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.Connection.html">Connection</a> (via <a href="libcloud.common.base.PollingConnection.html">PollingConnection</a>):
+        </p>
+        <table class="children sortable" id="id597">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#set_context">set_context</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#connect">connect</a></td>
+    <td><tt>Establish a connection with the API server.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#user_agent_append">user_agent_append</a></td>
+    <td><tt>Append a token to a user agent string.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#request">request</a></td>
+    <td><tt>Request a given `action`.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#morph_action_hook">morph_action_hook</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#add_default_headers">add_default_headers</a></td>
+    <td><tt>Adds default headers (such as Authorization, X-Foo-Bar) to the passed `headers`</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#encode_data">encode_data</a></td>
+    <td><tt>Encode body data.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#_tuple_from_url">_tuple_from_url</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#_user_agent">_user_agent</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.cloudstack.CloudStackConnection._make_signature">
+    
+  </a>
+  <a name="_make_signature">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _make_signature(self, params):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L42" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.cloudstack.CloudStackConnection.add_default_params">
+    
+  </a>
+  <a name="add_default_params">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    add_default_params(self, params):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L51" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.base.Connection.html#add_default_params">libcloud.common.base.Connection.add_default_params</a></div>
+    <pre>Adds default parameters (such as API key, version, etc.)
+to the passed `params`
+
+Should return a dictionary.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.cloudstack.CloudStackConnection.pre_connect_hook">
+    
+  </a>
+  <a name="pre_connect_hook">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    pre_connect_hook(self, params, headers):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L57" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.base.Connection.html#pre_connect_hook">libcloud.common.base.Connection.pre_connect_hook</a></div>
+    <pre>A hook which is called before connecting to the remote server.
+This hook can perform a final manipulation on the params, headers and
+url parameters.
+
+@type params: C{dict}
+@param params: Request parameters.
+
+@type headers: C{dict}
+@param headers: Request headers.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.cloudstack.CloudStackConnection._async_request">
+    
+  </a>
+  <a name="_async_request">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _async_request(self, command, **kwargs):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L62" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.cloudstack.CloudStackConnection.get_request_kwargs">
+    
+  </a>
+  <a name="get_request_kwargs">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    get_request_kwargs(self, action, params=None, data='', headers=None, method='GET', context=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L73" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.base.PollingConnection.html#get_request_kwargs">libcloud.common.base.PollingConnection.get_request_kwargs</a></div>
+    <pre>Arguments which are passed to the initial request() call inside
+async_request.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.cloudstack.CloudStackConnection.get_poll_request_kwargs">
+    
+  </a>
+  <a name="get_poll_request_kwargs">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    get_poll_request_kwargs(self, response, context, request_kwargs):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L77" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.base.PollingConnection.html#get_poll_request_kwargs">libcloud.common.base.PollingConnection.get_poll_request_kwargs</a></div>
+    <pre>Return keyword arguments which are passed to the request() method when
+polling for the job status.
+
+@param response: Response object returned by poll request.
+@type response: C{HTTPResponse}
+
+@param request_kwargs: Kwargs previously used to initiate the
+                          poll request.
+@type response: C{dict}
+
+@return C{dict} Keyword arguments</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.cloudstack.CloudStackConnection.has_completed">
+    
+  </a>
+  <a name="has_completed">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    has_completed(self, response):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L82" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.base.PollingConnection.html#has_completed">libcloud.common.base.PollingConnection.has_completed</a></div>
+    <pre>Return job completion status.
+
+@param response: Response object returned by poll request.
+@type response: C{HTTPResponse}
+
+@return C{bool} True if the job has completed, False otherwise.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.cloudstack.CloudStackConnection._sync_request">
+    
+  </a>
+  <a name="_sync_request">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _sync_request(self, command, **kwargs):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L90" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>This method handles synchronous calls which are generally fast
+information retrieval requests and thus return 'quickly'.</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.common.cloudstack.CloudStackDriverMixIn.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.cloudstack.CloudStackDriverMixIn.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.cloudstack.CloudStackDriverMixIn.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.cloudstack.CloudStackDriverMixIn.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,123 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.cloudstack.CloudStackDriverMixIn : 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.c.CloudStackDriverMixIn(<span title="object">object</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.cloudstack.html">cloudstack</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L106">View Source</a>
+      <a href="classIndex.html#libcloud.common.cloudstack.CloudStackDriverMixIn">View In Hierarchy</a>
+    </p>
+    <div>
+      <p>Known subclasses: <a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html">libcloud.compute.drivers.cloudstack.CloudStackNodeDriver</a>, <a href="libcloud.loadbalancer.drivers.cloudstack.CloudStackLBDriver.html">libcloud.loadbalancer.drivers.cloudstack.CloudStackLBDriver</a></p>
+    </div>
+    <div class="undocumented">Undocumented</div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id598">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackDriverMixIn.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method 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="method 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>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.cloudstack.CloudStackDriverMixIn.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, key, secret=None, secure=True, host=None, port=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L112" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.cloudstack.CloudStackNodeDriver.html">libcloud.compute.drivers.cloudstack.CloudStackNodeDriver</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.cloudstack.CloudStackDriverMixIn._sync_request">
+    
+  </a>
+  <a name="_sync_request">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _sync_request(self, command, **kwargs):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L117" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.cloudstack.CloudStackDriverMixIn._async_request">
+    
+  </a>
+  <a name="_async_request">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _async_request(self, command, **kwargs):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L120" 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.common.cloudstack.CloudStackResponse.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.cloudstack.CloudStackResponse.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.cloudstack.CloudStackResponse.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.cloudstack.CloudStackResponse.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,90 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.cloudstack.CloudStackResponse : 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.c.CloudStackResponse(<a href="libcloud.common.base.JsonResponse.html">JsonResponse</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.cloudstack.html">cloudstack</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py#L28">View Source</a>
+      <a href="classIndex.html#libcloud.common.cloudstack.CloudStackResponse">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">Undocumented</div>
+
+    
+    
+    <div id="splitTables">
+      
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.JsonResponse.html">JsonResponse</a>:
+        </p>
+        <table class="children sortable" id="id591">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.JsonResponse.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.JsonResponse.html">JsonResponse</a>):
+        </p>
+        <table class="children sortable" id="id592">
+  
+  
+<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">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Response.html#parse_error">parse_error</a></td>
+    <td><tt>Parse the error messages.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Response.html#success">success</a></td>
+    <td><tt>Determine if our request was successful.</tt></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>
+    
+    
+    
+
+    
+    <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.common.cloudstack.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.cloudstack.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.cloudstack.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.cloudstack.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,63 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.cloudstack : 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.cloudstack : module documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/cloudstack.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">Undocumented</div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id590">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackResponse.html">CloudStackResponse</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackConnection.html">CloudStackConnection</a></td>
+    <td><span class="undocumented">No class docstring; 1/8 methods documented</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.cloudstack.CloudStackDriverMixIn.html">CloudStackDriverMixIn</a></td>
+    <td><span class="undocumented">Undocumented</span></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.common.gandi.BaseGandiDriver.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.BaseGandiDriver.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.BaseGandiDriver.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.BaseGandiDriver.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,97 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gandi.BaseGandiDriver : 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.g.BaseGandiDriver(<span title="object">object</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.gandi.html">gandi</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L98">View Source</a>
+      <a href="classIndex.html#libcloud.common.gandi.BaseGandiDriver">View In Hierarchy</a>
+    </p>
+    <div>
+      <p>Known subclasses: <a href="libcloud.compute.drivers.gandi.GandiNodeDriver.html">libcloud.compute.drivers.gandi.GandiNodeDriver</a></p>
+    </div>
+    <pre>Gandi base driver</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id620">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.BaseGandiDriver.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.BaseGandiDriver.html#_wait_operation">_wait_operation</a></td>
+    <td><tt>Wait for an operation to succeed</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.gandi.BaseGandiDriver.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, key, secret=None, secure=False):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L106" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gandi.BaseGandiDriver._wait_operation">
+    
+  </a>
+  <a name="_wait_operation">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _wait_operation(self, id, timeout=DEFAULT_TIMEOUT, check_interval=DEFAULT_INTERVAL):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L113" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>Wait for an operation to succeed</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.common.gandi.BaseObject.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.BaseObject.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.BaseObject.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.BaseObject.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,112 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gandi.BaseObject : 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.g.BaseObject(<span title="object">object</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.gandi.html">gandi</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L135">View Source</a>
+      <a href="classIndex.html#libcloud.common.gandi.BaseObject">View In Hierarchy</a>
+    </p>
+    <div>
+      <p>Known subclasses: <a href="libcloud.common.gandi.Disk.html">libcloud.common.gandi.Disk</a>, <a href="libcloud.common.gandi.IPAddress.html">libcloud.common.gandi.IPAddress</a>, <a href="libcloud.common.gandi.NetworkInterface.html">libcloud.common.gandi.NetworkInterface</a></p>
+    </div>
+    <pre>Base class for objects not conventional</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id621">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.BaseObject.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.BaseObject.html#get_uuid">get_uuid</a></td>
+    <td><tt>Unique hash for this object</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.gandi.BaseObject.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, id, state, driver):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L140" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.common.gandi.Disk.html">libcloud.common.gandi.Disk</a>, <a href="libcloud.common.gandi.IPAddress.html">libcloud.common.gandi.IPAddress</a>, <a href="libcloud.common.gandi.NetworkInterface.html">libcloud.common.gandi.NetworkInterface</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gandi.BaseObject.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/common/gandi.py#L146" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>Unique hash for this object
+
+@return: C{string}
+
+The hash is a function of an SHA1 hash of prefix, the object's ID and
+its driver which means that it should be unique between all
+interfaces.
+TODO : to review
+&gt;&gt;&gt; from libcloud.compute.drivers.dummy import DummyNodeDriver
+&gt;&gt;&gt; driver = DummyNodeDriver(0)
+&gt;&gt;&gt; vif = driver.create_interface()
+&gt;&gt;&gt; vif.get_uuid()
+'d3748461511d8b9b0e0bfa0d4d3383a619a2bb9f'
+
+Note, for example, that this example will always produce the
+same UUID!</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.common.gandi.Disk.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.Disk.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.Disk.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.Disk.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,113 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gandi.Disk : 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.g.Disk(<a href="libcloud.common.gandi.BaseObject.html">BaseObject</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.gandi.html">gandi</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L206">View Source</a>
+      <a href="classIndex.html#libcloud.common.gandi.Disk">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>Gandi disk component</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id626">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.Disk.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.Disk.html#__repr__">__repr__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.gandi.BaseObject.html">BaseObject</a>:
+        </p>
+        <table class="children sortable" id="id627">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.BaseObject.html#get_uuid">get_uuid</a></td>
+    <td><tt>Unique hash for this object</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.gandi.Disk.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, id, state, name, driver, size, extra=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L210" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.gandi.BaseObject.html#__init__">libcloud.common.gandi.BaseObject.__init__</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gandi.Disk.__repr__">
+    
+  </a>
+  <a name="__repr__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __repr__(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L216" 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.common.gandi.GandiConnection.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiConnection.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiConnection.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiConnection.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,168 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gandi.GandiConnection : 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.g.GandiConnection(<a href="libcloud.compute.base.ConnectionKey.html">ConnectionKey</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.gandi.html">gandi</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L72">View Source</a>
+      <a href="classIndex.html#libcloud.common.gandi.GandiConnection">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>Connection class for the Gandi driver</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id618">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.GandiConnection.html#__init__">__init__</a></td>
+    <td><tt>Initialize `user_id` and `key`; set `secure` to an C{int} based on passed value.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.GandiConnection.html#request">request</a></td>
+    <td><tt>Request xmlrpc method with given args</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.Connection.html">Connection</a> (via <a href="libcloud.compute.base.ConnectionKey.html">ConnectionKey</a>):
+        </p>
+        <table class="children sortable" id="id619">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#set_context">set_context</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#connect">connect</a></td>
+    <td><tt>Establish a connection with the API server.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#user_agent_append">user_agent_append</a></td>
+    <td><tt>Append a token to a user agent string.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#morph_action_hook">morph_action_hook</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#add_default_params">add_default_params</a></td>
+    <td><tt>Adds default parameters (such as API key, version, etc.) to the passed `params`</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#add_default_headers">add_default_headers</a></td>
+    <td><tt>Adds default headers (such as Authorization, X-Foo-Bar) to the passed `headers`</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#pre_connect_hook">pre_connect_hook</a></td>
+    <td><tt>A hook which is called before connecting to the remote server. This hook can perform a final manipulation on the params, headers and url parameters.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#encode_data">encode_data</a></td>
+    <td><tt>Encode body data.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#_tuple_from_url">_tuple_from_url</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Connection.html#_user_agent">_user_agent</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.gandi.GandiConnection.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, key, password=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L79" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.ConnectionKey.html#__init__">libcloud.common.base.ConnectionKey.__init__</a></div>
+    <pre>Initialize `user_id` and `key`; set `secure` to an C{int} based on
+passed value.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gandi.GandiConnection.request">
+    
+  </a>
+  <a name="request">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    request(self, method, *args):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L89" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.base.Connection.html#request">libcloud.common.base.Connection.request</a></div>
+    <pre>Request xmlrpc method with given args</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.common.gandi.GandiException.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiException.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiException.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiException.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,97 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gandi.GandiException : 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.g.GandiException(<span title="Exception">Exception</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.gandi.html">gandi</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L35">View Source</a>
+      <a href="classIndex.html#libcloud.common.gandi.GandiException">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>Exception class for Gandi driver</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id616">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.GandiException.html#__str__">__str__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.GandiException.html#__repr__">__repr__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.gandi.GandiException.__str__">
+    
+  </a>
+  <a name="__str__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __str__(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L39" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gandi.GandiException.__repr__">
+    
+  </a>
+  <a name="__repr__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __repr__(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L42" 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.common.gandi.GandiProxy.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiProxy.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiProxy.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiProxy.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,71 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gandi.GandiProxy : 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.g.GandiProxy(<span title="libcloud.utils.py3.xmlrpclib.ServerProxy">xmlrpclib.ServerProxy</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.gandi.html">gandi</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L54">View Source</a>
+      <a href="classIndex.html#libcloud.common.gandi.GandiProxy">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">Undocumented</div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id617">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.GandiProxy.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.gandi.GandiProxy.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, user_agent, verbose=0):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L57" 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.common.gandi.GandiSafeTransport.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiSafeTransport.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiSafeTransport.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiSafeTransport.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,40 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gandi.GandiSafeTransport : 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.g.GandiSafeTransport(<span title="libcloud.utils.py3.xmlrpclib.SafeTransport">xmlrpclib.SafeTransport</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.gandi.html">gandi</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L46">View Source</a>
+      <a href="classIndex.html#libcloud.common.gandi.GandiSafeTransport">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">Undocumented</div>
+
+    
+    
+    <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.common.gandi.GandiTransport.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiTransport.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiTransport.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.GandiTransport.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,40 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gandi.GandiTransport : 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.g.GandiTransport(<span title="libcloud.utils.py3.xmlrpclib.Transport">xmlrpclib.Transport</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.gandi.html">gandi</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L50">View Source</a>
+      <a href="classIndex.html#libcloud.common.gandi.GandiTransport">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">Undocumented</div>
+
+    
+    
+    <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.common.gandi.IPAddress.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.IPAddress.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.IPAddress.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.IPAddress.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,113 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gandi.IPAddress : 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.g.IPAddress(<a href="libcloud.common.gandi.BaseObject.html">BaseObject</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.gandi.html">gandi</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L168">View Source</a>
+      <a href="classIndex.html#libcloud.common.gandi.IPAddress">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>Provide a common interface for ip addresses</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id622">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.IPAddress.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.IPAddress.html#__repr__">__repr__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.gandi.BaseObject.html">BaseObject</a>:
+        </p>
+        <table class="children sortable" id="id623">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.BaseObject.html#get_uuid">get_uuid</a></td>
+    <td><tt>Unique hash for this object</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.gandi.IPAddress.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, id, state, inet, driver, version=4, extra=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L175" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.gandi.BaseObject.html#__init__">libcloud.common.gandi.BaseObject.__init__</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gandi.IPAddress.__repr__">
+    
+  </a>
+  <a name="__repr__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __repr__(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L181" 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.common.gandi.NetworkInterface.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.NetworkInterface.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.NetworkInterface.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.NetworkInterface.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,113 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gandi.NetworkInterface : 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.g.NetworkInterface(<a href="libcloud.common.gandi.BaseObject.html">BaseObject</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.gandi.html">gandi</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L186">View Source</a>
+      <a href="classIndex.html#libcloud.common.gandi.NetworkInterface">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>Provide a common interface for network interfaces</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id624">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.NetworkInterface.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.NetworkInterface.html#__repr__">__repr__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.gandi.BaseObject.html">BaseObject</a>:
+        </p>
+        <table class="children sortable" id="id625">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gandi.BaseObject.html#get_uuid">get_uuid</a></td>
+    <td><tt>Unique hash for this object</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.gandi.NetworkInterface.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, id, state, mac_address, driver, ips=None, node_id=None, extra=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L193" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.gandi.BaseObject.html#__init__">libcloud.common.gandi.BaseObject.__init__</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gandi.NetworkInterface.__repr__">
+    
+  </a>
+  <a name="__repr__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __repr__(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py#L201" 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.common.gandi.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gandi.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,105 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gandi : 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.gandi : module documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gandi.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <pre>Gandi driver base classes</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id615">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.gandi.GandiException.html">GandiException</a></td>
+    <td><tt>Exception class for Gandi driver</tt></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.gandi.GandiSafeTransport.html">GandiSafeTransport</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.gandi.GandiTransport.html">GandiTransport</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.gandi.GandiProxy.html">GandiProxy</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.gandi.GandiConnection.html">GandiConnection</a></td>
+    <td><tt>Connection class for the Gandi driver</tt></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.gandi.BaseGandiDriver.html">BaseGandiDriver</a></td>
+    <td><tt>Gandi base driver</tt></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.gandi.BaseObject.html">BaseObject</a></td>
+    <td><tt>Base class for objects not conventional</tt></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.gandi.IPAddress.html">IPAddress</a></td>
+    <td><tt>Provide a common interface for ip addresses</tt></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.gandi.NetworkInterface.html">NetworkInterface</a></td>
+    <td><tt>Provide a common interface for network interfaces</tt></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.common.gandi.Disk.html">Disk</a></td>
+    <td><tt>Gandi disk component</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.common.gogrid.BaseGoGridDriver.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gogrid.BaseGoGridDriver.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gogrid.BaseGoGridDriver.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gogrid.BaseGoGridDriver.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,244 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gogrid.BaseGoGridDriver : 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.g.BaseGoGridDriver(<span title="object">object</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.gogrid.html">gogrid</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L98">View Source</a>
+      <a href="classIndex.html#libcloud.common.gogrid.BaseGoGridDriver">View In Hierarchy</a>
+    </p>
+    <div>
+      <p>Known subclasses: <a href="libcloud.compute.drivers.gogrid.GoGridNodeDriver.html">libcloud.compute.drivers.gogrid.GoGridNodeDriver</a>, <a href="libcloud.loadbalancer.drivers.gogrid.GoGridLBDriver.html">libcloud.loadbalancer.drivers.gogrid.GoGridLBDriver</a></p>
+    </div>
+    <pre>GoGrid has common object model for services they
+provide, like locations and IP, so keep handling of
+these things in a single place.</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id662">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gogrid.BaseGoGridDriver.html#ex_list_ips">ex_list_ips</a></td>
+    <td><tt>Return list of IP addresses assigned to the account.</tt></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gogrid.BaseGoGridDriver.html#_get_ip">_get_ip</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gogrid.BaseGoGridDriver.html#_to_ip">_to_ip</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gogrid.BaseGoGridDriver.html#_to_ips">_to_ips</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gogrid.BaseGoGridDriver.html#_to_location">_to_location</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gogrid.BaseGoGridDriver.html#_to_locations">_to_locations</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gogrid.BaseGoGridDriver.html#_get_first_ip">_get_first_ip</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.gogrid.BaseGoGridDriver._get_ip">
+    
+  </a>
+  <a name="_get_ip">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _get_ip(self, element):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L105" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.gogrid.GoGridNodeDriver.html">libcloud.compute.drivers.gogrid.GoGridNodeDriver</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gogrid.BaseGoGridDriver._to_ip">
+    
+  </a>
+  <a name="_to_ip">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_ip(self, element):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L108" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gogrid.BaseGoGridDriver._to_ips">
+    
+  </a>
+  <a name="_to_ips">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_ips(self, object):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L117" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gogrid.BaseGoGridDriver._to_location">
+    
+  </a>
+  <a name="_to_location">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_location(self, element):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L121" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.gogrid.GoGridNodeDriver.html">libcloud.compute.drivers.gogrid.GoGridNodeDriver</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gogrid.BaseGoGridDriver._to_locations">
+    
+  </a>
+  <a name="_to_locations">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_locations(self, object):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L128" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.gogrid.GoGridNodeDriver.html">libcloud.compute.drivers.gogrid.GoGridNodeDriver</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gogrid.BaseGoGridDriver.ex_list_ips">
+    
+  </a>
+  <a name="ex_list_ips">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    ex_list_ips(self, **kwargs):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L132" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.gogrid.GoGridNodeDriver.html">libcloud.compute.drivers.gogrid.GoGridNodeDriver</a></div>
+    <pre>Return list of IP addresses assigned to
+the account.
+
+@keyword    public: set to True to list only
+            public IPs or False to list only
+            private IPs. Set to None or not specify
+            at all not to filter by type
+@type       public: C{bool}
+@keyword    assigned: set to True to list only addresses
+            assigned to servers, False to list unassigned
+            addresses and set to None or don't set at all
+            not no filter by state
+@type       assigned: C{bool}
+@keyword    location: filter IP addresses by location
+@type       location: L{NodeLocation}
+@return:    C{list} of L{GoGridIpAddress}es</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gogrid.BaseGoGridDriver._get_first_ip">
+    
+  </a>
+  <a name="_get_first_ip">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _get_first_ip(self, location=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L167" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.gogrid.GoGridNodeDriver.html">libcloud.compute.drivers.gogrid.GoGridNodeDriver</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.common.gogrid.GoGridConnection.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gogrid.GoGridConnection.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gogrid.GoGridConnection.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gogrid.GoGridConnection.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,97 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gogrid.GoGridConnection : 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.g.GoGridConnection(<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.common.html">common</a>.<a href="libcloud.common.gogrid.html">gogrid</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L63">View Source</a>
+      <a href="classIndex.html#libcloud.common.gogrid.GoGridConnection">View In Hierarchy</a>
+    </p>
+    <div>
+      <p>Known subclasses: <a href="libcloud.loadbalancer.drivers.gogrid.GoGridLBConnection.html">libcloud.loadbalancer.drivers.gogrid.GoGridLBConnection</a></p>
+    </div>
+    <pre>Connection class for the GoGrid driver</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id660">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gogrid.GoGridConnection.html#add_default_params">add_default_params</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gogrid.GoGridConnection.html#get_signature">get_signature</a></td>
+    <td><tt>create sig from md5 of key + secret + time</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.gogrid.GoGridConnection.add_default_params">
+    
+  </a>
+  <a name="add_default_params">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    add_default_params(self, params):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L71" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.common.gogrid.GoGridConnection.get_signature">
+    
+  </a>
+  <a name="get_signature">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    get_signature(self, key, secret):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L79" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <pre>create sig from md5 of key + secret + time </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.common.gogrid.GoGridIpAddress.html
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gogrid.GoGridIpAddress.html?rev=1308166&view=auto
==============================================================================
--- libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gogrid.GoGridIpAddress.html (added)
+++ libcloud/site/trunk/content/apidocs/0.9.1/libcloud.common.gogrid.GoGridIpAddress.html Sun Apr  1 18:07:04 2012
@@ -0,0 +1,71 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.common.gogrid.GoGridIpAddress : 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.g.GoGridIpAddress(<span title="object">object</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.common.html">common</a>.<a href="libcloud.common.gogrid.html">gogrid</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L85">View Source</a>
+      <a href="classIndex.html#libcloud.common.gogrid.GoGridIpAddress">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>IP Address</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id661">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.gogrid.GoGridIpAddress.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.common.gogrid.GoGridIpAddress.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, id, ip, public, state, subnet):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/gogrid.py#L90" 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