listBasins, listStreams, and listAccessTokens return paginated results.
SDKs provide automatic pagination helpers that handle async fetching of subsequent pages transparently.
Usage
Instead of manually handlinghasMore and startAfter cursor parameters, use the paginator variants which return an iterable that automatically fetches pages as needed:
- TypeScript
- Go
- Rust
Filtering
Paginators accept the same filter options as their single-page list analogs:- TypeScript
- Go
- Rust
Deleted Resources
Paginators automatically filter out resources that are pending deletion. This is useful because delete operations mark resources for deletion, but actual garbage collection happens asynchronously. To include deleted resources in the results:- TypeScript
- Go
- Rust

