summaryrefslogtreecommitdiff
path: root/ceilometerclient/v2/resources.py
diff options
context:
space:
mode:
Diffstat (limited to 'ceilometerclient/v2/resources.py')
-rw-r--r--ceilometerclient/v2/resources.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ceilometerclient/v2/resources.py b/ceilometerclient/v2/resources.py
index 99e6fd5..aa80664 100644
--- a/ceilometerclient/v2/resources.py
+++ b/ceilometerclient/v2/resources.py
@@ -30,9 +30,10 @@ class Resource(base.Resource):
class ResourceManager(base.Manager):
resource_class = Resource
- def list(self, q=None):
+ def list(self, q=None, links=None):
path = '/v2/resources'
- return self._list(options.build_url(path, q))
+ params = ['meter_links=%d' % (1 if links else 0)]
+ return self._list(options.build_url(path, q, params))
def get(self, resource_id):
path = '/v2/resources/%s' % resource_id