@@ -188,6 +188,7 @@ def list(
188188 * ,
189189 include_deleted : bool | Omit = omit ,
190190 limit : int | Omit = omit ,
191+ name : str | Omit = omit ,
191192 offset : int | Omit = omit ,
192193 query : str | Omit = omit ,
193194 sort_by : Literal ["created_at" , "name" , "expires_at" ] | Omit = omit ,
@@ -210,6 +211,11 @@ def list(
210211
211212 limit: Maximum number of results to return
212213
214+ name: Exact-match filter on API key name using the database collation. In production,
215+ matching is case- and accent-insensitive. Names are not required to be unique,
216+ so multiple keys may match. When status=all or include_deleted=true is set,
217+ soft-deleted keys with the same name may also match.
218+
213219 offset: Number of results to skip
214220
215221 query: Case-insensitive substring match against API key name, creator, and project. API
@@ -243,6 +249,7 @@ def list(
243249 {
244250 "include_deleted" : include_deleted ,
245251 "limit" : limit ,
252+ "name" : name ,
246253 "offset" : offset ,
247254 "query" : query ,
248255 "sort_by" : sort_by ,
@@ -499,6 +506,7 @@ def list(
499506 * ,
500507 include_deleted : bool | Omit = omit ,
501508 limit : int | Omit = omit ,
509+ name : str | Omit = omit ,
502510 offset : int | Omit = omit ,
503511 query : str | Omit = omit ,
504512 sort_by : Literal ["created_at" , "name" , "expires_at" ] | Omit = omit ,
@@ -521,6 +529,11 @@ def list(
521529
522530 limit: Maximum number of results to return
523531
532+ name: Exact-match filter on API key name using the database collation. In production,
533+ matching is case- and accent-insensitive. Names are not required to be unique,
534+ so multiple keys may match. When status=all or include_deleted=true is set,
535+ soft-deleted keys with the same name may also match.
536+
524537 offset: Number of results to skip
525538
526539 query: Case-insensitive substring match against API key name, creator, and project. API
@@ -554,6 +567,7 @@ def list(
554567 {
555568 "include_deleted" : include_deleted ,
556569 "limit" : limit ,
570+ "name" : name ,
557571 "offset" : offset ,
558572 "query" : query ,
559573 "sort_by" : sort_by ,
0 commit comments