1414
1515
1616def _get_kwargs (
17- domain_name : str ,
17+ domain_name : Union [ int , str ] ,
1818 * ,
1919 client : Client ,
2020 type : Union [Unset , None , DomainRecordType ] = UNSET ,
@@ -84,7 +84,7 @@ def _build_response(
8484
8585
8686def sync_detailed (
87- domain_name : str ,
87+ domain_name : Union [ int , str ] ,
8888 * ,
8989 client : Client ,
9090 type : Union [Unset , None , DomainRecordType ] = UNSET ,
@@ -95,7 +95,8 @@ def sync_detailed(
9595 """List All Domain Records for a Domain
9696
9797 Args:
98- domain_name (str): The domain name for which records should be listed.
98+ domain_name (Union[int, str]): The domain name or domain ID for for which records should
99+ be listed. Example: 5.
99100 type (Union[Unset, None, DomainRecordType]):
100101 | Value | Description |
101102 | ----- | ----------- |
@@ -140,7 +141,7 @@ def sync_detailed(
140141
141142
142143def sync (
143- domain_name : str ,
144+ domain_name : Union [ int , str ] ,
144145 * ,
145146 client : Client ,
146147 type : Union [Unset , None , DomainRecordType ] = UNSET ,
@@ -151,7 +152,8 @@ def sync(
151152 """List All Domain Records for a Domain
152153
153154 Args:
154- domain_name (str): The domain name for which records should be listed.
155+ domain_name (Union[int, str]): The domain name or domain ID for for which records should
156+ be listed. Example: 5.
155157 type (Union[Unset, None, DomainRecordType]):
156158 | Value | Description |
157159 | ----- | ----------- |
@@ -189,7 +191,7 @@ def sync(
189191
190192
191193async def asyncio_detailed (
192- domain_name : str ,
194+ domain_name : Union [ int , str ] ,
193195 * ,
194196 client : Client ,
195197 type : Union [Unset , None , DomainRecordType ] = UNSET ,
@@ -200,7 +202,8 @@ async def asyncio_detailed(
200202 """List All Domain Records for a Domain
201203
202204 Args:
203- domain_name (str): The domain name for which records should be listed.
205+ domain_name (Union[int, str]): The domain name or domain ID for for which records should
206+ be listed. Example: 5.
204207 type (Union[Unset, None, DomainRecordType]):
205208 | Value | Description |
206209 | ----- | ----------- |
@@ -243,7 +246,7 @@ async def asyncio_detailed(
243246
244247
245248async def asyncio (
246- domain_name : str ,
249+ domain_name : Union [ int , str ] ,
247250 * ,
248251 client : Client ,
249252 type : Union [Unset , None , DomainRecordType ] = UNSET ,
@@ -254,7 +257,8 @@ async def asyncio(
254257 """List All Domain Records for a Domain
255258
256259 Args:
257- domain_name (str): The domain name for which records should be listed.
260+ domain_name (Union[int, str]): The domain name or domain ID for for which records should
261+ be listed. Example: 5.
258262 type (Union[Unset, None, DomainRecordType]):
259263 | Value | Description |
260264 | ----- | ----------- |
0 commit comments