@@ -104,7 +104,6 @@ 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 ,
108107 region : Literal ["us-west-2" , "us-east-1" , "eu-central-1" , "ap-southeast-1" ] | Omit = omit ,
109108 api_timeout : int | Omit = omit ,
110109 user_metadata : Dict [str , object ] | Omit = omit ,
@@ -132,8 +131,6 @@ def create(
132131 proxies: Proxy configuration. Can be true for default proxy, or an array of proxy
133132 configurations.
134133
135- proxy_settings: [NOT IN DOCS] Supplementary proxy settings. Optional.
136-
137134 region: The region where the Session should run.
138135
139136 api_timeout: Duration in seconds after which the session will automatically end. Defaults to
@@ -159,7 +156,6 @@ def create(
159156 "extension_id" : extension_id ,
160157 "keep_alive" : keep_alive ,
161158 "proxies" : proxies ,
162- "proxy_settings" : proxy_settings ,
163159 "region" : region ,
164160 "api_timeout" : api_timeout ,
165161 "user_metadata" : user_metadata ,
@@ -379,7 +375,6 @@ async def create(
379375 extension_id : str | Omit = omit ,
380376 keep_alive : bool | Omit = omit ,
381377 proxies : Union [Iterable [session_create_params .ProxiesUnionMember0 ], bool ] | Omit = omit ,
382- proxy_settings : session_create_params .ProxySettings | Omit = omit ,
383378 region : Literal ["us-west-2" , "us-east-1" , "eu-central-1" , "ap-southeast-1" ] | Omit = omit ,
384379 api_timeout : int | Omit = omit ,
385380 user_metadata : Dict [str , object ] | Omit = omit ,
@@ -407,8 +402,6 @@ async def create(
407402 proxies: Proxy configuration. Can be true for default proxy, or an array of proxy
408403 configurations.
409404
410- proxy_settings: [NOT IN DOCS] Supplementary proxy settings. Optional.
411-
412405 region: The region where the Session should run.
413406
414407 api_timeout: Duration in seconds after which the session will automatically end. Defaults to
@@ -434,7 +427,6 @@ async def create(
434427 "extension_id" : extension_id ,
435428 "keep_alive" : keep_alive ,
436429 "proxies" : proxies ,
437- "proxy_settings" : proxy_settings ,
438430 "region" : region ,
439431 "api_timeout" : api_timeout ,
440432 "user_metadata" : user_metadata ,
0 commit comments