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 2017/04/10 09:48:57 UTC

[1/2] libcloud git commit: Add price_monthly extra param to digitalocean sizes Closes #1021

Repository: libcloud
Updated Branches:
  refs/heads/trunk 222f0cce5 -> 9f4d0a263


Add price_monthly extra param to digitalocean sizes
Closes #1021


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

Branch: refs/heads/trunk
Commit: 8a694df03ab7e491034ac8eef7076451447b7a10
Parents: 222f0cc
Author: Francisco Ros <fj...@doalitic.com>
Authored: Tue Apr 4 20:12:16 2017 +0200
Committer: Anthony Shaw <an...@apache.org>
Committed: Mon Apr 10 17:56:03 2017 +1000

----------------------------------------------------------------------
 libcloud/compute/drivers/digitalocean.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/8a694df0/libcloud/compute/drivers/digitalocean.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/digitalocean.py b/libcloud/compute/drivers/digitalocean.py
index 9800023..a9b1e4f 100644
--- a/libcloud/compute/drivers/digitalocean.py
+++ b/libcloud/compute/drivers/digitalocean.py
@@ -509,7 +509,8 @@ class DigitalOcean_v2_NodeDriver(DigitalOcean_v2_BaseDriver,
 
     def _to_size(self, data):
         extra = {'vcpus': data['vcpus'],
-                 'regions': data['regions']}
+                 'regions': data['regions'],
+                 'price_monthly': data['price_monthly']}
         return NodeSize(id=data['slug'], name=data['slug'], ram=data['memory'],
                         disk=data['disk'], bandwidth=data['transfer'],
                         price=data['price_hourly'], driver=self, extra=extra)


[2/2] libcloud git commit: Closes #1021 Closes #543 Closes #547 Closes #572 Closes #586 Closes #598 Closes #600 Closes #613 Closes #628 Closes #678 Closes #784 Closes #791 Closes #907 Closes #819

Posted by an...@apache.org.
Closes #1021
Closes #543
Closes #547
Closes #572
Closes #586
Closes #598
Closes #600
Closes #613
Closes #628
Closes #678
Closes #784
Closes #791
Closes #907
Closes #819


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

Branch: refs/heads/trunk
Commit: 9f4d0a263bfb80de854eb0098a1f6202ca9a43ca
Parents: 8a694df
Author: Anthony Shaw <an...@apache.org>
Authored: Mon Apr 10 19:42:09 2017 +1000
Committer: Anthony Shaw <an...@apache.org>
Committed: Mon Apr 10 19:42:09 2017 +1000

----------------------------------------------------------------------
 CHANGES.rst | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/9f4d0a26/CHANGES.rst
----------------------------------------------------------------------
diff --git a/CHANGES.rst b/CHANGES.rst
index b9a2e7b..221f5f1 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -14,6 +14,10 @@ Common
 Compute
 ~~~~~~~
 
+- Add price_monthly extra param to digitalocean sizes
+  [GITHUB-1021]
+  (Francisco Ros)
+
 - Add aliyun ecs instance join leave security group
   [GITHUB-992]
   (Jie Ren)