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 2011/11/09 02:25:45 UTC

svn commit: r1199586 - /libcloud/site/trunk/content/upgrade-notes-0-6.mdtext

Author: tomaz
Date: Wed Nov  9 01:25:44 2011
New Revision: 1199586

URL: http://svn.apache.org/viewvc?rev=1199586&view=rev
Log:
CMS commit to libcloud by tomaz

Modified:
    libcloud/site/trunk/content/upgrade-notes-0-6.mdtext

Modified: libcloud/site/trunk/content/upgrade-notes-0-6.mdtext
URL: http://svn.apache.org/viewvc/libcloud/site/trunk/content/upgrade-notes-0-6.mdtext?rev=1199586&r1=1199585&r2=1199586&view=diff
==============================================================================
--- libcloud/site/trunk/content/upgrade-notes-0-6.mdtext (original)
+++ libcloud/site/trunk/content/upgrade-notes-0-6.mdtext Wed Nov  9 01:25:44 2011
@@ -29,4 +29,15 @@ For example:
     Cls = get_provider(Provider.OPENSTACK)
     driver = Cls('user_name', 'api_key', False, 'host', 8774, api_version='1.0')
 
+* OpenNebula driver now defaults to using OpenNebula 3.0 API
+
+To preserve the old behavior and use OpenNebula 1.4 API, pass
+`api_version='1.4'` keyword argument to the driver constructor.
+
+For example:
+
+    ::python
+    Cls = get_provider(Provider.OPENNEBULA)
+    driver = Cls('key', 'secret', api_version='1.4')
+
 For a whole list of the changes, please refer to the [Changelog](https://svn.apache.org/viewvc/libcloud/tags/0.6.0-beta1/CHANGES?revision=1186097&view=markup).
\ No newline at end of file