@@ -887,6 +887,7 @@ def bash(
887887 restart : Optional [bool ] = OMIT ,
888888 list_sessions : Optional [bool ] = OMIT ,
889889 check_session : Optional [int ] = OMIT ,
890+ timeout : Optional [float ] = None ,
890891 request_options : Optional [RequestOptions ] = None ,
891892 ) -> Optional [Any ]:
892893 return self ._client .instance .bash (
@@ -896,6 +897,7 @@ def bash(
896897 restart = restart ,
897898 list_sessions = list_sessions ,
898899 check_session = check_session ,
900+ timeout = timeout ,
899901 request_options = request_options
900902 )
901903
@@ -1411,6 +1413,7 @@ async def bash(
14111413 restart : Optional [bool ] = OMIT ,
14121414 list_sessions : Optional [bool ] = OMIT ,
14131415 check_session : Optional [int ] = OMIT ,
1416+ timeout : Optional [float ] = None ,
14141417 request_options : Optional [RequestOptions ] = None ,
14151418 ) -> Optional [Any ]:
14161419 return await self ._client .instance .bash (
@@ -1420,6 +1423,7 @@ async def bash(
14201423 restart = restart ,
14211424 list_sessions = list_sessions ,
14221425 check_session = check_session ,
1426+ timeout = timeout ,
14231427 request_options = request_options
14241428 )
14251429
0 commit comments