There was an error while loading. Please reload this page.
In index.rst, there is the following example:
>>> records, page_token = zone.list_resource_record_sets() # API request >>> while page_token is not None: ... next_batch, page_token = zone.list_resource_record_sets( ... page_token=page_token) # API request ... records.extend(next_batch)
However, zone.list_resource_record_sets only returns only one value and I guess does the paging automatically.
In index.rst, there is the following example:
However, zone.list_resource_record_sets only returns only one value and I guess does the paging automatically.