You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2010/04/22 21:14:58 UTC

svn commit: r937019 - /incubator/libcloud/trunk/libcloud/drivers/ec2.py

Author: pquerna
Date: Thu Apr 22 19:14:58 2010
New Revision: 937019

URL: http://svn.apache.org/viewvc?rev=937019&view=rev
Log:
Add correct name values for the various AWS driver types

Modified:
    incubator/libcloud/trunk/libcloud/drivers/ec2.py

Modified: incubator/libcloud/trunk/libcloud/drivers/ec2.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/ec2.py?rev=937019&r1=937018&r2=937019&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/drivers/ec2.py (original)
+++ incubator/libcloud/trunk/libcloud/drivers/ec2.py Thu Apr 22 19:14:58 2010
@@ -436,6 +436,7 @@ class EC2EUConnection(EC2Connection):
 
 class EC2EUNodeDriver(EC2NodeDriver):
 
+    name = 'Amazon EC2 (eu-east-1)'
     connectionCls = EC2EUConnection
     _instance_types = EC2_EU_WEST_INSTANCE_TYPES
     def list_locations(self):
@@ -447,6 +448,7 @@ class EC2USWestConnection(EC2Connection)
 
 class EC2USWestNodeDriver(EC2NodeDriver):
 
+    name = 'Amazon EC2 (us-west-1)'
     connectionCls = EC2USWestConnection
     _instance_types = EC2_US_WEST_INSTANCE_TYPES
     def list_locations(self):
@@ -458,6 +460,7 @@ class EucConnection(EC2Connection):
 
 class EucNodeDriver(EC2NodeDriver):
 
+    name = 'Eucalyptus'
     connectionCls = EucConnection
     _instance_types = EC2_US_WEST_INSTANCE_TYPES