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/21 05:36:48 UTC

[1/4] libcloud git commit: remove location from VhdImage type repr

Repository: libcloud
Updated Branches:
  refs/heads/trunk 1a0721599 -> 2883adb3a


remove location from VhdImage type repr


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

Branch: refs/heads/trunk
Commit: d5b3dd3151c2120c96e9c25b3c5e72c7282be7c3
Parents: 036b565
Author: Anthony Shaw <an...@apache.org>
Authored: Thu Apr 13 10:58:27 2017 +1000
Committer: Anthony Shaw <an...@apache.org>
Committed: Thu Apr 13 10:58:27 2017 +1000

----------------------------------------------------------------------
 libcloud/compute/drivers/azure_arm.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/d5b3dd31/libcloud/compute/drivers/azure_arm.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/azure_arm.py b/libcloud/compute/drivers/azure_arm.py
index c7bed5e..55aaab3 100644
--- a/libcloud/compute/drivers/azure_arm.py
+++ b/libcloud/compute/drivers/azure_arm.py
@@ -67,8 +67,8 @@ class AzureVhdImage(NodeImage):
         super(AzureVhdImage, self).__init__(urn, name, driver)
 
     def __repr__(self):
-        return (('<AzureVhdImage: id=%s, name=%s, location=%s>')
-                % (self.id, self.name, self.location))
+        return (('<AzureVhdImage: id=%s, name=%s>')
+                % (self.id, self.name))
 
 
 class AzureResourceGroup(object):


[2/4] libcloud git commit: commit fix for listing public IP ranges

Posted by an...@apache.org.
commit fix for listing public IP ranges


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

Branch: refs/heads/trunk
Commit: 69a80e57852eae5cd08e94dffe9606dbc38d698d
Parents: d5b3dd3
Author: Anthony Shaw <an...@apache.org>
Authored: Fri Apr 21 15:07:43 2017 +1000
Committer: Anthony Shaw <an...@apache.org>
Committed: Fri Apr 21 15:07:43 2017 +1000

----------------------------------------------------------------------
 libcloud/compute/drivers/azure_arm.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/69a80e57/libcloud/compute/drivers/azure_arm.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/azure_arm.py b/libcloud/compute/drivers/azure_arm.py
index 55aaab3..9a1d5a7 100644
--- a/libcloud/compute/drivers/azure_arm.py
+++ b/libcloud/compute/drivers/azure_arm.py
@@ -1048,8 +1048,9 @@ class AzureNodeDriver(NodeDriver):
         :rtype: ``list`` of :class:`.AzureIPAddress`
         """
 
-        action = "/subscriptions/%s/providers/Microsoft.Network" \
-                 "/publicIPAddresses" % (self.subscription_id, resource_group)
+        action = "/subscriptions/%s/resourceGroups/%s/" \
+                 "providers/Microsoft.Network/publicIPAddresses" \
+                 % (self.subscription_id, resource_group)
         r = self.connection.request(action,
                                     params={"api-version": "2015-06-15"})
         return [self._to_ip_address(net) for net in r.object["value"]]


[3/4] libcloud git commit: Merge branch 'azure_arm_fixes' into trunk Closes #1035

Posted by an...@apache.org.
Merge branch 'azure_arm_fixes' into trunk
Closes #1035


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

Branch: refs/heads/trunk
Commit: b54a43073a154a6ced4a0de8dbbb28fd97314517
Parents: 1a07215 69a80e5
Author: Anthony Shaw <an...@apache.org>
Authored: Fri Apr 21 15:26:24 2017 +1000
Committer: Anthony Shaw <an...@apache.org>
Committed: Fri Apr 21 15:26:24 2017 +1000

----------------------------------------------------------------------
 libcloud/compute/drivers/azure_arm.py | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------



[4/4] libcloud git commit: changes for #1035

Posted by an...@apache.org.
changes for #1035


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

Branch: refs/heads/trunk
Commit: 2883adb3aee78340a20a78eece91fb2071856aa4
Parents: b54a430
Author: Anthony Shaw <an...@apache.org>
Authored: Fri Apr 21 15:36:39 2017 +1000
Committer: Anthony Shaw <an...@apache.org>
Committed: Fri Apr 21 15:36:39 2017 +1000

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


http://git-wip-us.apache.org/repos/asf/libcloud/blob/2883adb3/CHANGES.rst
----------------------------------------------------------------------
diff --git a/CHANGES.rst b/CHANGES.rst
index 9bfb8ff..3070288 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -25,6 +25,10 @@ Common
 Compute
 ~~~~~~~
 
+- [ARM] Fix string representation of the VhdImage type and fix listing of Public IP addresses
+  [GITHUB-1035]
+  (Anthony Shaw)
+
 - [GOOGLE] Remove validation checks for guestOsFeatures
   [GITHUB-1034]
   (Max Illfelder)