summaryrefslogtreecommitdiff
path: root/novaclient/v2/usage.py
diff options
context:
space:
mode:
Diffstat (limited to 'novaclient/v2/usage.py')
-rw-r--r--novaclient/v2/usage.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/novaclient/v2/usage.py b/novaclient/v2/usage.py
index abbeca69..32fc5508 100644
--- a/novaclient/v2/usage.py
+++ b/novaclient/v2/usage.py
@@ -87,7 +87,9 @@ class UsageManager(base.ManagerWithFind):
later in the instance list than that represented by
this instance UUID (optional).
:param limit: Maximum number of instances to include in the usage
- (optional).
+ (optional). Note the API server has a configurable
+ default limit. If no limit is specified here or limit
+ is larger than default, the default limit will be used.
:rtype: list of :class:`Usage`.
"""
query_string = self._usage_query(start, end, marker, limit, detailed)
@@ -120,7 +122,9 @@ class UsageManager(base.ManagerWithFind):
later in the instance list than that represented by
this instance UUID (optional).
:param limit: Maximum number of instances to include in the usage
- (optional).
+ (optional). Note the API server has a configurable
+ default limit. If no limit is specified here or limit
+ is larger than default, the default limit will be used.
:rtype: :class:`Usage`
"""
query_string = self._usage_query(start, end, marker, limit)