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

[05/11] libcloud git commit: EC2: Rename i2 and d2 instance types

EC2: Rename i2 and d2 instance types

i2 are I/O optimized, while d2 are dense optimized

Signed-off-by: Anthony Shaw <an...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/7d1b7961
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/7d1b7961
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/7d1b7961

Branch: refs/heads/trunk
Commit: 7d1b7961f7f79bf281d34e6c5f702f29dc749c80
Parents: be9d9cb
Author: Philipp Hahn <ha...@univention.de>
Authored: Tue Dec 1 09:03:40 2015 +0100
Committer: Anthony Shaw <an...@gmail.com>
Committed: Sat Dec 5 07:14:56 2015 +1100

----------------------------------------------------------------------
 libcloud/compute/drivers/ec2.py | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/7d1b7961/libcloud/compute/drivers/ec2.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/ec2.py b/libcloud/compute/drivers/ec2.py
index 72a61b7..8c7ba51 100644
--- a/libcloud/compute/drivers/ec2.py
+++ b/libcloud/compute/drivers/ec2.py
@@ -459,7 +459,7 @@ INSTANCE_TYPES = {
     # i2 instances have up to eight SSD drives
     'i2.xlarge': {
         'id': 'i2.xlarge',
-        'name': 'High Storage Optimized Extra Large Instance',
+        'name': 'High I/O Storage Optimized Extra Large Instance',
         'ram': GiB(30.5),
         'disk': 800,  # GB
         'bandwidth': None,
@@ -469,7 +469,7 @@ INSTANCE_TYPES = {
     },
     'i2.2xlarge': {
         'id': 'i2.2xlarge',
-        'name': 'High Storage Optimized Double Extra Large Instance',
+        'name': 'High I/O Storage Optimized Double Extra Large Instance',
         'ram': GiB(61),
         'disk': 2 * 800,  # GB
         'bandwidth': None,
@@ -479,7 +479,7 @@ INSTANCE_TYPES = {
     },
     'i2.4xlarge': {
         'id': 'i2.4xlarge',
-        'name': 'High Storage Optimized Quadruple Large Instance',
+        'name': 'High I/O Storage Optimized Quadruple Large Instance',
         'ram': GiB(122),
         'disk': 4 * 800,  # GB
         'bandwidth': None,
@@ -489,7 +489,7 @@ INSTANCE_TYPES = {
     },
     'i2.8xlarge': {
         'id': 'i2.8xlarge',
-        'name': 'High Storage Optimized Eight Extra Large Instance',
+        'name': 'High I/O Storage Optimized Eight Extra Large Instance',
         'ram': GiB(244),
         'disk': 8 * 800,  # GB
         'bandwidth': None,
@@ -499,7 +499,7 @@ INSTANCE_TYPES = {
     },
     'd2.xlarge': {
         'id': 'd2.xlarge',
-        'name': 'High Storage Optimized Extra Large Instance',
+        'name': 'Dense Storage Optimized Extra Large Instance',
         'ram': GiB(30.5),
         'disk': 3 * 2000,  # GB
         'bandwidth': None,
@@ -509,7 +509,7 @@ INSTANCE_TYPES = {
     },
     'd2.2xlarge': {
         'id': 'd2.2xlarge',
-        'name': 'High Storage Optimized Double Extra Large Instance',
+        'name': 'Dense Storage Optimized Double Extra Large Instance',
         'ram': GiB(61),
         'disk': 6 * 2000,  # GB
         'bandwidth': None,
@@ -519,7 +519,7 @@ INSTANCE_TYPES = {
     },
     'd2.4xlarge': {
         'id': 'd2.4xlarge',
-        'name': 'High Storage Optimized Quadruple Extra Large Instance',
+        'name': 'Dense Storage Optimized Quadruple Extra Large Instance',
         'ram': GiB(122),
         'disk': 12 * 2000,  # GB
         'bandwidth': None,
@@ -529,7 +529,7 @@ INSTANCE_TYPES = {
     },
     'd2.8xlarge': {
         'id': 'd2.8xlarge',
-        'name': 'High Storage Optimized Eight Extra Large Instance',
+        'name': 'Dense Storage Optimized Eight Extra Large Instance',
         'ram': GiB(244),
         'disk': 24 * 2000,  # GB
         'bandwidth': None,