Return-Path: X-Original-To: apmail-libcloud-commits-archive@www.apache.org Delivered-To: apmail-libcloud-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A3AC8DCB0 for ; Mon, 16 Jul 2012 01:48:29 +0000 (UTC) Received: (qmail 11514 invoked by uid 500); 16 Jul 2012 01:48:29 -0000 Delivered-To: apmail-libcloud-commits-archive@libcloud.apache.org Received: (qmail 11457 invoked by uid 500); 16 Jul 2012 01:48:29 -0000 Mailing-List: contact commits-help@libcloud.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@libcloud.apache.org Delivered-To: mailing list commits@libcloud.apache.org Received: (qmail 11442 invoked by uid 99); 16 Jul 2012 01:48:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Jul 2012 01:48:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Jul 2012 01:47:59 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 54A1F2388BEC; Mon, 16 Jul 2012 01:46:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1361872 [2/25] - /libcloud/site/trunk/content/apidocs/0.5.2/ Date: Mon, 16 Jul 2012 01:45:49 -0000 To: commits@libcloud.apache.org From: tomaz@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120716014606.54A1F2388BEC@eris.apache.org> Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.__init__.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.__init__.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.__init__.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.__init__.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,103 @@ + + + + libcloud.__init__ : API documentation + + + + + + +

l.__init__ : module documentation

+

+ Part of libcloud + View Source + +

+
+ +
+
libcloud provides a unified interface to the cloud computing +resources.
+ + + +
+ + + + + + + + + + + + + + + + + +
Functionenable_debugEnable library wide debugging to a file-like object.
Function_init_onceUtility function that is ran once on Library import.
+ + +
+ + + + +
+ + + + + + +
+ + def + enable_debug(fo): + + + (source) + +
+
+ +
Enable library wide debugging to a file-like object.
ParametersfoWhere to append debugging information (type: File like object, only write operations are used.)
+
+
+ + + + + + +
+ + def + _init_once(): + + + (source) + +
+
+ +
Utility function that is ran once on Library import.

+

This checks for the LIBCLOUD_DEBUG enviroment variable, which if it +exists is where we will log debug information about the provider +transports.

+

If LIBCLOUD_DEBUG is not a path, /tmp/libcloud_debug.log is +used by default.

+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.LoggingConnection.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.LoggingConnection.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.LoggingConnection.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.LoggingConnection.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,117 @@ + + + + libcloud.base.LoggingConnection : API documentation + + + + + + +

l.b.LoggingConnection : class documentation

+

+ Part of libcloud.base + View Source + View In Hierarchy +

+ +
Debug class to log all HTTP(s) requests as they could be made with the +curl command.
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + +
Class Variablelogfile-like object that logs entries are written to.
Method_log_responseUndocumented
Method_log_curlUndocumented
+ + +
+ + + + +
+ + + + + + +
+ log = +
+
+ file-like object that logs entries are written to. +
+
+ + + + + + +
+ + def + _log_response(self, r): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + _log_curl(self, method, url, body, headers): + + + (source) + +
+
+ +
Undocumented
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.LoggingHTTPConnection.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.LoggingHTTPConnection.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.LoggingHTTPConnection.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.LoggingHTTPConnection.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,125 @@ + + + + libcloud.base.LoggingHTTPConnection : API documentation + + + + + + +

l.b.LoggingHTTPConnection(LoggingConnection, LibcloudHTTPConnection) : class documentation

+

+ Part of libcloud.base + View Source + View In Hierarchy +

+
+ +
+
Utility Class for logging HTTP connections
+ + + +
+ + + + + + + + + + + + + + + + + +
MethodgetresponseUndocumented
MethodrequestUndocumented
+ +

+ Inherited from LoggingConnection: +

+ + + + + + + + + + + + + + + + + + + + + + + +
Class Variablelogfile-like object that logs entries are written to.
Method_log_responseUndocumented
Method_log_curlUndocumented
+ + +
+ + + + +
+ + + + + + +
+ + def + getresponse(self): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + request(self, method, url, body=None, headers=None): + + + (source) + +
+
+ +
Undocumented
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.LoggingHTTPSConnection.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.LoggingHTTPSConnection.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.LoggingHTTPSConnection.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.LoggingHTTPSConnection.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,177 @@ + + + + libcloud.base.LoggingHTTPSConnection : API documentation + + + + + + +

l.b.LoggingHTTPSConnection(LoggingConnection, LibcloudHTTPSConnection) : class documentation

+

+ Part of libcloud.base + View Source + View In Hierarchy +

+
+ +
+
Utility Class for logging HTTPS connections
+ + + +
+ + + + + + + + + + + + + + + + + +
MethodgetresponseUndocumented
MethodrequestUndocumented
+ +

+ Inherited from LoggingConnection: +

+ + + + + + + + + + + + + + + + + + + + + + + +
Class Variablelogfile-like object that logs entries are written to.
Method_log_responseUndocumented
Method_log_curlUndocumented
+ +

+ Inherited from LibcloudHTTPSConnection: +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method__init__Constructor
MethodconnectConnect
Method_setup_verifySetup Verify SSL or not
Method_setup_ca_certSetup CA Certs
Method_verify_hostnameVerify hostname against peer cert
Method_get_subject_alt_namesGet SubjectAltNames
Method_get_common_nameGet Common Name
+ + +
+ + + + +
+ + + + + + +
+ + def + getresponse(self): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + request(self, method, url, body=None, headers=None): + + + (source) + +
+
+ +
Undocumented
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.RawResponse.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.RawResponse.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.RawResponse.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.RawResponse.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,203 @@ + + + + libcloud.base.RawResponse : API documentation + + + + + + +

l.b.RawResponse(Response) : class documentation

+

+ Part of libcloud.base + View Source + View In Hierarchy +

+ +
Undocumented
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method__init__Undocumented
MethodresponseUndocumented
MethodstatusUndocumented
MethodheadersUndocumented
MethodreasonUndocumented
+ +

+ Inherited from Response: +

+ + + + + + + + + + + + + + + + + + + + + + + +
Methodparse_bodyParse response body.
Methodparse_errorParse the error messages.
MethodsuccessDetermine if our request was successful.
+ + +
+ + + + +
+ + + + + + +
+ + def + __init__(self, response=None): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ @property
+ def + response(self): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ @property
+ def + status(self): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ @property
+ def + headers(self): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ @property
+ def + reason(self): + + + (source) + +
+
+ +
Undocumented
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.Response.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.Response.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.Response.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.Response.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,153 @@ + + + + libcloud.base.Response : API documentation + + + + + + +

l.b.Response(object) : class documentation

+

+ Part of libcloud.base + View Source + View In Hierarchy +

+ +
A Base Response class to derive from.
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method__init__Undocumented
Methodparse_bodyParse response body.
Methodparse_errorParse the error messages.
MethodsuccessDetermine if our request was successful.
+ + +
+ + + + +
+ + + + + + +
+ + def + __init__(self, response): + + + (source) + +
+ +
+ + + + + + +
+ + def + parse_body(self): + + + (source) + +
+
+ +
Parse response body.

+

Override in a provider's subclass.
ReturnsParsed body.

+
+
+ + + + + + +
+ + def + parse_error(self): + + + (source) + +
+
+ +
Parse the error messages.

+

Override in a provider's subclass.
ReturnsParsed error.

+
+
+ + + + + + +
+ + def + success(self): + + + (source) + +
+
+ +
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?
ReturnsTrue or False

+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.base.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,104 @@ + + + + libcloud.base : API documentation + + + + + + +

l.base : module documentation

+

+ Part of libcloud + View Source + +

+
+ +
+
No module docstring
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ClassRawResponseUndocumented
ClassResponseA Base Response class to derive from.
ClassLoggingConnectionDebug class to log all HTTP(s) requests as they could be made with the +curl command.
ClassLoggingHTTPSConnectionUtility Class for logging HTTPS connections
ClassLoggingHTTPConnectionUtility Class for logging HTTP connections
Functionis_private_subnetUtility function to check if an IP address is inside a private +subnet.
+ + +
+ + + + +
+ + + + + + +
+ + def + is_private_subnet(ip): + + + (source) + +
+
+ +
Utility function to check if an IP address is inside a private +subnet.
ParametersipIP address to check (type: str)
Returnsbool if the specified IP address is private.
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.__init__.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.__init__.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.__init__.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.__init__.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,40 @@ + + + + libcloud.common.__init__ : API documentation + + + + + + +

l.c.__init__ : module documentation

+

+ Part of libcloud.common + View Source + +

+
+ +
+
Undocumented
+ + + +
+ + + +
+ + + + + +
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.aws.AWSBaseResponse.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.aws.AWSBaseResponse.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.aws.AWSBaseResponse.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.aws.AWSBaseResponse.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,71 @@ + + + + libcloud.common.aws.AWSBaseResponse : API documentation + + + + + + +

l.c.a.AWSBaseResponse(Response) : class documentation

+

+ Part of libcloud.common.aws + View Source + View In Hierarchy +

+ +
Undocumented
+ + + +
+ + + + + + + + + + + +
Methodparse_bodyUndocumented
+ + +
+ + + + +
+ + + + + + +
+ + def + parse_body(self): + + + (source) + +
+
+ +
Undocumented
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.aws.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.aws.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.aws.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.aws.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,51 @@ + + + + libcloud.common.aws : API documentation + + + + + + +

l.c.aws : module documentation

+

+ Part of libcloud.common + View Source + +

+
+ +
+
Undocumented
+ + + +
+ + + + + + + + + + + +
ClassAWSBaseResponseUndocumented
+ + +
+ + + + + +
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.base.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.base.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.base.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.base.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,40 @@ + + + + libcloud.common.base : API documentation + + + + + + +

l.c.base : module documentation

+

+ Part of libcloud.common + View Source + +

+
+ +
+
Undocumented
+ + + +
+ + + +
+ + + + + +
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.BaseGoGridDriver.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.BaseGoGridDriver.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.BaseGoGridDriver.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.BaseGoGridDriver.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,233 @@ + + + + libcloud.common.gogrid.BaseGoGridDriver : API documentation + + + + + + +

l.c.g.BaseGoGridDriver(object) : class documentation

+

+ Part of libcloud.common.gogrid + View Source + View In Hierarchy +

+ +
GoGrid has common object model for services they provide, like locations +and IP, so keep handling of these things in a single place.
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methodex_list_ipsReturn list of IP addresses assigned to the account.
Method_get_ipUndocumented
Method_to_ipUndocumented
Method_to_ipsUndocumented
Method_to_locationUndocumented
Method_to_locationsUndocumented
Method_get_first_ipUndocumented
+ + +
+ + + + +
+ + + + + + +
+ + def + _get_ip(self, element): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + _to_ip(self, element): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + _to_ips(self, object): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + _to_location(self, element): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + _to_locations(self, object): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + ex_list_ips(self, **kwargs): + + + (source) + +
+
+ +
Return list of IP addresses assigned to the account.
Parameterspublicset 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: bool)
assignedset 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: bool)
locationfilter IP addresses by location (type: NodeLocation)
Returnslist of GoGridIpAddresses
+
+
+ + + + + + +
+ + def + _get_first_ip(self, location=None): + + + (source) + +
+
+ +
Undocumented
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.GoGridConnection.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.GoGridConnection.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.GoGridConnection.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.GoGridConnection.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,97 @@ + + + + libcloud.common.gogrid.GoGridConnection : API documentation + + + + + + +

l.c.g.GoGridConnection(ConnectionUserAndKey) : class documentation

+

+ Part of libcloud.common.gogrid + View Source + View In Hierarchy +

+ +
Connection class for the GoGrid driver
+ + + +
+ + + + + + + + + + + + + + + + + +
Methodadd_default_paramsUndocumented
Methodget_signaturecreate sig from md5 of key + secret + time
+ + +
+ + + + +
+ + + + + + +
+ + def + add_default_params(self, params): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + get_signature(self, key, secret): + + + (source) + +
+
+ +
create sig from md5 of key + secret + time
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.GoGridIpAddress.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.GoGridIpAddress.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.GoGridIpAddress.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.GoGridIpAddress.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,71 @@ + + + + libcloud.common.gogrid.GoGridIpAddress : API documentation + + + + + + +

l.c.g.GoGridIpAddress(object) : class documentation

+

+ Part of libcloud.common.gogrid + View Source + View In Hierarchy +

+
+ +
+
IP Address
+ + + +
+ + + + + + + + + + + +
Method__init__Undocumented
+ + +
+ + + + +
+ + + + + + +
+ + def + __init__(self, id, ip, public, state, subnet): + + + (source) + +
+
+ +
Undocumented
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.GoGridResponse.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.GoGridResponse.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.GoGridResponse.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.GoGridResponse.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,149 @@ + + + + libcloud.common.gogrid.GoGridResponse : API documentation + + + + + + +

l.c.g.GoGridResponse(Response) : class documentation

+

+ Part of libcloud.common.gogrid + View Source + View In Hierarchy +

+ +
Undocumented
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method__init__Undocumented
MethodsuccessUndocumented
Methodparse_bodyUndocumented
Methodparse_errorUndocumented
+ + +
+ + + + +
+ + + + + + +
+ + def + __init__(self, *args, **kwargs): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + success(self): + + + (source) + +
+ +
+ + + + + + +
+ + def + parse_body(self): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + parse_error(self): + + + (source) + +
+
+ +
Undocumented
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.gogrid.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,70 @@ + + + + libcloud.common.gogrid : API documentation + + + + + + +

l.c.gogrid : module documentation

+

+ Part of libcloud.common + View Source + +

+
+ +
+
No module docstring
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ClassGoGridResponseUndocumented
ClassGoGridConnectionConnection class for the GoGrid driver
ClassGoGridIpAddressIP Address
ClassBaseGoGridDriverGoGrid has common object model for services they provide, like locations +and IP, so keep handling of these things in a single place.
+ + +
+ + + + + +
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,75 @@ + + + + libcloud.common : API documentation + + + + + + +

l.common : package documentation

+

+ Part of libcloud + View Source + +

+
+ +
+
No package docstring
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ModuleawsUndocumented
ModulebaseUndocumented
ModulegogridNo module docstring; 3/4 classes documented
ModulerackspaceCommon utilities for Rackspace Cloud Servers and Cloud Files
ModuletypesNo module docstring; 3/4 classes documented
+ + +
+ + + + + +
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.rackspace.RackspaceBaseConnection.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.rackspace.RackspaceBaseConnection.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.rackspace.RackspaceBaseConnection.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.rackspace.RackspaceBaseConnection.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,231 @@ + + + + libcloud.common.rackspace.RackspaceBaseConnection : API documentation + + + + + + +

l.c.r.RackspaceBaseConnection(ConnectionUserAndKey) : class documentation

+

+ Part of libcloud.common.rackspace + View Source + View In Hierarchy +

+ +
No class docstring
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method__init__Undocumented
Methodadd_default_headersUndocumented
Methodrequest_pathUndocumented
MethodhostUndocumented
Method_get_request_pathUndocumented
Method_get_hostUndocumented
Method_populate_hosts_and_request_pathsRackspace uses a separate host for API calls which is only provided +after an initial authentication request. If we haven't made that request +yet, do it here. Otherwise, just return the management host.
+ + +
+ + + + +
+ + + + + + +
+ + def + add_default_headers(self, headers): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ @property
+ def + request_path(self): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ @property
+ def + host(self): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + _get_request_path(self, url_key): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + _get_host(self, url_key): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + _populate_hosts_and_request_paths(self): + + + (source) + +
+
+ +
Rackspace uses a separate host for API calls which is only provided +after an initial authentication request. If we haven't made that request +yet, do it here. Otherwise, just return the management host.
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.rackspace.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.rackspace.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.rackspace.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.rackspace.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,51 @@ + + + + libcloud.common.rackspace : API documentation + + + + + + +

l.c.rackspace : module documentation

+

+ Part of libcloud.common + View Source + +

+
+ +
+
Common utilities for Rackspace Cloud Servers and Cloud Files
+ + + +
+ + + + + + + + + + + +
ClassRackspaceBaseConnectionNo class docstring; 1/7 methods documented
+ + +
+ + + + + +
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.types.InvalidCredsError.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.types.InvalidCredsError.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.types.InvalidCredsError.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.types.InvalidCredsError.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,97 @@ + + + + libcloud.common.types.InvalidCredsError : API documentation + + + + + + +

l.c.t.InvalidCredsError(LibcloudError) : class documentation

+

+ Part of libcloud.common.types + View Source + View In Hierarchy +

+
+ +
+
Exception used when invalid credentials are used on a provider.
+ + + +
+ + + + + + + + + + + + + + + + + +
Method__init__Undocumented
Method__str__Undocumented
+ + +
+ + + + +
+ + + + + + +
+ + def + __init__(self, value='Invalid credentials with the provider', driver=None): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + __str__(self): + + + (source) + +
+
+ +
Undocumented
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file Added: libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.types.LazyList.html URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.types.LazyList.html?rev=1361872&view=auto ============================================================================== --- libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.types.LazyList.html (added) +++ libcloud/site/trunk/content/apidocs/0.5.2/libcloud.common.types.LazyList.html Mon Jul 16 01:45:40 2012 @@ -0,0 +1,201 @@ + + + + libcloud.common.types.LazyList : API documentation + + + + + + +

l.c.t.LazyList(object) : class documentation

+

+ Part of libcloud.common.types + View Source + View In Hierarchy +

+
+ +
+
Undocumented
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method__init__Undocumented
Method__iter__Undocumented
Method__getitem__Undocumented
Method__len__Undocumented
Method__repr__Undocumented
Method_load_allUndocumented
+ + +
+ + + + +
+ + + + + + +
+ + def + __init__(self, get_more, value_dict=None): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + __iter__(self): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + __getitem__(self, index): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + __len__(self): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + __repr__(self): + + + (source) + +
+
+ +
Undocumented
+
+
+ + + + + + +
+ + def + _load_all(self): + + + (source) + +
+
+ +
Undocumented
+
+
+
+ API Documentation for libcloud, generated by pydoctor at 2012-07-15 18:45:14. +
+ + \ No newline at end of file