google-cloud-cpp
google-cloud-cpp copied to clipboard
Support "BigQuery" type pagination
ListJobs or other List* endpoints (look for page size, page token etc.)
ex. in the ListJobsRequest
google.protobuf.Int32Value max_results = 3;
Should be
int32 page_size = 2;
https://google.aip.dev/158
- [ ] We need to recognize BQ pagination in the generator, so it knows to use our pagination internals
- [ ] Our pagination internals might need to be generalized to handle this case