@@ -104,6 +104,7 @@ def create(
104104        extension_id : str  |  Omit  =  omit ,
105105        keep_alive : bool  |  Omit  =  omit ,
106106        proxies : Union [Iterable [session_create_params .ProxiesUnionMember0 ], bool ] |  Omit  =  omit ,
107+         proxy_settings : session_create_params .ProxySettings  |  Omit  =  omit ,
107108        region : Literal ["us-west-2" , "us-east-1" , "eu-central-1" , "ap-southeast-1" ] |  Omit  =  omit ,
108109        api_timeout : int  |  Omit  =  omit ,
109110        user_metadata : Dict [str , object ] |  Omit  =  omit ,
@@ -131,6 +132,8 @@ def create(
131132          proxies: Proxy configuration. Can be true for default proxy, or an array of proxy 
132133              configurations. 
133134
135+           proxy_settings: [NOT IN DOCS] Supplementary proxy settings. Optional. 
136+ 
134137          region: The region where the Session should run. 
135138
136139          api_timeout: Duration in seconds after which the session will automatically end. Defaults to 
@@ -156,6 +159,7 @@ def create(
156159                    "extension_id" : extension_id ,
157160                    "keep_alive" : keep_alive ,
158161                    "proxies" : proxies ,
162+                     "proxy_settings" : proxy_settings ,
159163                    "region" : region ,
160164                    "api_timeout" : api_timeout ,
161165                    "user_metadata" : user_metadata ,
@@ -375,6 +379,7 @@ async def create(
375379        extension_id : str  |  Omit  =  omit ,
376380        keep_alive : bool  |  Omit  =  omit ,
377381        proxies : Union [Iterable [session_create_params .ProxiesUnionMember0 ], bool ] |  Omit  =  omit ,
382+         proxy_settings : session_create_params .ProxySettings  |  Omit  =  omit ,
378383        region : Literal ["us-west-2" , "us-east-1" , "eu-central-1" , "ap-southeast-1" ] |  Omit  =  omit ,
379384        api_timeout : int  |  Omit  =  omit ,
380385        user_metadata : Dict [str , object ] |  Omit  =  omit ,
@@ -402,6 +407,8 @@ async def create(
402407          proxies: Proxy configuration. Can be true for default proxy, or an array of proxy 
403408              configurations. 
404409
410+           proxy_settings: [NOT IN DOCS] Supplementary proxy settings. Optional. 
411+ 
405412          region: The region where the Session should run. 
406413
407414          api_timeout: Duration in seconds after which the session will automatically end. Defaults to 
@@ -427,6 +434,7 @@ async def create(
427434                    "extension_id" : extension_id ,
428435                    "keep_alive" : keep_alive ,
429436                    "proxies" : proxies ,
437+                     "proxy_settings" : proxy_settings ,
430438                    "region" : region ,
431439                    "api_timeout" : api_timeout ,
432440                    "user_metadata" : user_metadata ,
0 commit comments