@@ -104,6 +104,7 @@ def create(
104
104
extension_id : str | Omit = omit ,
105
105
keep_alive : bool | Omit = omit ,
106
106
proxies : Union [Iterable [session_create_params .ProxiesUnionMember0 ], bool ] | Omit = omit ,
107
+ proxy_settings : session_create_params .ProxySettings | Omit = omit ,
107
108
region : Literal ["us-west-2" , "us-east-1" , "eu-central-1" , "ap-southeast-1" ] | Omit = omit ,
108
109
api_timeout : int | Omit = omit ,
109
110
user_metadata : Dict [str , object ] | Omit = omit ,
@@ -131,6 +132,8 @@ def create(
131
132
proxies: Proxy configuration. Can be true for default proxy, or an array of proxy
132
133
configurations.
133
134
135
+ proxy_settings: [NOT IN DOCS] Supplementary proxy settings. Optional.
136
+
134
137
region: The region where the Session should run.
135
138
136
139
api_timeout: Duration in seconds after which the session will automatically end. Defaults to
@@ -156,6 +159,7 @@ def create(
156
159
"extension_id" : extension_id ,
157
160
"keep_alive" : keep_alive ,
158
161
"proxies" : proxies ,
162
+ "proxy_settings" : proxy_settings ,
159
163
"region" : region ,
160
164
"api_timeout" : api_timeout ,
161
165
"user_metadata" : user_metadata ,
@@ -375,6 +379,7 @@ async def create(
375
379
extension_id : str | Omit = omit ,
376
380
keep_alive : bool | Omit = omit ,
377
381
proxies : Union [Iterable [session_create_params .ProxiesUnionMember0 ], bool ] | Omit = omit ,
382
+ proxy_settings : session_create_params .ProxySettings | Omit = omit ,
378
383
region : Literal ["us-west-2" , "us-east-1" , "eu-central-1" , "ap-southeast-1" ] | Omit = omit ,
379
384
api_timeout : int | Omit = omit ,
380
385
user_metadata : Dict [str , object ] | Omit = omit ,
@@ -402,6 +407,8 @@ async def create(
402
407
proxies: Proxy configuration. Can be true for default proxy, or an array of proxy
403
408
configurations.
404
409
410
+ proxy_settings: [NOT IN DOCS] Supplementary proxy settings. Optional.
411
+
405
412
region: The region where the Session should run.
406
413
407
414
api_timeout: Duration in seconds after which the session will automatically end. Defaults to
@@ -427,6 +434,7 @@ async def create(
427
434
"extension_id" : extension_id ,
428
435
"keep_alive" : keep_alive ,
429
436
"proxies" : proxies ,
437
+ "proxy_settings" : proxy_settings ,
430
438
"region" : region ,
431
439
"api_timeout" : api_timeout ,
432
440
"user_metadata" : user_metadata ,
0 commit comments