@@ -247,6 +247,7 @@ def list(
247247 include_total_count : bool | Omit = omit ,
248248 limit : int | Omit = omit ,
249249 name : str | Omit = omit ,
250+ search : str | Omit = omit ,
250251 starting_after : str | Omit = omit ,
251252 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
252253 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -266,6 +267,8 @@ def list(
266267
267268 name: Filter by name
268269
270+ search: Search by benchmark ID or name.
271+
269272 starting_after: Load the next page of data starting after the item with the given ID.
270273
271274 extra_headers: Send extra headers
@@ -289,6 +292,7 @@ def list(
289292 "include_total_count" : include_total_count ,
290293 "limit" : limit ,
291294 "name" : name ,
295+ "search" : search ,
292296 "starting_after" : starting_after ,
293297 },
294298 benchmark_list_params .BenchmarkListParams ,
@@ -351,6 +355,8 @@ def list_public(
351355 * ,
352356 include_total_count : bool | Omit = omit ,
353357 limit : int | Omit = omit ,
358+ name : str | Omit = omit ,
359+ search : str | Omit = omit ,
354360 starting_after : str | Omit = omit ,
355361 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
356362 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -368,6 +374,10 @@ def list_public(
368374
369375 limit: The limit of items to return. Default is 20. Max is 5000.
370376
377+ name: Filter by name
378+
379+ search: Search by benchmark ID or name.
380+
371381 starting_after: Load the next page of data starting after the item with the given ID.
372382
373383 extra_headers: Send extra headers
@@ -390,6 +400,8 @@ def list_public(
390400 {
391401 "include_total_count" : include_total_count ,
392402 "limit" : limit ,
403+ "name" : name ,
404+ "search" : search ,
393405 "starting_after" : starting_after ,
394406 },
395407 benchmark_list_public_params .BenchmarkListPublicParams ,
@@ -722,6 +734,7 @@ def list(
722734 include_total_count : bool | Omit = omit ,
723735 limit : int | Omit = omit ,
724736 name : str | Omit = omit ,
737+ search : str | Omit = omit ,
725738 starting_after : str | Omit = omit ,
726739 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
727740 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -741,6 +754,8 @@ def list(
741754
742755 name: Filter by name
743756
757+ search: Search by benchmark ID or name.
758+
744759 starting_after: Load the next page of data starting after the item with the given ID.
745760
746761 extra_headers: Send extra headers
@@ -764,6 +779,7 @@ def list(
764779 "include_total_count" : include_total_count ,
765780 "limit" : limit ,
766781 "name" : name ,
782+ "search" : search ,
767783 "starting_after" : starting_after ,
768784 },
769785 benchmark_list_params .BenchmarkListParams ,
@@ -826,6 +842,8 @@ def list_public(
826842 * ,
827843 include_total_count : bool | Omit = omit ,
828844 limit : int | Omit = omit ,
845+ name : str | Omit = omit ,
846+ search : str | Omit = omit ,
829847 starting_after : str | Omit = omit ,
830848 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
831849 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -843,6 +861,10 @@ def list_public(
843861
844862 limit: The limit of items to return. Default is 20. Max is 5000.
845863
864+ name: Filter by name
865+
866+ search: Search by benchmark ID or name.
867+
846868 starting_after: Load the next page of data starting after the item with the given ID.
847869
848870 extra_headers: Send extra headers
@@ -865,6 +887,8 @@ def list_public(
865887 {
866888 "include_total_count" : include_total_count ,
867889 "limit" : limit ,
890+ "name" : name ,
891+ "search" : search ,
868892 "starting_after" : starting_after ,
869893 },
870894 benchmark_list_public_params .BenchmarkListPublicParams ,
0 commit comments