@@ -270,6 +270,7 @@ def list(
270270 * ,
271271 token : str | Omit = omit ,
272272 page_size : int | Omit = omit ,
273+ filter : group_list_params .Filter | Omit = omit ,
273274 pagination : group_list_params .Pagination | Omit = omit ,
274275 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
275276 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -314,6 +315,8 @@ def list(
314315 All organization members can list groups (transparency model).
315316
316317 Args:
318+ filter: filter contains options for filtering the list of groups.
319+
317320 pagination: pagination contains the pagination options for listing groups
318321
319322 extra_headers: Send extra headers
@@ -327,7 +330,13 @@ def list(
327330 return self ._get_api_list (
328331 "/gitpod.v1.GroupService/ListGroups" ,
329332 page = SyncGroupsPage [Group ],
330- body = maybe_transform ({"pagination" : pagination }, group_list_params .GroupListParams ),
333+ body = maybe_transform (
334+ {
335+ "filter" : filter ,
336+ "pagination" : pagination ,
337+ },
338+ group_list_params .GroupListParams ,
339+ ),
331340 options = make_request_options (
332341 extra_headers = extra_headers ,
333342 extra_query = extra_query ,
@@ -614,6 +623,7 @@ def list(
614623 * ,
615624 token : str | Omit = omit ,
616625 page_size : int | Omit = omit ,
626+ filter : group_list_params .Filter | Omit = omit ,
617627 pagination : group_list_params .Pagination | Omit = omit ,
618628 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
619629 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -658,6 +668,8 @@ def list(
658668 All organization members can list groups (transparency model).
659669
660670 Args:
671+ filter: filter contains options for filtering the list of groups.
672+
661673 pagination: pagination contains the pagination options for listing groups
662674
663675 extra_headers: Send extra headers
@@ -671,7 +683,13 @@ def list(
671683 return self ._get_api_list (
672684 "/gitpod.v1.GroupService/ListGroups" ,
673685 page = AsyncGroupsPage [Group ],
674- body = maybe_transform ({"pagination" : pagination }, group_list_params .GroupListParams ),
686+ body = maybe_transform (
687+ {
688+ "filter" : filter ,
689+ "pagination" : pagination ,
690+ },
691+ group_list_params .GroupListParams ,
692+ ),
675693 options = make_request_options (
676694 extra_headers = extra_headers ,
677695 extra_query = extra_query ,
0 commit comments