@@ -191,10 +191,18 @@ def list_instance_configs(self, page_size=None, page_token=None):
191191 See `RPC docs`_.
192192
193193 :type page_size: int
194- :param page_size: (Optional) Maximum number of results to return.
194+ :param page_size:
195+ Optional. The maximum number of configs in each page of results
196+ from this request. Non-positive values are ignored. Defaults
197+ to a sensible value set by the API.
195198
196199 :type page_token: str
197- :param page_token: (Optional) Token for fetching next page of results.
200+ :param page_token:
201+ Optional. If present, return the next batch of configs, using
202+ the value, which must correspond to the ``nextPageToken`` value
203+ returned in the previous response. Deprecated: use the ``pages``
204+ property of the returned iterator instead of manually passing
205+ the token.
198206
199207 :rtype: :class:`~google.api_core.page_iterator.Iterator`
200208 :returns:
@@ -256,10 +264,18 @@ def list_instances(self, filter_="", page_size=None, page_token=None):
256264 the ``ListInstancesRequest`` docs above for examples.
257265
258266 :type page_size: int
259- :param page_size: (Optional) Maximum number of results to return.
267+ :param page_size:
268+ Optional. The maximum number of instances in each page of results
269+ from this request. Non-positive values are ignored. Defaults
270+ to a sensible value set by the API.
260271
261272 :type page_token: str
262- :param page_token: (Optional) Token for fetching next page of results.
273+ :param page_token:
274+ Optional. If present, return the next batch of instances, using
275+ the value, which must correspond to the ``nextPageToken`` value
276+ returned in the previous response. Deprecated: use the ``pages``
277+ property of the returned iterator instead of manually passing
278+ the token.
263279
264280 :rtype: :class:`~google.api_core.page_iterator.Iterator`
265281 :returns:
0 commit comments