@@ -38,6 +38,7 @@ def list(
3838 id : str ,
3939 * ,
4040 execution_id : str | NotGiven = NOT_GIVEN ,
41+ shell_name : str | NotGiven = NOT_GIVEN ,
4142 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
4243 # The extra values given here take precedence over values defined on the client or passed to this method.
4344 extra_headers : Headers | None = None ,
@@ -51,6 +52,8 @@ def list(
5152 Args:
5253 execution_id: Id of execution to filter logs by.
5354
55+ shell_name: Shell Name to filter logs by.
56+
5457 extra_headers: Send extra headers
5558
5659 extra_query: Add additional query parameters to the request
@@ -68,7 +71,13 @@ def list(
6871 extra_query = extra_query ,
6972 extra_body = extra_body ,
7073 timeout = timeout ,
71- query = maybe_transform ({"execution_id" : execution_id }, log_list_params .LogListParams ),
74+ query = maybe_transform (
75+ {
76+ "execution_id" : execution_id ,
77+ "shell_name" : shell_name ,
78+ },
79+ log_list_params .LogListParams ,
80+ ),
7281 ),
7382 cast_to = DevboxLogsListView ,
7483 )
@@ -88,6 +97,7 @@ async def list(
8897 id : str ,
8998 * ,
9099 execution_id : str | NotGiven = NOT_GIVEN ,
100+ shell_name : str | NotGiven = NOT_GIVEN ,
91101 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
92102 # The extra values given here take precedence over values defined on the client or passed to this method.
93103 extra_headers : Headers | None = None ,
@@ -101,6 +111,8 @@ async def list(
101111 Args:
102112 execution_id: Id of execution to filter logs by.
103113
114+ shell_name: Shell Name to filter logs by.
115+
104116 extra_headers: Send extra headers
105117
106118 extra_query: Add additional query parameters to the request
@@ -118,7 +130,13 @@ async def list(
118130 extra_query = extra_query ,
119131 extra_body = extra_body ,
120132 timeout = timeout ,
121- query = await async_maybe_transform ({"execution_id" : execution_id }, log_list_params .LogListParams ),
133+ query = await async_maybe_transform (
134+ {
135+ "execution_id" : execution_id ,
136+ "shell_name" : shell_name ,
137+ },
138+ log_list_params .LogListParams ,
139+ ),
122140 ),
123141 cast_to = DevboxLogsListView ,
124142 )
0 commit comments