@@ -217,6 +217,7 @@ def bash(
217217 restart : typing .Optional [bool ] = OMIT ,
218218 list_sessions : typing .Optional [bool ] = OMIT ,
219219 check_session : typing .Optional [int ] = OMIT ,
220+ timeout : typing .Optional [float ] = OMIT ,
220221 request_options : typing .Optional [RequestOptions ] = None ,
221222 ) -> BashResponse :
222223 """
@@ -234,6 +235,8 @@ def bash(
234235
235236 check_session : typing.Optional[int]
236237
238+ timeout : typing.Optional[float]
239+
237240 request_options : typing.Optional[RequestOptions]
238241 Request-specific configuration.
239242
@@ -262,6 +265,7 @@ def bash(
262265 "restart" : restart ,
263266 "list_sessions" : list_sessions ,
264267 "check_session" : check_session ,
268+ "timeout" : timeout ,
265269 },
266270 headers = {
267271 "content-type" : "application/json" ,
@@ -988,6 +992,7 @@ async def bash(
988992 restart : typing .Optional [bool ] = OMIT ,
989993 list_sessions : typing .Optional [bool ] = OMIT ,
990994 check_session : typing .Optional [int ] = OMIT ,
995+ timeout : typing .Optional [float ] = OMIT ,
991996 request_options : typing .Optional [RequestOptions ] = None ,
992997 ) -> BashResponse :
993998 """
@@ -1005,6 +1010,8 @@ async def bash(
10051010
10061011 check_session : typing.Optional[int]
10071012
1013+ timeout : typing.Optional[float]
1014+
10081015 request_options : typing.Optional[RequestOptions]
10091016 Request-specific configuration.
10101017
@@ -1041,6 +1048,7 @@ async def main() -> None:
10411048 "restart" : restart ,
10421049 "list_sessions" : list_sessions ,
10431050 "check_session" : check_session ,
1051+ "timeout" : timeout ,
10441052 },
10451053 headers = {
10461054 "content-type" : "application/json" ,
0 commit comments