Files
openstacksdk/releasenotes/notes/add_max_item_parameter-3ab3c2e1cd2312c5.yaml
djp d649aada8d resource: add max_items parameter to resource
Currently the limit option is used ambiguously,
the first is the total amount of resources returned,
and the second is the size of the page.

To separate this, we add a parameter called max_items,
which is the total amount of resources returned.

Change-Id: I56fdb5ef480da6bca82462ce3ca4e0cbcb2830de
Signed-off-by: djp <dimsss0607@gmail.com>
2025-07-24 21:31:09 +09:00

9 lines
373 B
YAML

---
features:
- |
A new parameter, ``max_items``, is added to the ``Resource.list``
method. This allows users to specify the maximum number of resources
that should be returned to the user, as opposed to the maximum number
of items that should be requested from the server in a single request.
The latter is already handled by the ``limit`` parameter