make sure to honor the xrn argument
[sfa.git] / sfa / methods / get_aggregates.py
index 0ed15f3..c960974 100644 (file)
@@ -30,5 +30,7 @@ class get_aggregates(Method):
     def call(self, cred, xrn = None):
         hrn, type = urn_to_hrn(xrn)
         self.api.auth.check(cred, 'list')
-        aggregates = Aggregates(self.api)
-        return aggregates.interfaces.values()
+        aggregates = Aggregates(self.api).interfaces.values()
+        if hrn:
+            aggregates = [agg for agg in aggregates if agg['hrn'] == hrn]
+        return aggregates