@@ -137,8 +137,10 @@ def retrieve(
137137 def list (
138138 self ,
139139 * ,
140+ id : str | Omit = omit ,
140141 include_total_count : bool | Omit = omit ,
141142 limit : int | Omit = omit ,
143+ name : str | Omit = omit ,
142144 starting_after : str | Omit = omit ,
143145 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
144146 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -151,11 +153,15 @@ def list(
151153 [Beta] List all active axons.
152154
153155 Args:
156+ id: Filter by axon ID.
157+
154158 include_total_count: If true (default), includes total_count in the response. Set to false to skip
155159 the count query for better performance on large datasets.
156160
157161 limit: The limit of items to return. Default is 20. Max is 5000.
158162
163+ name: Filter by axon name (prefix match supported).
164+
159165 starting_after: Load the next page of data starting after the item with the given ID.
160166
161167 extra_headers: Send extra headers
@@ -175,8 +181,10 @@ def list(
175181 timeout = timeout ,
176182 query = maybe_transform (
177183 {
184+ "id" : id ,
178185 "include_total_count" : include_total_count ,
179186 "limit" : limit ,
187+ "name" : name ,
180188 "starting_after" : starting_after ,
181189 },
182190 axon_list_params .AxonListParams ,
@@ -385,8 +393,10 @@ async def retrieve(
385393 async def list (
386394 self ,
387395 * ,
396+ id : str | Omit = omit ,
388397 include_total_count : bool | Omit = omit ,
389398 limit : int | Omit = omit ,
399+ name : str | Omit = omit ,
390400 starting_after : str | Omit = omit ,
391401 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
392402 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -399,11 +409,15 @@ async def list(
399409 [Beta] List all active axons.
400410
401411 Args:
412+ id: Filter by axon ID.
413+
402414 include_total_count: If true (default), includes total_count in the response. Set to false to skip
403415 the count query for better performance on large datasets.
404416
405417 limit: The limit of items to return. Default is 20. Max is 5000.
406418
419+ name: Filter by axon name (prefix match supported).
420+
407421 starting_after: Load the next page of data starting after the item with the given ID.
408422
409423 extra_headers: Send extra headers
@@ -423,8 +437,10 @@ async def list(
423437 timeout = timeout ,
424438 query = await async_maybe_transform (
425439 {
440+ "id" : id ,
426441 "include_total_count" : include_total_count ,
427442 "limit" : limit ,
443+ "name" : name ,
428444 "starting_after" : starting_after ,
429445 },
430446 axon_list_params .AxonListParams ,
0 commit comments