@@ -312,18 +312,18 @@ def delete_group_with_http_info(self, group_id, **kwargs): # noqa: E501
312312 collection_formats = collection_formats ,
313313 _request_auth = local_var_params .get ('_request_auth' ))
314314
315- def get_all_groups (self , page , size , ** kwargs ): # noqa: E501
315+ def get_all_groups (self , ** kwargs ): # noqa: E501
316316 """Get groups # noqa: E501
317317
318318 This method makes a synchronous HTTP request by default. To make an
319319 asynchronous HTTP request, please pass async_req=True
320320
321- >>> thread = api.get_all_groups(page, size, async_req=True)
321+ >>> thread = api.get_all_groups(async_req=True)
322322 >>> result = thread.get()
323323
324- :param page: The page number to get a list of persons or groups. (required)
324+ :param page: The page number to get a list of persons or groups.
325325 :type page: int
326- :param size: The page size with a list of persons or groups, items. (required)
326+ :param size: The page size with a list of persons or groups, items.
327327 :type size: int
328328 :param x_request_id: Request header label.
329329 :type x_request_id: str
@@ -343,20 +343,20 @@ def get_all_groups(self, page, size, **kwargs): # noqa: E501
343343 :rtype: GroupPage
344344 """
345345 kwargs ['_return_http_data_only' ] = True
346- return self .get_all_groups_with_http_info (page , size , ** kwargs ) # noqa: E501
346+ return self .get_all_groups_with_http_info (** kwargs ) # noqa: E501
347347
348- def get_all_groups_with_http_info (self , page , size , ** kwargs ): # noqa: E501
348+ def get_all_groups_with_http_info (self , ** kwargs ): # noqa: E501
349349 """Get groups # noqa: E501
350350
351351 This method makes a synchronous HTTP request by default. To make an
352352 asynchronous HTTP request, please pass async_req=True
353353
354- >>> thread = api.get_all_groups_with_http_info(page, size, async_req=True)
354+ >>> thread = api.get_all_groups_with_http_info(async_req=True)
355355 >>> result = thread.get()
356356
357- :param page: The page number to get a list of persons or groups. (required)
357+ :param page: The page number to get a list of persons or groups.
358358 :type page: int
359- :param size: The page size with a list of persons or groups, items. (required)
359+ :param size: The page size with a list of persons or groups, items.
360360 :type size: int
361361 :param x_request_id: Request header label.
362362 :type x_request_id: str
@@ -408,14 +408,6 @@ def get_all_groups_with_http_info(self, page, size, **kwargs): # noqa: E501
408408 )
409409 local_var_params [key ] = val
410410 del local_var_params ['kwargs' ]
411- # verify the required parameter 'page' is set
412- if self .api_client .client_side_validation and ('page' not in local_var_params or # noqa: E501
413- local_var_params ['page' ] is None ): # noqa: E501
414- raise ApiValueError ("Missing the required parameter `page` when calling `get_all_groups`" ) # noqa: E501
415- # verify the required parameter 'size' is set
416- if self .api_client .client_side_validation and ('size' not in local_var_params or # noqa: E501
417- local_var_params ['size' ] is None ): # noqa: E501
418- raise ApiValueError ("Missing the required parameter `size` when calling `get_all_groups`" ) # noqa: E501
419411
420412 collection_formats = {}
421413
@@ -459,21 +451,21 @@ def get_all_groups_with_http_info(self, page, size, **kwargs): # noqa: E501
459451 collection_formats = collection_formats ,
460452 _request_auth = local_var_params .get ('_request_auth' ))
461453
462- def get_all_persons_by_group_id (self , page , size , group_id , ** kwargs ): # noqa: E501
454+ def get_all_persons_by_group_id (self , group_id , ** kwargs ): # noqa: E501
463455 """Get group persons # noqa: E501
464456
465457 This method makes a synchronous HTTP request by default. To make an
466458 asynchronous HTTP request, please pass async_req=True
467459
468- >>> thread = api.get_all_persons_by_group_id(page, size, group_id, async_req=True)
460+ >>> thread = api.get_all_persons_by_group_id(group_id, async_req=True)
469461 >>> result = thread.get()
470462
471- :param page: The page number to get a list of persons or groups. (required)
472- :type page: int
473- :param size: The page size with a list of persons or groups, items. (required)
474- :type size: int
475463 :param group_id: Group ID. (required)
476464 :type group_id: str
465+ :param page: The page number to get a list of persons or groups.
466+ :type page: int
467+ :param size: The page size with a list of persons or groups, items.
468+ :type size: int
477469 :param x_request_id: Request header label.
478470 :type x_request_id: str
479471 :param async_req: Whether to execute the request asynchronously.
@@ -492,23 +484,23 @@ def get_all_persons_by_group_id(self, page, size, group_id, **kwargs): # noqa:
492484 :rtype: PersonsPage
493485 """
494486 kwargs ['_return_http_data_only' ] = True
495- return self .get_all_persons_by_group_id_with_http_info (page , size , group_id , ** kwargs ) # noqa: E501
487+ return self .get_all_persons_by_group_id_with_http_info (group_id , ** kwargs ) # noqa: E501
496488
497- def get_all_persons_by_group_id_with_http_info (self , page , size , group_id , ** kwargs ): # noqa: E501
489+ def get_all_persons_by_group_id_with_http_info (self , group_id , ** kwargs ): # noqa: E501
498490 """Get group persons # noqa: E501
499491
500492 This method makes a synchronous HTTP request by default. To make an
501493 asynchronous HTTP request, please pass async_req=True
502494
503- >>> thread = api.get_all_persons_by_group_id_with_http_info(page, size, group_id, async_req=True)
495+ >>> thread = api.get_all_persons_by_group_id_with_http_info(group_id, async_req=True)
504496 >>> result = thread.get()
505497
506- :param page: The page number to get a list of persons or groups. (required)
507- :type page: int
508- :param size: The page size with a list of persons or groups, items. (required)
509- :type size: int
510498 :param group_id: Group ID. (required)
511499 :type group_id: str
500+ :param page: The page number to get a list of persons or groups.
501+ :type page: int
502+ :param size: The page size with a list of persons or groups, items.
503+ :type size: int
512504 :param x_request_id: Request header label.
513505 :type x_request_id: str
514506 :param async_req: Whether to execute the request asynchronously.
@@ -537,9 +529,9 @@ def get_all_persons_by_group_id_with_http_info(self, page, size, group_id, **kwa
537529 local_var_params = locals ()
538530
539531 all_params = [
532+ 'group_id'
540533 'page'
541534 'size'
542- 'group_id'
543535 'x_request_id'
544536 ]
545537 all_params .extend (
@@ -560,14 +552,6 @@ def get_all_persons_by_group_id_with_http_info(self, page, size, group_id, **kwa
560552 )
561553 local_var_params [key ] = val
562554 del local_var_params ['kwargs' ]
563- # verify the required parameter 'page' is set
564- if self .api_client .client_side_validation and ('page' not in local_var_params or # noqa: E501
565- local_var_params ['page' ] is None ): # noqa: E501
566- raise ApiValueError ("Missing the required parameter `page` when calling `get_all_persons_by_group_id`" ) # noqa: E501
567- # verify the required parameter 'size' is set
568- if self .api_client .client_side_validation and ('size' not in local_var_params or # noqa: E501
569- local_var_params ['size' ] is None ): # noqa: E501
570- raise ApiValueError ("Missing the required parameter `size` when calling `get_all_persons_by_group_id`" ) # noqa: E501
571555 # verify the required parameter 'group_id' is set
572556 if self .api_client .client_side_validation and ('group_id' not in local_var_params or # noqa: E501
573557 local_var_params ['group_id' ] is None ): # noqa: E501
0 commit comments