22
33from __future__ import annotations
44
5- from typing import Iterable , Optional
5+ from typing import Iterable
66
77import httpx
88
@@ -55,7 +55,7 @@ def create(
5555 fields : Iterable [profile_create_params .Field ],
5656 profile_template : int ,
5757 site : str ,
58- ip_address : Optional [ str ] | Omit = omit ,
58+ ip_address : str | Omit = omit ,
5959 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
6060 # The extra values given here take precedence over values defined on the client or passed to this method.
6161 extra_headers : Headers | None = None ,
@@ -69,6 +69,8 @@ def create(
6969 created
7070
7171 Args:
72+ ip_address: Required for Universal template only. Optional for all others.
73+
7274 extra_headers: Send extra headers
7375
7476 extra_query: Add additional query parameters to the request
@@ -212,7 +214,7 @@ def recreate(
212214 * ,
213215 fields : Iterable [profile_recreate_params .Field ],
214216 profile_template : int ,
215- ip_address : Optional [ str ] | Omit = omit ,
217+ ip_address : str | Omit = omit ,
216218 site : str | Omit = omit ,
217219 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
218220 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -225,6 +227,8 @@ def recreate(
225227 Recreate profile with another profile template (for other cases use detail API)
226228
227229 Args:
230+ ip_address: Required for Universal template only. Optional for all others.
231+
228232 extra_headers: Send extra headers
229233
230234 extra_query: Add additional query parameters to the request
@@ -256,7 +260,7 @@ def replace(
256260 * ,
257261 fields : Iterable [profile_replace_params .Field ],
258262 profile_template : int ,
259- ip_address : Optional [ str ] | Omit = omit ,
263+ ip_address : str | Omit = omit ,
260264 site : str | Omit = omit ,
261265 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
262266 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -271,6 +275,8 @@ def replace(
271275 updated
272276
273277 Args:
278+ ip_address: Required for Universal template only. Optional for all others.
279+
274280 extra_headers: Send extra headers
275281
276282 extra_query: Add additional query parameters to the request
@@ -323,7 +329,7 @@ async def create(
323329 fields : Iterable [profile_create_params .Field ],
324330 profile_template : int ,
325331 site : str ,
326- ip_address : Optional [ str ] | Omit = omit ,
332+ ip_address : str | Omit = omit ,
327333 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
328334 # The extra values given here take precedence over values defined on the client or passed to this method.
329335 extra_headers : Headers | None = None ,
@@ -337,6 +343,8 @@ async def create(
337343 created
338344
339345 Args:
346+ ip_address: Required for Universal template only. Optional for all others.
347+
340348 extra_headers: Send extra headers
341349
342350 extra_query: Add additional query parameters to the request
@@ -480,7 +488,7 @@ async def recreate(
480488 * ,
481489 fields : Iterable [profile_recreate_params .Field ],
482490 profile_template : int ,
483- ip_address : Optional [ str ] | Omit = omit ,
491+ ip_address : str | Omit = omit ,
484492 site : str | Omit = omit ,
485493 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
486494 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -493,6 +501,8 @@ async def recreate(
493501 Recreate profile with another profile template (for other cases use detail API)
494502
495503 Args:
504+ ip_address: Required for Universal template only. Optional for all others.
505+
496506 extra_headers: Send extra headers
497507
498508 extra_query: Add additional query parameters to the request
@@ -524,7 +534,7 @@ async def replace(
524534 * ,
525535 fields : Iterable [profile_replace_params .Field ],
526536 profile_template : int ,
527- ip_address : Optional [ str ] | Omit = omit ,
537+ ip_address : str | Omit = omit ,
528538 site : str | Omit = omit ,
529539 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
530540 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -539,6 +549,8 @@ async def replace(
539549 updated
540550
541551 Args:
552+ ip_address: Required for Universal template only. Optional for all others.
553+
542554 extra_headers: Send extra headers
543555
544556 extra_query: Add additional query parameters to the request
0 commit comments