@@ -54,6 +54,7 @@ def create(
5454 dimensions : profile_create_params .Dimensions | Omit = omit ,
5555 project_id : str | Omit = omit ,
5656 proxy_url : str | Omit = omit ,
57+ use_proxy : str | Omit = omit ,
5758 user_agent : str | Omit = omit ,
5859 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
5960 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -74,6 +75,9 @@ def create(
7475
7576 proxy_url: The proxy associated with the profile
7677
78+ use_proxy: JSON-encoded proxy configuration associated with the profile. For fixed IPs,
79+ send {"type":"fixed","id":"fixed:<id>"}.
80+
7781 user_agent: The user agent associated with the profile
7882
7983 extra_headers: Send extra headers
@@ -90,6 +94,7 @@ def create(
9094 "dimensions" : dimensions ,
9195 "project_id" : project_id ,
9296 "proxy_url" : proxy_url ,
97+ "use_proxy" : use_proxy ,
9398 "user_agent" : user_agent ,
9499 },
95100 [["userDataDir" ]],
@@ -118,6 +123,7 @@ def update(
118123 dimensions : profile_update_params .Dimensions | Omit = omit ,
119124 body_project_id : str | Omit = omit ,
120125 proxy_url : str | Omit = omit ,
126+ use_proxy : str | Omit = omit ,
121127 user_agent : str | Omit = omit ,
122128 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
123129 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -140,6 +146,9 @@ def update(
140146
141147 proxy_url: The proxy associated with the profile
142148
149+ use_proxy: JSON-encoded proxy configuration associated with the profile. For fixed IPs,
150+ send {"type":"fixed","id":"fixed:<id>"}.
151+
143152 user_agent: The user agent associated with the profile
144153
145154 extra_headers: Send extra headers
@@ -158,6 +167,7 @@ def update(
158167 "dimensions" : dimensions ,
159168 "body_project_id" : body_project_id ,
160169 "proxy_url" : proxy_url ,
170+ "use_proxy" : use_proxy ,
161171 "user_agent" : user_agent ,
162172 },
163173 [["userDataDir" ]],
@@ -288,6 +298,7 @@ async def create(
288298 dimensions : profile_create_params .Dimensions | Omit = omit ,
289299 project_id : str | Omit = omit ,
290300 proxy_url : str | Omit = omit ,
301+ use_proxy : str | Omit = omit ,
291302 user_agent : str | Omit = omit ,
292303 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
293304 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -308,6 +319,9 @@ async def create(
308319
309320 proxy_url: The proxy associated with the profile
310321
322+ use_proxy: JSON-encoded proxy configuration associated with the profile. For fixed IPs,
323+ send {"type":"fixed","id":"fixed:<id>"}.
324+
311325 user_agent: The user agent associated with the profile
312326
313327 extra_headers: Send extra headers
@@ -324,6 +338,7 @@ async def create(
324338 "dimensions" : dimensions ,
325339 "project_id" : project_id ,
326340 "proxy_url" : proxy_url ,
341+ "use_proxy" : use_proxy ,
327342 "user_agent" : user_agent ,
328343 },
329344 [["userDataDir" ]],
@@ -352,6 +367,7 @@ async def update(
352367 dimensions : profile_update_params .Dimensions | Omit = omit ,
353368 body_project_id : str | Omit = omit ,
354369 proxy_url : str | Omit = omit ,
370+ use_proxy : str | Omit = omit ,
355371 user_agent : str | Omit = omit ,
356372 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
357373 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -374,6 +390,9 @@ async def update(
374390
375391 proxy_url: The proxy associated with the profile
376392
393+ use_proxy: JSON-encoded proxy configuration associated with the profile. For fixed IPs,
394+ send {"type":"fixed","id":"fixed:<id>"}.
395+
377396 user_agent: The user agent associated with the profile
378397
379398 extra_headers: Send extra headers
@@ -392,6 +411,7 @@ async def update(
392411 "dimensions" : dimensions ,
393412 "body_project_id" : body_project_id ,
394413 "proxy_url" : proxy_url ,
414+ "use_proxy" : use_proxy ,
395415 "user_agent" : user_agent ,
396416 },
397417 [["userDataDir" ]],
0 commit comments