qi-compute-api-client 0.27.0__py3-none-any.whl → 0.32.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of qi-compute-api-client might be problematic. Click here for more details.

Files changed (50) hide show
  1. compute_api_client/api/algorithms_api.py +5 -27
  2. compute_api_client/api/backend_api.py +3 -6
  3. compute_api_client/api/backend_types_api.py +2 -4
  4. compute_api_client/api/batch_jobs_api.py +4 -25
  5. compute_api_client/api/commits_api.py +4 -8
  6. compute_api_client/api/files_api.py +4 -8
  7. compute_api_client/api/final_results_api.py +3 -6
  8. compute_api_client/api/jobs_api.py +5 -10
  9. compute_api_client/api/languages_api.py +2 -4
  10. compute_api_client/api/members_api.py +4 -25
  11. compute_api_client/api/metadata_api.py +2 -4
  12. compute_api_client/api/permissions_api.py +4 -8
  13. compute_api_client/api/projects_api.py +6 -12
  14. compute_api_client/api/reservations_api.py +4 -8
  15. compute_api_client/api/results_api.py +549 -6
  16. compute_api_client/api/teams_api.py +2 -4
  17. compute_api_client/api/transactions_api.py +32 -34
  18. compute_api_client/api/users_api.py +4 -8
  19. compute_api_client/configuration.py +0 -9
  20. compute_api_client/docs/AlgorithmIn.md +1 -1
  21. compute_api_client/docs/AlgorithmsApi.md +7 -44
  22. compute_api_client/docs/BackendApi.md +3 -24
  23. compute_api_client/docs/BackendTypesApi.md +2 -16
  24. compute_api_client/docs/BatchJobsApi.md +6 -36
  25. compute_api_client/docs/CommitsApi.md +4 -32
  26. compute_api_client/docs/FilesApi.md +4 -32
  27. compute_api_client/docs/FinalResultsApi.md +3 -24
  28. compute_api_client/docs/JobsApi.md +5 -40
  29. compute_api_client/docs/LanguagesApi.md +2 -16
  30. compute_api_client/docs/MembersApi.md +6 -36
  31. compute_api_client/docs/MetadataApi.md +2 -16
  32. compute_api_client/docs/PermissionsApi.md +4 -32
  33. compute_api_client/docs/ProjectsApi.md +6 -48
  34. compute_api_client/docs/ReservationsApi.md +4 -32
  35. compute_api_client/docs/Result.md +0 -1
  36. compute_api_client/docs/ResultIn.md +0 -1
  37. compute_api_client/docs/ResultsApi.md +109 -16
  38. compute_api_client/docs/TeamsApi.md +2 -16
  39. compute_api_client/docs/Transaction.md +1 -1
  40. compute_api_client/docs/TransactionsApi.md +8 -22
  41. compute_api_client/docs/UsersApi.md +4 -32
  42. compute_api_client/models/algorithm.py +1 -6
  43. compute_api_client/models/algorithm_in.py +1 -6
  44. compute_api_client/models/result.py +1 -5
  45. compute_api_client/models/result_in.py +1 -5
  46. compute_api_client/models/transaction.py +6 -6
  47. {qi_compute_api_client-0.27.0.dist-info → qi_compute_api_client-0.32.0.dist-info}/METADATA +3 -14
  48. {qi_compute_api_client-0.27.0.dist-info → qi_compute_api_client-0.32.0.dist-info}/RECORD +50 -50
  49. {qi_compute_api_client-0.27.0.dist-info → qi_compute_api_client-0.32.0.dist-info}/WHEEL +1 -1
  50. {qi_compute_api_client-0.27.0.dist-info → qi_compute_api_client-0.32.0.dist-info}/LICENSE.md +0 -0
@@ -309,8 +309,7 @@ class AlgorithmsApi:
309
309
 
310
310
  # authentication setting
311
311
  _auth_settings: List[str] = [
312
- 'user_bearer',
313
- 'user'
312
+ 'user_bearer'
314
313
  ]
315
314
 
316
315
  return self.api_client.param_serialize(
@@ -569,8 +568,7 @@ class AlgorithmsApi:
569
568
 
570
569
  # authentication setting
571
570
  _auth_settings: List[str] = [
572
- 'user_bearer',
573
- 'user'
571
+ 'user_bearer'
574
572
  ]
575
573
 
576
574
  return self.api_client.param_serialize(
@@ -839,8 +837,7 @@ class AlgorithmsApi:
839
837
  # authentication setting
840
838
  _auth_settings: List[str] = [
841
839
  'user_bearer',
842
- 'backend',
843
- 'user'
840
+ 'backend'
844
841
  ]
845
842
 
846
843
  return self.api_client.param_serialize(
@@ -875,7 +872,6 @@ class AlgorithmsApi:
875
872
  shared: Optional[ShareType] = None,
876
873
  link__isnull: Optional[StrictBool] = None,
877
874
  link: Optional[StrictStr] = None,
878
- name__isnull: Optional[StrictBool] = None,
879
875
  name: Optional[StrictStr] = None,
880
876
  _request_timeout: Union[
881
877
  None,
@@ -916,8 +912,6 @@ class AlgorithmsApi:
916
912
  :type link__isnull: bool
917
913
  :param link:
918
914
  :type link: str
919
- :param name__isnull:
920
- :type name__isnull: bool
921
915
  :param name:
922
916
  :type name: str
923
917
  :param _request_timeout: timeout setting for this request. If one
@@ -954,7 +948,6 @@ class AlgorithmsApi:
954
948
  shared=shared,
955
949
  link__isnull=link__isnull,
956
950
  link=link,
957
- name__isnull=name__isnull,
958
951
  name=name,
959
952
  _request_auth=_request_auth,
960
953
  _content_type=_content_type,
@@ -992,7 +985,6 @@ class AlgorithmsApi:
992
985
  shared: Optional[ShareType] = None,
993
986
  link__isnull: Optional[StrictBool] = None,
994
987
  link: Optional[StrictStr] = None,
995
- name__isnull: Optional[StrictBool] = None,
996
988
  name: Optional[StrictStr] = None,
997
989
  _request_timeout: Union[
998
990
  None,
@@ -1033,8 +1025,6 @@ class AlgorithmsApi:
1033
1025
  :type link__isnull: bool
1034
1026
  :param link:
1035
1027
  :type link: str
1036
- :param name__isnull:
1037
- :type name__isnull: bool
1038
1028
  :param name:
1039
1029
  :type name: str
1040
1030
  :param _request_timeout: timeout setting for this request. If one
@@ -1071,7 +1061,6 @@ class AlgorithmsApi:
1071
1061
  shared=shared,
1072
1062
  link__isnull=link__isnull,
1073
1063
  link=link,
1074
- name__isnull=name__isnull,
1075
1064
  name=name,
1076
1065
  _request_auth=_request_auth,
1077
1066
  _content_type=_content_type,
@@ -1109,7 +1098,6 @@ class AlgorithmsApi:
1109
1098
  shared: Optional[ShareType] = None,
1110
1099
  link__isnull: Optional[StrictBool] = None,
1111
1100
  link: Optional[StrictStr] = None,
1112
- name__isnull: Optional[StrictBool] = None,
1113
1101
  name: Optional[StrictStr] = None,
1114
1102
  _request_timeout: Union[
1115
1103
  None,
@@ -1150,8 +1138,6 @@ class AlgorithmsApi:
1150
1138
  :type link__isnull: bool
1151
1139
  :param link:
1152
1140
  :type link: str
1153
- :param name__isnull:
1154
- :type name__isnull: bool
1155
1141
  :param name:
1156
1142
  :type name: str
1157
1143
  :param _request_timeout: timeout setting for this request. If one
@@ -1188,7 +1174,6 @@ class AlgorithmsApi:
1188
1174
  shared=shared,
1189
1175
  link__isnull=link__isnull,
1190
1176
  link=link,
1191
- name__isnull=name__isnull,
1192
1177
  name=name,
1193
1178
  _request_auth=_request_auth,
1194
1179
  _content_type=_content_type,
@@ -1221,7 +1206,6 @@ class AlgorithmsApi:
1221
1206
  shared,
1222
1207
  link__isnull,
1223
1208
  link,
1224
- name__isnull,
1225
1209
  name,
1226
1210
  _request_auth,
1227
1211
  _content_type,
@@ -1288,10 +1272,6 @@ class AlgorithmsApi:
1288
1272
 
1289
1273
  _query_params.append(('link', link))
1290
1274
 
1291
- if name__isnull is not None:
1292
-
1293
- _query_params.append(('name__isnull', name__isnull))
1294
-
1295
1275
  if name is not None:
1296
1276
 
1297
1277
  _query_params.append(('name', name))
@@ -1311,8 +1291,7 @@ class AlgorithmsApi:
1311
1291
 
1312
1292
  # authentication setting
1313
1293
  _auth_settings: List[str] = [
1314
- 'user_bearer',
1315
- 'user'
1294
+ 'user_bearer'
1316
1295
  ]
1317
1296
 
1318
1297
  return self.api_client.param_serialize(
@@ -1608,8 +1587,7 @@ class AlgorithmsApi:
1608
1587
 
1609
1588
  # authentication setting
1610
1589
  _auth_settings: List[str] = [
1611
- 'user_bearer',
1612
- 'user'
1590
+ 'user_bearer'
1613
1591
  ]
1614
1592
 
1615
1593
  return self.api_client.param_serialize(
@@ -310,8 +310,7 @@ class BackendApi:
310
310
 
311
311
  # authentication setting
312
312
  _auth_settings: List[str] = [
313
- 'user_bearer',
314
- 'user'
313
+ 'user_bearer'
315
314
  ]
316
315
 
317
316
  return self.api_client.param_serialize(
@@ -579,8 +578,7 @@ class BackendApi:
579
578
 
580
579
  # authentication setting
581
580
  _auth_settings: List[str] = [
582
- 'user_bearer',
583
- 'user'
581
+ 'user_bearer'
584
582
  ]
585
583
 
586
584
  return self.api_client.param_serialize(
@@ -1256,8 +1254,7 @@ class BackendApi:
1256
1254
 
1257
1255
  # authentication setting
1258
1256
  _auth_settings: List[str] = [
1259
- 'user_bearer',
1260
- 'user'
1257
+ 'user_bearer'
1261
1258
  ]
1262
1259
 
1263
1260
  return self.api_client.param_serialize(
@@ -295,8 +295,7 @@ class BackendTypesApi:
295
295
 
296
296
  # authentication setting
297
297
  _auth_settings: List[str] = [
298
- 'user_bearer',
299
- 'user'
298
+ 'user_bearer'
300
299
  ]
301
300
 
302
301
  return self.api_client.param_serialize(
@@ -767,8 +766,7 @@ class BackendTypesApi:
767
766
 
768
767
  # authentication setting
769
768
  _auth_settings: List[str] = [
770
- 'user_bearer',
771
- 'user'
769
+ 'user_bearer'
772
770
  ]
773
771
 
774
772
  return self.api_client.param_serialize(
@@ -309,8 +309,7 @@ class BatchJobsApi:
309
309
 
310
310
  # authentication setting
311
311
  _auth_settings: List[str] = [
312
- 'user_bearer',
313
- 'user'
312
+ 'user_bearer'
314
313
  ]
315
314
 
316
315
  return self.api_client.param_serialize(
@@ -578,8 +577,7 @@ class BatchJobsApi:
578
577
 
579
578
  # authentication setting
580
579
  _auth_settings: List[str] = [
581
- 'user_bearer',
582
- 'user'
580
+ 'user_bearer'
583
581
  ]
584
582
 
585
583
  return self.api_client.param_serialize(
@@ -848,8 +846,7 @@ class BatchJobsApi:
848
846
  # authentication setting
849
847
  _auth_settings: List[str] = [
850
848
  'user_bearer',
851
- 'backend',
852
- 'user'
849
+ 'backend'
853
850
  ]
854
851
 
855
852
  return self.api_client.param_serialize(
@@ -1409,7 +1406,6 @@ class BatchJobsApi:
1409
1406
  id: Optional[StrictInt] = None,
1410
1407
  created_on: Optional[datetime] = None,
1411
1408
  status: Optional[BatchJobStatus] = None,
1412
- user_id: Optional[StrictInt] = None,
1413
1409
  backend_type_id: Optional[StrictInt] = None,
1414
1410
  backend_id__isnull: Optional[StrictBool] = None,
1415
1411
  backend_id: Optional[StrictInt] = None,
@@ -1451,8 +1447,6 @@ class BatchJobsApi:
1451
1447
  :type created_on: datetime
1452
1448
  :param status:
1453
1449
  :type status: BatchJobStatus
1454
- :param user_id:
1455
- :type user_id: int
1456
1450
  :param backend_type_id:
1457
1451
  :type backend_type_id: int
1458
1452
  :param backend_id__isnull:
@@ -1503,7 +1497,6 @@ class BatchJobsApi:
1503
1497
  id=id,
1504
1498
  created_on=created_on,
1505
1499
  status=status,
1506
- user_id=user_id,
1507
1500
  backend_type_id=backend_type_id,
1508
1501
  backend_id__isnull=backend_id__isnull,
1509
1502
  backend_id=backend_id,
@@ -1546,7 +1539,6 @@ class BatchJobsApi:
1546
1539
  id: Optional[StrictInt] = None,
1547
1540
  created_on: Optional[datetime] = None,
1548
1541
  status: Optional[BatchJobStatus] = None,
1549
- user_id: Optional[StrictInt] = None,
1550
1542
  backend_type_id: Optional[StrictInt] = None,
1551
1543
  backend_id__isnull: Optional[StrictBool] = None,
1552
1544
  backend_id: Optional[StrictInt] = None,
@@ -1588,8 +1580,6 @@ class BatchJobsApi:
1588
1580
  :type created_on: datetime
1589
1581
  :param status:
1590
1582
  :type status: BatchJobStatus
1591
- :param user_id:
1592
- :type user_id: int
1593
1583
  :param backend_type_id:
1594
1584
  :type backend_type_id: int
1595
1585
  :param backend_id__isnull:
@@ -1640,7 +1630,6 @@ class BatchJobsApi:
1640
1630
  id=id,
1641
1631
  created_on=created_on,
1642
1632
  status=status,
1643
- user_id=user_id,
1644
1633
  backend_type_id=backend_type_id,
1645
1634
  backend_id__isnull=backend_id__isnull,
1646
1635
  backend_id=backend_id,
@@ -1683,7 +1672,6 @@ class BatchJobsApi:
1683
1672
  id: Optional[StrictInt] = None,
1684
1673
  created_on: Optional[datetime] = None,
1685
1674
  status: Optional[BatchJobStatus] = None,
1686
- user_id: Optional[StrictInt] = None,
1687
1675
  backend_type_id: Optional[StrictInt] = None,
1688
1676
  backend_id__isnull: Optional[StrictBool] = None,
1689
1677
  backend_id: Optional[StrictInt] = None,
@@ -1725,8 +1713,6 @@ class BatchJobsApi:
1725
1713
  :type created_on: datetime
1726
1714
  :param status:
1727
1715
  :type status: BatchJobStatus
1728
- :param user_id:
1729
- :type user_id: int
1730
1716
  :param backend_type_id:
1731
1717
  :type backend_type_id: int
1732
1718
  :param backend_id__isnull:
@@ -1777,7 +1763,6 @@ class BatchJobsApi:
1777
1763
  id=id,
1778
1764
  created_on=created_on,
1779
1765
  status=status,
1780
- user_id=user_id,
1781
1766
  backend_type_id=backend_type_id,
1782
1767
  backend_id__isnull=backend_id__isnull,
1783
1768
  backend_id=backend_id,
@@ -1815,7 +1800,6 @@ class BatchJobsApi:
1815
1800
  id,
1816
1801
  created_on,
1817
1802
  status,
1818
- user_id,
1819
1803
  backend_type_id,
1820
1804
  backend_id__isnull,
1821
1805
  backend_id,
@@ -1884,10 +1868,6 @@ class BatchJobsApi:
1884
1868
 
1885
1869
  _query_params.append(('status', status.value))
1886
1870
 
1887
- if user_id is not None:
1888
-
1889
- _query_params.append(('user_id', user_id))
1890
-
1891
1871
  if backend_type_id is not None:
1892
1872
 
1893
1873
  _query_params.append(('backend_type_id', backend_type_id))
@@ -1970,8 +1950,7 @@ class BatchJobsApi:
1970
1950
 
1971
1951
  # authentication setting
1972
1952
  _auth_settings: List[str] = [
1973
- 'user_bearer',
1974
- 'user'
1953
+ 'user_bearer'
1975
1954
  ]
1976
1955
 
1977
1956
  return self.api_client.param_serialize(
@@ -307,8 +307,7 @@ class CommitsApi:
307
307
 
308
308
  # authentication setting
309
309
  _auth_settings: List[str] = [
310
- 'user_bearer',
311
- 'user'
310
+ 'user_bearer'
312
311
  ]
313
312
 
314
313
  return self.api_client.param_serialize(
@@ -567,8 +566,7 @@ class CommitsApi:
567
566
 
568
567
  # authentication setting
569
568
  _auth_settings: List[str] = [
570
- 'user_bearer',
571
- 'user'
569
+ 'user_bearer'
572
570
  ]
573
571
 
574
572
  return self.api_client.param_serialize(
@@ -837,8 +835,7 @@ class CommitsApi:
837
835
  # authentication setting
838
836
  _auth_settings: List[str] = [
839
837
  'user_bearer',
840
- 'backend',
841
- 'user'
838
+ 'backend'
842
839
  ]
843
840
 
844
841
  return self.api_client.param_serialize(
@@ -1250,8 +1247,7 @@ class CommitsApi:
1250
1247
 
1251
1248
  # authentication setting
1252
1249
  _auth_settings: List[str] = [
1253
- 'user_bearer',
1254
- 'user'
1250
+ 'user_bearer'
1255
1251
  ]
1256
1252
 
1257
1253
  return self.api_client.param_serialize(
@@ -306,8 +306,7 @@ class FilesApi:
306
306
 
307
307
  # authentication setting
308
308
  _auth_settings: List[str] = [
309
- 'user_bearer',
310
- 'user'
309
+ 'user_bearer'
311
310
  ]
312
311
 
313
312
  return self.api_client.param_serialize(
@@ -566,8 +565,7 @@ class FilesApi:
566
565
 
567
566
  # authentication setting
568
567
  _auth_settings: List[str] = [
569
- 'user_bearer',
570
- 'user'
568
+ 'user_bearer'
571
569
  ]
572
570
 
573
571
  return self.api_client.param_serialize(
@@ -836,8 +834,7 @@ class FilesApi:
836
834
  # authentication setting
837
835
  _auth_settings: List[str] = [
838
836
  'user_bearer',
839
- 'backend',
840
- 'user'
837
+ 'backend'
841
838
  ]
842
839
 
843
840
  return self.api_client.param_serialize(
@@ -1257,8 +1254,7 @@ class FilesApi:
1257
1254
 
1258
1255
  # authentication setting
1259
1256
  _auth_settings: List[str] = [
1260
- 'user_bearer',
1261
- 'user'
1257
+ 'user_bearer'
1262
1258
  ]
1263
1259
 
1264
1260
  return self.api_client.param_serialize(
@@ -304,8 +304,7 @@ class FinalResultsApi:
304
304
  # authentication setting
305
305
  _auth_settings: List[str] = [
306
306
  'user_bearer',
307
- 'backend',
308
- 'user'
307
+ 'backend'
309
308
  ]
310
309
 
311
310
  return self.api_client.param_serialize(
@@ -570,8 +569,7 @@ class FinalResultsApi:
570
569
 
571
570
  # authentication setting
572
571
  _auth_settings: List[str] = [
573
- 'user_bearer',
574
- 'user'
572
+ 'user_bearer'
575
573
  ]
576
574
 
577
575
  return self.api_client.param_serialize(
@@ -839,8 +837,7 @@ class FinalResultsApi:
839
837
 
840
838
  # authentication setting
841
839
  _auth_settings: List[str] = [
842
- 'user_bearer',
843
- 'user'
840
+ 'user_bearer'
844
841
  ]
845
842
 
846
843
  return self.api_client.param_serialize(
@@ -310,8 +310,7 @@ class JobsApi:
310
310
 
311
311
  # authentication setting
312
312
  _auth_settings: List[str] = [
313
- 'user_bearer',
314
- 'user'
313
+ 'user_bearer'
315
314
  ]
316
315
 
317
316
  return self.api_client.param_serialize(
@@ -570,8 +569,7 @@ class JobsApi:
570
569
 
571
570
  # authentication setting
572
571
  _auth_settings: List[str] = [
573
- 'user_bearer',
574
- 'user'
572
+ 'user_bearer'
575
573
  ]
576
574
 
577
575
  return self.api_client.param_serialize(
@@ -840,8 +838,7 @@ class JobsApi:
840
838
  # authentication setting
841
839
  _auth_settings: List[str] = [
842
840
  'user_bearer',
843
- 'backend',
844
- 'user'
841
+ 'backend'
845
842
  ]
846
843
 
847
844
  return self.api_client.param_serialize(
@@ -1391,8 +1388,7 @@ class JobsApi:
1391
1388
  # authentication setting
1392
1389
  _auth_settings: List[str] = [
1393
1390
  'user_bearer',
1394
- 'backend',
1395
- 'user'
1391
+ 'backend'
1396
1392
  ]
1397
1393
 
1398
1394
  return self.api_client.param_serialize(
@@ -1689,8 +1685,7 @@ class JobsApi:
1689
1685
  # authentication setting
1690
1686
  _auth_settings: List[str] = [
1691
1687
  'user_bearer',
1692
- 'backend',
1693
- 'user'
1688
+ 'backend'
1694
1689
  ]
1695
1690
 
1696
1691
  return self.api_client.param_serialize(
@@ -294,8 +294,7 @@ class LanguagesApi:
294
294
 
295
295
  # authentication setting
296
296
  _auth_settings: List[str] = [
297
- 'user_bearer',
298
- 'user'
297
+ 'user_bearer'
299
298
  ]
300
299
 
301
300
  return self.api_client.param_serialize(
@@ -681,8 +680,7 @@ class LanguagesApi:
681
680
 
682
681
  # authentication setting
683
682
  _auth_settings: List[str] = [
684
- 'user_bearer',
685
- 'user'
683
+ 'user_bearer'
686
684
  ]
687
685
 
688
686
  return self.api_client.param_serialize(
@@ -306,8 +306,7 @@ class MembersApi:
306
306
 
307
307
  # authentication setting
308
308
  _auth_settings: List[str] = [
309
- 'user_bearer',
310
- 'user'
309
+ 'user_bearer'
311
310
  ]
312
311
 
313
312
  return self.api_client.param_serialize(
@@ -566,8 +565,7 @@ class MembersApi:
566
565
 
567
566
  # authentication setting
568
567
  _auth_settings: List[str] = [
569
- 'user_bearer',
570
- 'user'
568
+ 'user_bearer'
571
569
  ]
572
570
 
573
571
  return self.api_client.param_serialize(
@@ -835,8 +833,7 @@ class MembersApi:
835
833
 
836
834
  # authentication setting
837
835
  _auth_settings: List[str] = [
838
- 'user_bearer',
839
- 'user'
836
+ 'user_bearer'
840
837
  ]
841
838
 
842
839
  return self.api_client.param_serialize(
@@ -866,7 +863,6 @@ class MembersApi:
866
863
  items_per_page: Optional[StrictInt] = None,
867
864
  id: Optional[StrictInt] = None,
868
865
  team_id: Optional[StrictInt] = None,
869
- user_id: Optional[StrictInt] = None,
870
866
  role: Optional[Role] = None,
871
867
  is_active: Optional[StrictBool] = None,
872
868
  _request_timeout: Union[
@@ -898,8 +894,6 @@ class MembersApi:
898
894
  :type id: int
899
895
  :param team_id:
900
896
  :type team_id: int
901
- :param user_id:
902
- :type user_id: int
903
897
  :param role:
904
898
  :type role: Role
905
899
  :param is_active:
@@ -933,7 +927,6 @@ class MembersApi:
933
927
  items_per_page=items_per_page,
934
928
  id=id,
935
929
  team_id=team_id,
936
- user_id=user_id,
937
930
  role=role,
938
931
  is_active=is_active,
939
932
  _request_auth=_request_auth,
@@ -967,7 +960,6 @@ class MembersApi:
967
960
  items_per_page: Optional[StrictInt] = None,
968
961
  id: Optional[StrictInt] = None,
969
962
  team_id: Optional[StrictInt] = None,
970
- user_id: Optional[StrictInt] = None,
971
963
  role: Optional[Role] = None,
972
964
  is_active: Optional[StrictBool] = None,
973
965
  _request_timeout: Union[
@@ -999,8 +991,6 @@ class MembersApi:
999
991
  :type id: int
1000
992
  :param team_id:
1001
993
  :type team_id: int
1002
- :param user_id:
1003
- :type user_id: int
1004
994
  :param role:
1005
995
  :type role: Role
1006
996
  :param is_active:
@@ -1034,7 +1024,6 @@ class MembersApi:
1034
1024
  items_per_page=items_per_page,
1035
1025
  id=id,
1036
1026
  team_id=team_id,
1037
- user_id=user_id,
1038
1027
  role=role,
1039
1028
  is_active=is_active,
1040
1029
  _request_auth=_request_auth,
@@ -1068,7 +1057,6 @@ class MembersApi:
1068
1057
  items_per_page: Optional[StrictInt] = None,
1069
1058
  id: Optional[StrictInt] = None,
1070
1059
  team_id: Optional[StrictInt] = None,
1071
- user_id: Optional[StrictInt] = None,
1072
1060
  role: Optional[Role] = None,
1073
1061
  is_active: Optional[StrictBool] = None,
1074
1062
  _request_timeout: Union[
@@ -1100,8 +1088,6 @@ class MembersApi:
1100
1088
  :type id: int
1101
1089
  :param team_id:
1102
1090
  :type team_id: int
1103
- :param user_id:
1104
- :type user_id: int
1105
1091
  :param role:
1106
1092
  :type role: Role
1107
1093
  :param is_active:
@@ -1135,7 +1121,6 @@ class MembersApi:
1135
1121
  items_per_page=items_per_page,
1136
1122
  id=id,
1137
1123
  team_id=team_id,
1138
- user_id=user_id,
1139
1124
  role=role,
1140
1125
  is_active=is_active,
1141
1126
  _request_auth=_request_auth,
@@ -1164,7 +1149,6 @@ class MembersApi:
1164
1149
  items_per_page,
1165
1150
  id,
1166
1151
  team_id,
1167
- user_id,
1168
1152
  role,
1169
1153
  is_active,
1170
1154
  _request_auth,
@@ -1212,10 +1196,6 @@ class MembersApi:
1212
1196
 
1213
1197
  _query_params.append(('team_id', team_id))
1214
1198
 
1215
- if user_id is not None:
1216
-
1217
- _query_params.append(('user_id', user_id))
1218
-
1219
1199
  if role is not None:
1220
1200
 
1221
1201
  _query_params.append(('role', role.value))
@@ -1239,8 +1219,7 @@ class MembersApi:
1239
1219
 
1240
1220
  # authentication setting
1241
1221
  _auth_settings: List[str] = [
1242
- 'user_bearer',
1243
- 'user'
1222
+ 'user_bearer'
1244
1223
  ]
1245
1224
 
1246
1225
  return self.api_client.param_serialize(
@@ -570,8 +570,7 @@ class MetadataApi:
570
570
 
571
571
  # authentication setting
572
572
  _auth_settings: List[str] = [
573
- 'user_bearer',
574
- 'user'
573
+ 'user_bearer'
575
574
  ]
576
575
 
577
576
  return self.api_client.param_serialize(
@@ -839,8 +838,7 @@ class MetadataApi:
839
838
 
840
839
  # authentication setting
841
840
  _auth_settings: List[str] = [
842
- 'user_bearer',
843
- 'user'
841
+ 'user_bearer'
844
842
  ]
845
843
 
846
844
  return self.api_client.param_serialize(
@@ -295,8 +295,7 @@ class PermissionsApi:
295
295
 
296
296
  # authentication setting
297
297
  _auth_settings: List[str] = [
298
- 'user_bearer',
299
- 'user'
298
+ 'user_bearer'
300
299
  ]
301
300
 
302
301
  return self.api_client.param_serialize(
@@ -648,8 +647,7 @@ class PermissionsApi:
648
647
 
649
648
  # authentication setting
650
649
  _auth_settings: List[str] = [
651
- 'user_bearer',
652
- 'user'
650
+ 'user_bearer'
653
651
  ]
654
652
 
655
653
  return self.api_client.param_serialize(
@@ -917,8 +915,7 @@ class PermissionsApi:
917
915
 
918
916
  # authentication setting
919
917
  _auth_settings: List[str] = [
920
- 'user_bearer',
921
- 'user'
918
+ 'user_bearer'
922
919
  ]
923
920
 
924
921
  return self.api_client.param_serialize(
@@ -1287,8 +1284,7 @@ class PermissionsApi:
1287
1284
 
1288
1285
  # authentication setting
1289
1286
  _auth_settings: List[str] = [
1290
- 'user_bearer',
1291
- 'user'
1287
+ 'user_bearer'
1292
1288
  ]
1293
1289
 
1294
1290
  return self.api_client.param_serialize(