Issue
The list() method only brings up a subset of objects.
For example, based on your permissions, you may see 99 containers in the UI, but running containers.list() only brings up 2 containers.
Environment
SDK
Cause
Users may assume that the list() method will bring up one long list of all desired objects. However, the list() method actually breaks up the total list of objects into pages with x objects on each page (where x is determined by the pageSize parameter, with a default value of 50).
Resolution steps
When iterating through a list() output, you will need to iterate through each page, then iterate through the objects on each page.
You can view an example showing how to iterate through both pages and objects on a page in our Developer Platform documentation at this link.