@@ -47,6 +47,7 @@ def list_zones(
4747 limit : Optional [int ] = None ,
4848 filter : Optional [FilterElement ] = None ,
4949 sort : Optional [SortConfiguration ] = None ,
50+ page : Optional [int ] = None ,
5051 * args : list ,
5152 ** kwargs : dict
5253 ) -> HostingDePaginator [Zone ]:
@@ -110,18 +111,20 @@ def list_zones(
110111 :param limit: The limit of objects to retrieve per call. If not set, defaults to 25.
111112 :param filter: A filter that is applied to the query
112113 :param sort: Configuration how results are sorted.
114+ :param page: The page to retrieve. If limit is unset, 25 items will be retrieved.
113115 :return: An iterator that yields Zone objects.
114116 """
115117
116118 uri = self ._build_uri ('dns' , 'zonesFind' )
117119
118- return self ._iter (uri , Zone , filter , limit , sort )
120+ return self ._iter (uri , Zone , filter , limit , sort , page )
119121
120122 def list_zone_configs (
121123 self ,
122124 limit : Optional [int ] = None ,
123125 filter : Optional [FilterElement ] = None ,
124126 sort : Optional [SortConfiguration ] = None ,
127+ page : Optional [int ] = None ,
125128 * args : list ,
126129 ** kwargs : dict
127130 ) -> HostingDePaginator [ZoneConfig ]:
@@ -171,18 +174,20 @@ def list_zone_configs(
171174 :param limit: The limit of objects to retrieve per call. If not set, defaults to 25.
172175 :param filter: A filter that is applied to the query
173176 :param sort: Configuration how results are sorted.
177+ :param page: The page to retrieve. If limit is unset, 25 items will be retrieved.
174178 :return: An iterator that yields Zone objects.
175179 """
176180
177181 uri = self ._build_uri ('dns' , 'zoneConfigsFind' )
178182
179- return self ._iter (uri , ZoneConfig , filter , limit , sort )
183+ return self ._iter (uri , ZoneConfig , filter , limit , sort , page )
180184
181185 def list_records (
182186 self ,
183187 limit : Optional [int ] = None ,
184188 filter : Optional [FilterElement ] = None ,
185189 sort : Optional [SortConfiguration ] = None ,
190+ page : Optional [int ] = None ,
186191 * args : list ,
187192 ** kwargs : dict
188193 ) -> HostingDePaginator [Record ]:
@@ -212,12 +217,13 @@ def list_records(
212217 :param limit: The limit of objects to retrieve per call. If not set, defaults to 25.
213218 :param filter: A filter that is applied to the query
214219 :param sort: Configuration how results are sorted.
220+ :param page: The page to retrieve. If limit is unset, 25 items will be retrieved.
215221 :return: An iterator that yields Zone objects.
216222 """
217223
218224 uri = self ._build_uri ('dns' , 'recordsFind' )
219225
220- return self ._iter (uri , Record , filter , limit , sort )
226+ return self ._iter (uri , Record , filter , limit , sort , page )
221227
222228 def delete_zone (
223229 self , zone_config_id : Optional [str ] = None , zone_name : Optional [str ] = None , asynchronous : bool = None
@@ -254,6 +260,7 @@ def jobs_find(
254260 limit : Optional [int ] = None ,
255261 filter : Optional [FilterElement ] = None ,
256262 sort : Optional [SortConfiguration ] = None ,
263+ page : Optional [int ] = None ,
257264 * args : list ,
258265 ** kwargs : dict
259266 ) -> HostingDePaginator [Job ]:
@@ -263,11 +270,12 @@ def jobs_find(
263270 :param limit: The limit of objects to retrieve per call. If not set, defaults to 25.
264271 :param filter: A filter that is applied to the query
265272 :param sort: Configuration how results are sorted.
273+ :param page: The page to retrieve. If limit is unset, 25 items will be retrieved.
266274 :return: An iterator that yields ZoneConfig objects.
267275 """
268276 uri = self ._build_uri ('dns' , 'jobsFind' )
269277
270- return self ._iter (uri , Job , filter , limit , sort )
278+ return self ._iter (uri , Job , filter , limit , sort , page )
271279
272280 def update_zone (
273281 self ,
0 commit comments