-
Notifications
You must be signed in to change notification settings - Fork 184
Open
Labels
Description
Documentation link
https://github.com/PaloAltoNetworks/pan-os-python/blob/develop/examples/bulk_address_objects.py
Describe the problem
The documentation does not mention that the Panorama SDK paginates Application objects with a default limit of 50, and the pan-os-sdk does not automatically handle pagination.
As a result, calling:
objects = ApplicationObject.refreshall(panorama)
returns only 50 application objects, even when more exist.
There is also no documented method in the SDK (such as chunk_size or limit) to override the limit or to auto-paginate, which leads to confusion.
Is it possible to fetch all the objects using pagination or any other approach ?