@@ -8104,7 +8104,7 @@ def _rbac_roles_destroy_serialize(
81048104 @validate_call
81058105 def rbac_roles_list (
81068106 self ,
8107- group__name : Optional [StrictStr ] = None ,
8107+ name : Optional [StrictStr ] = None ,
81088108 ordering : Annotated [Optional [StrictStr ], Field (description = "Which field to use when ordering the results." )] = None ,
81098109 page : Annotated [Optional [StrictInt ], Field (description = "A page number within the paginated result set." )] = None ,
81108110 page_size : Annotated [Optional [StrictInt ], Field (description = "Number of results to return per page." )] = None ,
@@ -8126,8 +8126,8 @@ def rbac_roles_list(
81268126
81278127 Role viewset
81288128
8129- :param group__name :
8130- :type group__name : str
8129+ :param name :
8130+ :type name : str
81318131 :param ordering: Which field to use when ordering the results.
81328132 :type ordering: str
81338133 :param page: A page number within the paginated result set.
@@ -8159,7 +8159,7 @@ def rbac_roles_list(
81598159 """ # noqa: E501
81608160
81618161 _param = self ._rbac_roles_list_serialize (
8162- group__name = group__name ,
8162+ name = name ,
81638163 ordering = ordering ,
81648164 page = page ,
81658165 page_size = page_size ,
@@ -8189,7 +8189,7 @@ def rbac_roles_list(
81898189 @validate_call
81908190 def rbac_roles_list_with_http_info (
81918191 self ,
8192- group__name : Optional [StrictStr ] = None ,
8192+ name : Optional [StrictStr ] = None ,
81938193 ordering : Annotated [Optional [StrictStr ], Field (description = "Which field to use when ordering the results." )] = None ,
81948194 page : Annotated [Optional [StrictInt ], Field (description = "A page number within the paginated result set." )] = None ,
81958195 page_size : Annotated [Optional [StrictInt ], Field (description = "Number of results to return per page." )] = None ,
@@ -8211,8 +8211,8 @@ def rbac_roles_list_with_http_info(
82118211
82128212 Role viewset
82138213
8214- :param group__name :
8215- :type group__name : str
8214+ :param name :
8215+ :type name : str
82168216 :param ordering: Which field to use when ordering the results.
82178217 :type ordering: str
82188218 :param page: A page number within the paginated result set.
@@ -8244,7 +8244,7 @@ def rbac_roles_list_with_http_info(
82448244 """ # noqa: E501
82458245
82468246 _param = self ._rbac_roles_list_serialize (
8247- group__name = group__name ,
8247+ name = name ,
82488248 ordering = ordering ,
82498249 page = page ,
82508250 page_size = page_size ,
@@ -8274,7 +8274,7 @@ def rbac_roles_list_with_http_info(
82748274 @validate_call
82758275 def rbac_roles_list_without_preload_content (
82768276 self ,
8277- group__name : Optional [StrictStr ] = None ,
8277+ name : Optional [StrictStr ] = None ,
82788278 ordering : Annotated [Optional [StrictStr ], Field (description = "Which field to use when ordering the results." )] = None ,
82798279 page : Annotated [Optional [StrictInt ], Field (description = "A page number within the paginated result set." )] = None ,
82808280 page_size : Annotated [Optional [StrictInt ], Field (description = "Number of results to return per page." )] = None ,
@@ -8296,8 +8296,8 @@ def rbac_roles_list_without_preload_content(
82968296
82978297 Role viewset
82988298
8299- :param group__name :
8300- :type group__name : str
8299+ :param name :
8300+ :type name : str
83018301 :param ordering: Which field to use when ordering the results.
83028302 :type ordering: str
83038303 :param page: A page number within the paginated result set.
@@ -8329,7 +8329,7 @@ def rbac_roles_list_without_preload_content(
83298329 """ # noqa: E501
83308330
83318331 _param = self ._rbac_roles_list_serialize (
8332- group__name = group__name ,
8332+ name = name ,
83338333 ordering = ordering ,
83348334 page = page ,
83358335 page_size = page_size ,
@@ -8354,7 +8354,7 @@ def rbac_roles_list_without_preload_content(
83548354
83558355 def _rbac_roles_list_serialize (
83568356 self ,
8357- group__name ,
8357+ name ,
83588358 ordering ,
83598359 page ,
83608360 page_size ,
@@ -8381,9 +8381,9 @@ def _rbac_roles_list_serialize(
83818381
83828382 # process the path parameters
83838383 # process the query parameters
8384- if group__name is not None :
8384+ if name is not None :
83858385
8386- _query_params .append (('group__name ' , group__name ))
8386+ _query_params .append (('name ' , name ))
83878387
83888388 if ordering is not None :
83898389
0 commit comments