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 2013/02/06 21:23:08 UTC

svn commit: r1443183 - in /libcloud/trunk: CHANGES libcloud/compute/drivers/elastichosts.py

Author: tomaz
Date: Wed Feb  6 20:23:07 2013
New Revision: 1443183

URL: http://svn.apache.org/viewvc?rev=1443183&view=rev
Log:
Add the following new regions to the ElasticHosts driver: sjc-c, syd-v,
hkg-e.

Part of LIBCLOUD-293.

Modified:
    libcloud/trunk/CHANGES
    libcloud/trunk/libcloud/compute/drivers/elastichosts.py

Modified: libcloud/trunk/CHANGES
URL: http://svn.apache.org/viewvc/libcloud/trunk/CHANGES?rev=1443183&r1=1443182&r2=1443183&view=diff
==============================================================================
--- libcloud/trunk/CHANGES (original)
+++ libcloud/trunk/CHANGES Wed Feb  6 20:23:07 2013
@@ -151,6 +151,10 @@ Changes with Apache Libcloud in developm
    - Add ex_destroy_image method to IBM SCE driver. (LIBCLOUD-291)
      [Perry Zou]
 
+   - Add the following new regions to the ElasticHosts driver: sjc-c, syd-v,
+     hkg-e. (LIBCLOUD-293)
+     [Tomaz Muraus]
+
   *) Storage
 
     - Add a new local storage driver.

Modified: libcloud/trunk/libcloud/compute/drivers/elastichosts.py
URL: http://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/elastichosts.py?rev=1443183&r1=1443182&r2=1443183&view=diff
==============================================================================
--- libcloud/trunk/libcloud/compute/drivers/elastichosts.py (original)
+++ libcloud/trunk/libcloud/compute/drivers/elastichosts.py Wed Feb  6 20:23:07 2013
@@ -44,10 +44,25 @@ API_ENDPOINTS = {
         'country': 'United States',
         'host': 'api.lax-p.elastichosts.com'
     },
+    'us-3': {
+        'name': 'San Jose (Silicon Valley)',
+        'country': 'United States',
+        'host': 'api.sjc-c.elastichosts.com'
+    },
     'ca-1': {
         'name': 'Toronto Peer 1',
         'country': 'Canada',
         'host': 'api.tor-p.elastichosts.com'
+    },
+    'au-1': {
+        'name': 'Sydney',
+        'country': 'Australia',
+        'host': 'api.syd-v.elastichosts.com'
+    },
+    'cn-1': {
+        'name': 'Hong Kong',
+        'country': 'China',
+        'host': 'api.hkg-e.elastichosts.com'
     }
 }