@@ -112,6 +112,7 @@ def list(
112112 self ,
113113 * ,
114114 account_id : str ,
115+ name : str | Omit = omit ,
115116 page : float | Omit = omit ,
116117 per_page : float | Omit = omit ,
117118 pipeline_id : str | Omit = omit ,
@@ -128,6 +129,8 @@ def list(
128129 Args:
129130 account_id: Specifies the public ID of the account.
130131
132+ name: Filters sinks by name (case-insensitive substring).
133+
131134 extra_headers: Send extra headers
132135
133136 extra_query: Add additional query parameters to the request
@@ -148,6 +151,7 @@ def list(
148151 timeout = timeout ,
149152 query = maybe_transform (
150153 {
154+ "name" : name ,
151155 "page" : page ,
152156 "per_page" : per_page ,
153157 "pipeline_id" : pipeline_id ,
@@ -339,6 +343,7 @@ def list(
339343 self ,
340344 * ,
341345 account_id : str ,
346+ name : str | Omit = omit ,
342347 page : float | Omit = omit ,
343348 per_page : float | Omit = omit ,
344349 pipeline_id : str | Omit = omit ,
@@ -355,6 +360,8 @@ def list(
355360 Args:
356361 account_id: Specifies the public ID of the account.
357362
363+ name: Filters sinks by name (case-insensitive substring).
364+
358365 extra_headers: Send extra headers
359366
360367 extra_query: Add additional query parameters to the request
@@ -375,6 +382,7 @@ def list(
375382 timeout = timeout ,
376383 query = maybe_transform (
377384 {
385+ "name" : name ,
378386 "page" : page ,
379387 "per_page" : per_page ,
380388 "pipeline_id" : pipeline_id ,
0 commit comments