@@ -310,6 +310,7 @@ def list(
310310 limit : int | Omit = omit ,
311311 offset : int | Omit = omit ,
312312 profile_name : str | Omit = omit ,
313+ query : str | Omit = omit ,
313314 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
314315 # The extra values given here take precedence over values defined on the client or passed to this method.
315316 extra_headers : Headers | None = None ,
@@ -329,6 +330,8 @@ def list(
329330
330331 profile_name: Filter by profile name
331332
333+ query: Search auth connections by ID, domain, or profile name.
334+
332335 extra_headers: Send extra headers
333336
334337 extra_query: Add additional query parameters to the request
@@ -351,6 +354,7 @@ def list(
351354 "limit" : limit ,
352355 "offset" : offset ,
353356 "profile_name" : profile_name ,
357+ "query" : query ,
354358 },
355359 connection_list_params .ConnectionListParams ,
356360 ),
@@ -827,6 +831,7 @@ def list(
827831 limit : int | Omit = omit ,
828832 offset : int | Omit = omit ,
829833 profile_name : str | Omit = omit ,
834+ query : str | Omit = omit ,
830835 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
831836 # The extra values given here take precedence over values defined on the client or passed to this method.
832837 extra_headers : Headers | None = None ,
@@ -846,6 +851,8 @@ def list(
846851
847852 profile_name: Filter by profile name
848853
854+ query: Search auth connections by ID, domain, or profile name.
855+
849856 extra_headers: Send extra headers
850857
851858 extra_query: Add additional query parameters to the request
@@ -868,6 +875,7 @@ def list(
868875 "limit" : limit ,
869876 "offset" : offset ,
870877 "profile_name" : profile_name ,
878+ "query" : query ,
871879 },
872880 connection_list_params .ConnectionListParams ,
873881 ),
0 commit comments