polyaxon 2.6.0rc1__py3-none-any.whl → 2.6.1__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.
Files changed (87) hide show
  1. polyaxon/_cli/operations.py +1 -1
  2. polyaxon/_cli/projects.py +2 -2
  3. polyaxon/_compiler/contexts/contexts.py +5 -5
  4. polyaxon/_compiler/contexts/dask_job.py +1 -1
  5. polyaxon/_compiler/contexts/kubeflow/mpi_job.py +1 -1
  6. polyaxon/_compiler/contexts/kubeflow/mx_job.py +1 -1
  7. polyaxon/_compiler/contexts/kubeflow/paddle_job.py +1 -1
  8. polyaxon/_compiler/contexts/kubeflow/pytroch_job.py +1 -1
  9. polyaxon/_compiler/contexts/kubeflow/tf_job.py +1 -1
  10. polyaxon/_compiler/contexts/kubeflow/xgb_job.py +1 -1
  11. polyaxon/_compiler/contexts/ray_job.py +1 -1
  12. polyaxon/_compiler/resolver/agent.py +1 -1
  13. polyaxon/_compiler/resolver/runtime.py +1 -1
  14. polyaxon/_deploy/schemas/ui.py +3 -1
  15. polyaxon/_docker/converter/base/base.py +1 -1
  16. polyaxon/_docker/converter/base/env_vars.py +1 -1
  17. polyaxon/_docker/converter/converters/job.py +1 -1
  18. polyaxon/_docker/converter/converters/service.py +1 -1
  19. polyaxon/_flow/environment/__init__.py +5 -4
  20. polyaxon/_flow/io/io.py +2 -0
  21. polyaxon/_flow/matrix/params.py +1 -1
  22. polyaxon/_flow/operations/operation.py +0 -1
  23. polyaxon/_flow/params/params.py +2 -2
  24. polyaxon/_flow/run/dag.py +6 -6
  25. polyaxon/_flow/run/resources.py +1 -1
  26. polyaxon/_fs/fs.py +1 -1
  27. polyaxon/_k8s/converter/base/containers.py +1 -1
  28. polyaxon/_k8s/converter/converters/dask_job.py +1 -1
  29. polyaxon/_k8s/converter/converters/job.py +1 -1
  30. polyaxon/_k8s/converter/converters/kubeflow/mpi_job.py +1 -1
  31. polyaxon/_k8s/converter/converters/kubeflow/mx_job.py +1 -1
  32. polyaxon/_k8s/converter/converters/kubeflow/paddle_job.py +1 -1
  33. polyaxon/_k8s/converter/converters/kubeflow/pytroch_job.py +1 -1
  34. polyaxon/_k8s/converter/converters/kubeflow/tf_job.py +1 -1
  35. polyaxon/_k8s/converter/converters/kubeflow/xgboost_job.py +1 -1
  36. polyaxon/_k8s/converter/converters/ray_job.py +1 -2
  37. polyaxon/_k8s/converter/converters/service.py +1 -1
  38. polyaxon/_k8s/k8s_validation.py +16 -16
  39. polyaxon/_k8s/logging/async_monitor.py +4 -4
  40. polyaxon/_k8s/manager/async_manager.py +5 -3
  41. polyaxon/_k8s/manager/manager.py +6 -6
  42. polyaxon/_local_process/converter/base/env_vars.py +1 -1
  43. polyaxon/_local_process/converter/base/init.py +1 -1
  44. polyaxon/_local_process/converter/base/mounts.py +0 -2
  45. polyaxon/_local_process/converter/converters/job.py +1 -1
  46. polyaxon/_local_process/converter/converters/service.py +1 -1
  47. polyaxon/_managers/project.py +3 -2
  48. polyaxon/_polyaxonfile/check.py +4 -4
  49. polyaxon/_polyaxonfile/specs/compiled_operation.py +3 -5
  50. polyaxon/_polyaxonfile/specs/libs/parser.py +1 -3
  51. polyaxon/_polyaxonfile/specs/libs/validator.py +1 -1
  52. polyaxon/_polyaxonfile/specs/operation.py +2 -2
  53. polyaxon/_pql/manager.py +1 -1
  54. polyaxon/_pql/parser.py +29 -26
  55. polyaxon/_runner/agent/base_agent.py +1 -2
  56. polyaxon/_runner/converter/init/artifacts.py +3 -2
  57. polyaxon/_runner/converter/init/tensorboard.py +1 -1
  58. polyaxon/_schemas/client.py +1 -1
  59. polyaxon/_sdk/api/agents_v1_api.py +56 -80
  60. polyaxon/_sdk/api/artifacts_stores_v1_api.py +2 -2
  61. polyaxon/_sdk/api/auth_v1_api.py +2 -6
  62. polyaxon/_sdk/api/connections_v1_api.py +16 -20
  63. polyaxon/_sdk/api/dashboards_v1_api.py +14 -14
  64. polyaxon/_sdk/api/organizations_v1_api.py +97 -143
  65. polyaxon/_sdk/api/presets_v1_api.py +18 -26
  66. polyaxon/_sdk/api/project_dashboards_v1_api.py +17 -19
  67. polyaxon/_sdk/api/project_searches_v1_api.py +20 -28
  68. polyaxon/_sdk/api/projects_v1_api.py +74 -92
  69. polyaxon/_sdk/api/queues_v1_api.py +22 -30
  70. polyaxon/_sdk/api/runs_v1_api.py +157 -207
  71. polyaxon/_sdk/api/searches_v1_api.py +16 -20
  72. polyaxon/_sdk/api/service_accounts_v1_api.py +30 -38
  73. polyaxon/_sdk/api/tags_v1_api.py +19 -25
  74. polyaxon/_sdk/api/teams_v1_api.py +64 -90
  75. polyaxon/_sdk/api/users_v1_api.py +17 -19
  76. polyaxon/_sdk/api/versions_v1_api.py +4 -4
  77. polyaxon/_sdk/async_client/rest.py +1 -3
  78. polyaxon/_sdk/schemas/v1_section_spec.py +1 -1
  79. polyaxon/_sdk/sync_client/api_client.py +2 -6
  80. polyaxon/_sdk/sync_client/rest.py +4 -8
  81. polyaxon/pkg.py +1 -1
  82. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.6.1.dist-info}/METADATA +6 -6
  83. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.6.1.dist-info}/RECORD +87 -87
  84. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.6.1.dist-info}/LICENSE +0 -0
  85. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.6.1.dist-info}/WHEEL +0 -0
  86. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.6.1.dist-info}/entry_points.txt +0 -0
  87. {polyaxon-2.6.0rc1.dist-info → polyaxon-2.6.1.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,7 @@ class OrganizationsV1Api(BaseApi):
28
28
  self,
29
29
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
30
30
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
31
- **kwargs
31
+ **kwargs,
32
32
  ) -> None:
33
33
  """Approve cross-project runs selection
34
34
 
@@ -65,7 +65,7 @@ class OrganizationsV1Api(BaseApi):
65
65
  self,
66
66
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
67
67
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
68
- **kwargs
68
+ **kwargs,
69
69
  ):
70
70
  """Approve cross-project runs selection
71
71
 
@@ -192,7 +192,7 @@ class OrganizationsV1Api(BaseApi):
192
192
  self,
193
193
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
194
194
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
195
- **kwargs
195
+ **kwargs,
196
196
  ) -> None:
197
197
  """Archive cross-project runs selection
198
198
 
@@ -229,7 +229,7 @@ class OrganizationsV1Api(BaseApi):
229
229
  self,
230
230
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
231
231
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
232
- **kwargs
232
+ **kwargs,
233
233
  ):
234
234
  """Archive cross-project runs selection
235
235
 
@@ -356,7 +356,7 @@ class OrganizationsV1Api(BaseApi):
356
356
  self,
357
357
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
358
358
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
359
- **kwargs
359
+ **kwargs,
360
360
  ) -> None:
361
361
  """Bookmark cross-project runs selection
362
362
 
@@ -386,16 +386,14 @@ class OrganizationsV1Api(BaseApi):
386
386
  :rtype: None
387
387
  """
388
388
  kwargs["_return_http_data_only"] = True
389
- return self.bookmark_organization_runs_with_http_info(
390
- owner, body, **kwargs
391
- ) # noqa: E501
389
+ return self.bookmark_organization_runs_with_http_info(owner, body, **kwargs) # noqa: E501
392
390
 
393
391
  @validate_call
394
392
  def bookmark_organization_runs_with_http_info(
395
393
  self,
396
394
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
397
395
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
398
- **kwargs
396
+ **kwargs,
399
397
  ): # noqa: E501
400
398
  """Bookmark cross-project runs selection # noqa: E501
401
399
 
@@ -518,9 +516,7 @@ class OrganizationsV1Api(BaseApi):
518
516
  )
519
517
 
520
518
  @validate_call
521
- def create_organization(
522
- self, body: V1Organization, **kwargs
523
- ) -> V1Organization: # noqa: E501
519
+ def create_organization(self, body: V1Organization, **kwargs) -> V1Organization: # noqa: E501
524
520
  """Create organization # noqa: E501
525
521
 
526
522
  This method makes a synchronous HTTP request by default. To make an
@@ -550,9 +546,7 @@ class OrganizationsV1Api(BaseApi):
550
546
  return self.create_organization_with_http_info(body, **kwargs) # noqa: E501
551
547
 
552
548
  @validate_call
553
- def create_organization_with_http_info(
554
- self, body: V1Organization, **kwargs
555
- ): # noqa: E501
549
+ def create_organization_with_http_info(self, body: V1Organization, **kwargs): # noqa: E501
556
550
  """Create organization # noqa: E501
557
551
 
558
552
  This method makes a synchronous HTTP request by default. To make an
@@ -684,7 +678,7 @@ class OrganizationsV1Api(BaseApi):
684
678
  email: Annotated[
685
679
  Optional[StrictStr], Field(description="Optional email.")
686
680
  ] = None,
687
- **kwargs
681
+ **kwargs,
688
682
  ) -> V1OrganizationMember: # noqa: E501
689
683
  """Create organization member # noqa: E501
690
684
 
@@ -730,7 +724,7 @@ class OrganizationsV1Api(BaseApi):
730
724
  email: Annotated[
731
725
  Optional[StrictStr], Field(description="Optional email.")
732
726
  ] = None,
733
- **kwargs
727
+ **kwargs,
734
728
  ): # noqa: E501
735
729
  """Create organization member # noqa: E501
736
730
 
@@ -868,7 +862,7 @@ class OrganizationsV1Api(BaseApi):
868
862
  usage: Annotated[
869
863
  Optional[StrictStr], Field(description="Owner usage query param.")
870
864
  ] = None,
871
- **kwargs
865
+ **kwargs,
872
866
  ) -> None: # noqa: E501
873
867
  """Delete organization # noqa: E501
874
868
 
@@ -898,9 +892,7 @@ class OrganizationsV1Api(BaseApi):
898
892
  :rtype: None
899
893
  """
900
894
  kwargs["_return_http_data_only"] = True
901
- return self.delete_organization_with_http_info(
902
- owner, usage, **kwargs
903
- ) # noqa: E501
895
+ return self.delete_organization_with_http_info(owner, usage, **kwargs) # noqa: E501
904
896
 
905
897
  @validate_call
906
898
  def delete_organization_with_http_info(
@@ -909,7 +901,7 @@ class OrganizationsV1Api(BaseApi):
909
901
  usage: Annotated[
910
902
  Optional[StrictStr], Field(description="Owner usage query param.")
911
903
  ] = None,
912
- **kwargs
904
+ **kwargs,
913
905
  ): # noqa: E501
914
906
  """Delete organization # noqa: E501
915
907
 
@@ -1044,7 +1036,7 @@ class OrganizationsV1Api(BaseApi):
1044
1036
  email: Annotated[
1045
1037
  Optional[StrictStr], Field(description="Optional email.")
1046
1038
  ] = None,
1047
- **kwargs
1039
+ **kwargs,
1048
1040
  ) -> None: # noqa: E501
1049
1041
  """Delete organization invitation details # noqa: E501
1050
1042
 
@@ -1095,7 +1087,7 @@ class OrganizationsV1Api(BaseApi):
1095
1087
  member_created_at,
1096
1088
  member_updated_at,
1097
1089
  email,
1098
- **kwargs
1090
+ **kwargs,
1099
1091
  ) # noqa: E501
1100
1092
 
1101
1093
  @validate_call
@@ -1119,7 +1111,7 @@ class OrganizationsV1Api(BaseApi):
1119
1111
  email: Annotated[
1120
1112
  Optional[StrictStr], Field(description="Optional email.")
1121
1113
  ] = None,
1122
- **kwargs
1114
+ **kwargs,
1123
1115
  ): # noqa: E501
1124
1116
  """Delete organization invitation details # noqa: E501
1125
1117
 
@@ -1271,7 +1263,7 @@ class OrganizationsV1Api(BaseApi):
1271
1263
  self,
1272
1264
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
1273
1265
  name: Annotated[StrictStr, Field(..., description="Component under namespace")],
1274
- **kwargs
1266
+ **kwargs,
1275
1267
  ) -> None: # noqa: E501
1276
1268
  """Delete organization member details # noqa: E501
1277
1269
 
@@ -1301,16 +1293,14 @@ class OrganizationsV1Api(BaseApi):
1301
1293
  :rtype: None
1302
1294
  """
1303
1295
  kwargs["_return_http_data_only"] = True
1304
- return self.delete_organization_member_with_http_info(
1305
- owner, name, **kwargs
1306
- ) # noqa: E501
1296
+ return self.delete_organization_member_with_http_info(owner, name, **kwargs) # noqa: E501
1307
1297
 
1308
1298
  @validate_call
1309
1299
  def delete_organization_member_with_http_info(
1310
1300
  self,
1311
1301
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
1312
1302
  name: Annotated[StrictStr, Field(..., description="Component under namespace")],
1313
- **kwargs
1303
+ **kwargs,
1314
1304
  ): # noqa: E501
1315
1305
  """Delete organization member details # noqa: E501
1316
1306
 
@@ -1429,7 +1419,7 @@ class OrganizationsV1Api(BaseApi):
1429
1419
  self,
1430
1420
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
1431
1421
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
1432
- **kwargs
1422
+ **kwargs,
1433
1423
  ) -> None: # noqa: E501
1434
1424
  """Delete cross-project runs selection # noqa: E501
1435
1425
 
@@ -1459,16 +1449,14 @@ class OrganizationsV1Api(BaseApi):
1459
1449
  :rtype: None
1460
1450
  """
1461
1451
  kwargs["_return_http_data_only"] = True
1462
- return self.delete_organization_runs_with_http_info(
1463
- owner, body, **kwargs
1464
- ) # noqa: E501
1452
+ return self.delete_organization_runs_with_http_info(owner, body, **kwargs) # noqa: E501
1465
1453
 
1466
1454
  @validate_call
1467
1455
  def delete_organization_runs_with_http_info(
1468
1456
  self,
1469
1457
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
1470
1458
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
1471
- **kwargs
1459
+ **kwargs,
1472
1460
  ): # noqa: E501
1473
1461
  """Delete cross-project runs selection # noqa: E501
1474
1462
 
@@ -1597,7 +1585,7 @@ class OrganizationsV1Api(BaseApi):
1597
1585
  usage: Annotated[
1598
1586
  Optional[StrictStr], Field(description="Owner usage query param.")
1599
1587
  ] = None,
1600
- **kwargs
1588
+ **kwargs,
1601
1589
  ) -> V1Organization: # noqa: E501
1602
1590
  """Get organization # noqa: E501
1603
1591
 
@@ -1627,9 +1615,7 @@ class OrganizationsV1Api(BaseApi):
1627
1615
  :rtype: V1Organization
1628
1616
  """
1629
1617
  kwargs["_return_http_data_only"] = True
1630
- return self.get_organization_with_http_info(
1631
- owner, usage, **kwargs
1632
- ) # noqa: E501
1618
+ return self.get_organization_with_http_info(owner, usage, **kwargs) # noqa: E501
1633
1619
 
1634
1620
  @validate_call
1635
1621
  def get_organization_with_http_info(
@@ -1638,7 +1624,7 @@ class OrganizationsV1Api(BaseApi):
1638
1624
  usage: Annotated[
1639
1625
  Optional[StrictStr], Field(description="Owner usage query param.")
1640
1626
  ] = None,
1641
- **kwargs
1627
+ **kwargs,
1642
1628
  ): # noqa: E501
1643
1629
  """Get organization # noqa: E501
1644
1630
 
@@ -1778,7 +1764,7 @@ class OrganizationsV1Api(BaseApi):
1778
1764
  Optional[StrictStr], Field(description="Mode of the search.")
1779
1765
  ] = None,
1780
1766
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
1781
- **kwargs
1767
+ **kwargs,
1782
1768
  ) -> V1ListActivitiesResponse: # noqa: E501
1783
1769
  """Get organization activities # noqa: E501
1784
1770
 
@@ -1845,7 +1831,7 @@ class OrganizationsV1Api(BaseApi):
1845
1831
  Optional[StrictStr], Field(description="Mode of the search.")
1846
1832
  ] = None,
1847
1833
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
1848
- **kwargs
1834
+ **kwargs,
1849
1835
  ): # noqa: E501
1850
1836
  """Get organization activities # noqa: E501
1851
1837
 
@@ -2018,7 +2004,7 @@ class OrganizationsV1Api(BaseApi):
2018
2004
  email: Annotated[
2019
2005
  Optional[StrictStr], Field(description="Optional email.")
2020
2006
  ] = None,
2021
- **kwargs
2007
+ **kwargs,
2022
2008
  ) -> V1OrganizationMember: # noqa: E501
2023
2009
  """Get organization invitation details # noqa: E501
2024
2010
 
@@ -2069,7 +2055,7 @@ class OrganizationsV1Api(BaseApi):
2069
2055
  member_created_at,
2070
2056
  member_updated_at,
2071
2057
  email,
2072
- **kwargs
2058
+ **kwargs,
2073
2059
  ) # noqa: E501
2074
2060
 
2075
2061
  @validate_call
@@ -2093,7 +2079,7 @@ class OrganizationsV1Api(BaseApi):
2093
2079
  email: Annotated[
2094
2080
  Optional[StrictStr], Field(description="Optional email.")
2095
2081
  ] = None,
2096
- **kwargs
2082
+ **kwargs,
2097
2083
  ): # noqa: E501
2098
2084
  """Get organization invitation details # noqa: E501
2099
2085
 
@@ -2250,7 +2236,7 @@ class OrganizationsV1Api(BaseApi):
2250
2236
  self,
2251
2237
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
2252
2238
  name: Annotated[StrictStr, Field(..., description="Component under namespace")],
2253
- **kwargs
2239
+ **kwargs,
2254
2240
  ) -> V1OrganizationMember: # noqa: E501
2255
2241
  """Get organization member details # noqa: E501
2256
2242
 
@@ -2280,16 +2266,14 @@ class OrganizationsV1Api(BaseApi):
2280
2266
  :rtype: V1OrganizationMember
2281
2267
  """
2282
2268
  kwargs["_return_http_data_only"] = True
2283
- return self.get_organization_member_with_http_info(
2284
- owner, name, **kwargs
2285
- ) # noqa: E501
2269
+ return self.get_organization_member_with_http_info(owner, name, **kwargs) # noqa: E501
2286
2270
 
2287
2271
  @validate_call
2288
2272
  def get_organization_member_with_http_info(
2289
2273
  self,
2290
2274
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
2291
2275
  name: Annotated[StrictStr, Field(..., description="Component under namespace")],
2292
- **kwargs
2276
+ **kwargs,
2293
2277
  ): # noqa: E501
2294
2278
  """Get organization member details # noqa: E501
2295
2279
 
@@ -2415,7 +2399,7 @@ class OrganizationsV1Api(BaseApi):
2415
2399
  uuid: Annotated[
2416
2400
  StrictStr, Field(..., description="Uuid identifier of the entity")
2417
2401
  ],
2418
- **kwargs
2402
+ **kwargs,
2419
2403
  ) -> V1Run: # noqa: E501
2420
2404
  """Get a run in an organization # noqa: E501
2421
2405
 
@@ -2445,9 +2429,7 @@ class OrganizationsV1Api(BaseApi):
2445
2429
  :rtype: V1Run
2446
2430
  """
2447
2431
  kwargs["_return_http_data_only"] = True
2448
- return self.get_organization_run_with_http_info(
2449
- owner, uuid, **kwargs
2450
- ) # noqa: E501
2432
+ return self.get_organization_run_with_http_info(owner, uuid, **kwargs) # noqa: E501
2451
2433
 
2452
2434
  @validate_call
2453
2435
  def get_organization_run_with_http_info(
@@ -2456,7 +2438,7 @@ class OrganizationsV1Api(BaseApi):
2456
2438
  uuid: Annotated[
2457
2439
  StrictStr, Field(..., description="Uuid identifier of the entity")
2458
2440
  ],
2459
- **kwargs
2441
+ **kwargs,
2460
2442
  ): # noqa: E501
2461
2443
  """Get a run in an organization # noqa: E501
2462
2444
 
@@ -2596,7 +2578,7 @@ class OrganizationsV1Api(BaseApi):
2596
2578
  Optional[StrictStr], Field(description="Mode of the search.")
2597
2579
  ] = None,
2598
2580
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
2599
- **kwargs
2581
+ **kwargs,
2600
2582
  ) -> V1ListRunsResponse: # noqa: E501
2601
2583
  """Get all runs in an organization # noqa: E501
2602
2584
 
@@ -2663,7 +2645,7 @@ class OrganizationsV1Api(BaseApi):
2663
2645
  Optional[StrictStr], Field(description="Mode of the search.")
2664
2646
  ] = None,
2665
2647
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
2666
- **kwargs
2648
+ **kwargs,
2667
2649
  ): # noqa: E501
2668
2650
  """Get all runs in an organization # noqa: E501
2669
2651
 
@@ -2866,7 +2848,7 @@ class OrganizationsV1Api(BaseApi):
2866
2848
  description="Setting to configure default archived deletion interval."
2867
2849
  ),
2868
2850
  ] = None,
2869
- **kwargs
2851
+ **kwargs,
2870
2852
  ) -> V1Organization: # noqa: E501
2871
2853
  """Get organization settings # noqa: E501
2872
2854
 
@@ -2935,7 +2917,7 @@ class OrganizationsV1Api(BaseApi):
2935
2917
  organization_preset,
2936
2918
  organization_is_cloud_viewable,
2937
2919
  organization_archived_deletion_interval,
2938
- **kwargs
2920
+ **kwargs,
2939
2921
  ) # noqa: E501
2940
2922
 
2941
2923
  @validate_call
@@ -2989,7 +2971,7 @@ class OrganizationsV1Api(BaseApi):
2989
2971
  description="Setting to configure default archived deletion interval."
2990
2972
  ),
2991
2973
  ] = None,
2992
- **kwargs
2974
+ **kwargs,
2993
2975
  ): # noqa: E501
2994
2976
  """Get organization settings # noqa: E501
2995
2977
 
@@ -3146,9 +3128,7 @@ class OrganizationsV1Api(BaseApi):
3146
3128
  _params["organization_is_cloud_viewable"],
3147
3129
  )
3148
3130
  )
3149
- if (
3150
- _params.get("organization_archived_deletion_interval") is not None
3151
- ): # noqa: E501
3131
+ if _params.get("organization_archived_deletion_interval") is not None: # noqa: E501
3152
3132
  _query_params.append(
3153
3133
  (
3154
3134
  "organization.archived_deletion_interval",
@@ -3226,7 +3206,7 @@ class OrganizationsV1Api(BaseApi):
3226
3206
  Optional[StrictStr], Field(description="Stats group.")
3227
3207
  ] = None,
3228
3208
  trunc: Annotated[Optional[StrictStr], Field(description="Stats trunc.")] = None,
3229
- **kwargs
3209
+ **kwargs,
3230
3210
  ) -> object: # noqa: E501
3231
3211
  """Get organization stats # noqa: E501
3232
3212
 
@@ -3286,7 +3266,7 @@ class OrganizationsV1Api(BaseApi):
3286
3266
  aggregate,
3287
3267
  groupby,
3288
3268
  trunc,
3289
- **kwargs
3269
+ **kwargs,
3290
3270
  ) # noqa: E501
3291
3271
 
3292
3272
  @validate_call
@@ -3315,7 +3295,7 @@ class OrganizationsV1Api(BaseApi):
3315
3295
  Optional[StrictStr], Field(description="Stats group.")
3316
3296
  ] = None,
3317
3297
  trunc: Annotated[Optional[StrictStr], Field(description="Stats trunc.")] = None,
3318
- **kwargs
3298
+ **kwargs,
3319
3299
  ): # noqa: E501
3320
3300
  """Get organization stats # noqa: E501
3321
3301
 
@@ -3487,7 +3467,7 @@ class OrganizationsV1Api(BaseApi):
3487
3467
  self,
3488
3468
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
3489
3469
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
3490
- **kwargs
3470
+ **kwargs,
3491
3471
  ) -> None: # noqa: E501
3492
3472
  """Invalidate cross-project runs selection # noqa: E501
3493
3473
 
@@ -3517,16 +3497,14 @@ class OrganizationsV1Api(BaseApi):
3517
3497
  :rtype: None
3518
3498
  """
3519
3499
  kwargs["_return_http_data_only"] = True
3520
- return self.invalidate_organization_runs_with_http_info(
3521
- owner, body, **kwargs
3522
- ) # noqa: E501
3500
+ return self.invalidate_organization_runs_with_http_info(owner, body, **kwargs) # noqa: E501
3523
3501
 
3524
3502
  @validate_call
3525
3503
  def invalidate_organization_runs_with_http_info(
3526
3504
  self,
3527
3505
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
3528
3506
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
3529
- **kwargs
3507
+ **kwargs,
3530
3508
  ): # noqa: E501
3531
3509
  """Invalidate cross-project runs selection # noqa: E501
3532
3510
 
@@ -3669,7 +3647,7 @@ class OrganizationsV1Api(BaseApi):
3669
3647
  Optional[StrictStr], Field(description="Mode of the search.")
3670
3648
  ] = None,
3671
3649
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
3672
- **kwargs
3650
+ **kwargs,
3673
3651
  ) -> V1ListOrganizationMembersResponse: # noqa: E501
3674
3652
  """Get organization member names # noqa: E501
3675
3653
 
@@ -3736,7 +3714,7 @@ class OrganizationsV1Api(BaseApi):
3736
3714
  Optional[StrictStr], Field(description="Mode of the search.")
3737
3715
  ] = None,
3738
3716
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
3739
- **kwargs
3717
+ **kwargs,
3740
3718
  ): # noqa: E501
3741
3719
  """Get organization member names # noqa: E501
3742
3720
 
@@ -3909,7 +3887,7 @@ class OrganizationsV1Api(BaseApi):
3909
3887
  Optional[StrictStr], Field(description="Mode of the search.")
3910
3888
  ] = None,
3911
3889
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
3912
- **kwargs
3890
+ **kwargs,
3913
3891
  ) -> V1ListOrganizationMembersResponse: # noqa: E501
3914
3892
  """Get organization members # noqa: E501
3915
3893
 
@@ -3976,7 +3954,7 @@ class OrganizationsV1Api(BaseApi):
3976
3954
  Optional[StrictStr], Field(description="Mode of the search.")
3977
3955
  ] = None,
3978
3956
  no_page: Annotated[Optional[bool], Field(description="No pagination.")] = None,
3979
- **kwargs
3957
+ **kwargs,
3980
3958
  ): # noqa: E501
3981
3959
  """Get organization members # noqa: E501
3982
3960
 
@@ -4129,9 +4107,7 @@ class OrganizationsV1Api(BaseApi):
4129
4107
  )
4130
4108
 
4131
4109
  @validate_call
4132
- def list_organization_names(
4133
- self, **kwargs
4134
- ) -> V1ListOrganizationsResponse: # noqa: E501
4110
+ def list_organization_names(self, **kwargs) -> V1ListOrganizationsResponse: # noqa: E501
4135
4111
  """List organizations names # noqa: E501
4136
4112
 
4137
4113
  This method makes a synchronous HTTP request by default. To make an
@@ -4413,7 +4389,7 @@ class OrganizationsV1Api(BaseApi):
4413
4389
  self,
4414
4390
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
4415
4391
  body: Annotated[V1Organization, Field(..., description="Organization body")],
4416
- **kwargs
4392
+ **kwargs,
4417
4393
  ) -> V1Organization: # noqa: E501
4418
4394
  """Organization plan # noqa: E501
4419
4395
 
@@ -4443,16 +4419,14 @@ class OrganizationsV1Api(BaseApi):
4443
4419
  :rtype: V1Organization
4444
4420
  """
4445
4421
  kwargs["_return_http_data_only"] = True
4446
- return self.organization_plan_with_http_info(
4447
- owner, body, **kwargs
4448
- ) # noqa: E501
4422
+ return self.organization_plan_with_http_info(owner, body, **kwargs) # noqa: E501
4449
4423
 
4450
4424
  @validate_call
4451
4425
  def organization_plan_with_http_info(
4452
4426
  self,
4453
4427
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
4454
4428
  body: Annotated[V1Organization, Field(..., description="Organization body")],
4455
- **kwargs
4429
+ **kwargs,
4456
4430
  ): # noqa: E501
4457
4431
  """Organization plan # noqa: E501
4458
4432
 
@@ -4584,7 +4558,7 @@ class OrganizationsV1Api(BaseApi):
4584
4558
  self,
4585
4559
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
4586
4560
  body: Annotated[V1Organization, Field(..., description="Organization body")],
4587
- **kwargs
4561
+ **kwargs,
4588
4562
  ) -> V1Organization: # noqa: E501
4589
4563
  """Organization license # noqa: E501
4590
4564
 
@@ -4614,16 +4588,14 @@ class OrganizationsV1Api(BaseApi):
4614
4588
  :rtype: V1Organization
4615
4589
  """
4616
4590
  kwargs["_return_http_data_only"] = True
4617
- return self.organization_license_with_http_info(
4618
- owner, body, **kwargs
4619
- ) # noqa: E501
4591
+ return self.organization_license_with_http_info(owner, body, **kwargs) # noqa: E501
4620
4592
 
4621
4593
  @validate_call
4622
4594
  def organization_license_with_http_info(
4623
4595
  self,
4624
4596
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
4625
4597
  body: Annotated[V1Organization, Field(..., description="Organization body")],
4626
- **kwargs
4598
+ **kwargs,
4627
4599
  ): # noqa: E501
4628
4600
  """Organization license # noqa: E501
4629
4601
 
@@ -4755,7 +4727,7 @@ class OrganizationsV1Api(BaseApi):
4755
4727
  self,
4756
4728
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
4757
4729
  body: Annotated[V1Organization, Field(..., description="Organization body")],
4758
- **kwargs
4730
+ **kwargs,
4759
4731
  ) -> V1Organization: # noqa: E501
4760
4732
  """Patch organization # noqa: E501
4761
4733
 
@@ -4785,16 +4757,14 @@ class OrganizationsV1Api(BaseApi):
4785
4757
  :rtype: V1Organization
4786
4758
  """
4787
4759
  kwargs["_return_http_data_only"] = True
4788
- return self.patch_organization_with_http_info(
4789
- owner, body, **kwargs
4790
- ) # noqa: E501
4760
+ return self.patch_organization_with_http_info(owner, body, **kwargs) # noqa: E501
4791
4761
 
4792
4762
  @validate_call
4793
4763
  def patch_organization_with_http_info(
4794
4764
  self,
4795
4765
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
4796
4766
  body: Annotated[V1Organization, Field(..., description="Organization body")],
4797
- **kwargs
4767
+ **kwargs,
4798
4768
  ): # noqa: E501
4799
4769
  """Patch organization # noqa: E501
4800
4770
 
@@ -4931,7 +4901,7 @@ class OrganizationsV1Api(BaseApi):
4931
4901
  email: Annotated[
4932
4902
  Optional[StrictStr], Field(description="Optional email.")
4933
4903
  ] = None,
4934
- **kwargs
4904
+ **kwargs,
4935
4905
  ) -> V1OrganizationMember: # noqa: E501
4936
4906
  """Patch organization invitation # noqa: E501
4937
4907
 
@@ -4977,7 +4947,7 @@ class OrganizationsV1Api(BaseApi):
4977
4947
  email: Annotated[
4978
4948
  Optional[StrictStr], Field(description="Optional email.")
4979
4949
  ] = None,
4980
- **kwargs
4950
+ **kwargs,
4981
4951
  ): # noqa: E501
4982
4952
  """Patch organization invitation # noqa: E501
4983
4953
 
@@ -5119,7 +5089,7 @@ class OrganizationsV1Api(BaseApi):
5119
5089
  email: Annotated[
5120
5090
  Optional[StrictStr], Field(description="Optional email.")
5121
5091
  ] = None,
5122
- **kwargs
5092
+ **kwargs,
5123
5093
  ) -> V1OrganizationMember: # noqa: E501
5124
5094
  """Patch organization member # noqa: E501
5125
5095
 
@@ -5168,7 +5138,7 @@ class OrganizationsV1Api(BaseApi):
5168
5138
  email: Annotated[
5169
5139
  Optional[StrictStr], Field(description="Optional email.")
5170
5140
  ] = None,
5171
- **kwargs
5141
+ **kwargs,
5172
5142
  ): # noqa: E501
5173
5143
  """Patch organization member # noqa: E501
5174
5144
 
@@ -5308,7 +5278,7 @@ class OrganizationsV1Api(BaseApi):
5308
5278
  self,
5309
5279
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5310
5280
  body: Annotated[V1Organization, Field(..., description="Organization body")],
5311
- **kwargs
5281
+ **kwargs,
5312
5282
  ) -> V1Organization: # noqa: E501
5313
5283
  """Patch oranization settings # noqa: E501
5314
5284
 
@@ -5338,16 +5308,14 @@ class OrganizationsV1Api(BaseApi):
5338
5308
  :rtype: V1Organization
5339
5309
  """
5340
5310
  kwargs["_return_http_data_only"] = True
5341
- return self.patch_organization_settings_with_http_info(
5342
- owner, body, **kwargs
5343
- ) # noqa: E501
5311
+ return self.patch_organization_settings_with_http_info(owner, body, **kwargs) # noqa: E501
5344
5312
 
5345
5313
  @validate_call
5346
5314
  def patch_organization_settings_with_http_info(
5347
5315
  self,
5348
5316
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5349
5317
  body: Annotated[V1Organization, Field(..., description="Organization body")],
5350
- **kwargs
5318
+ **kwargs,
5351
5319
  ): # noqa: E501
5352
5320
  """Patch oranization settings # noqa: E501
5353
5321
 
@@ -5484,7 +5452,7 @@ class OrganizationsV1Api(BaseApi):
5484
5452
  email: Annotated[
5485
5453
  Optional[StrictStr], Field(description="Optional email.")
5486
5454
  ] = None,
5487
- **kwargs
5455
+ **kwargs,
5488
5456
  ) -> V1OrganizationMember: # noqa: E501
5489
5457
  """Resend organization invitation # noqa: E501
5490
5458
 
@@ -5530,7 +5498,7 @@ class OrganizationsV1Api(BaseApi):
5530
5498
  email: Annotated[
5531
5499
  Optional[StrictStr], Field(description="Optional email.")
5532
5500
  ] = None,
5533
- **kwargs
5501
+ **kwargs,
5534
5502
  ): # noqa: E501
5535
5503
  """Resend organization invitation # noqa: E501
5536
5504
 
@@ -5666,7 +5634,7 @@ class OrganizationsV1Api(BaseApi):
5666
5634
  self,
5667
5635
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5668
5636
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
5669
- **kwargs
5637
+ **kwargs,
5670
5638
  ) -> None: # noqa: E501
5671
5639
  """Restore cross-project runs selection # noqa: E501
5672
5640
 
@@ -5696,16 +5664,14 @@ class OrganizationsV1Api(BaseApi):
5696
5664
  :rtype: None
5697
5665
  """
5698
5666
  kwargs["_return_http_data_only"] = True
5699
- return self.restore_organization_runs_with_http_info(
5700
- owner, body, **kwargs
5701
- ) # noqa: E501
5667
+ return self.restore_organization_runs_with_http_info(owner, body, **kwargs) # noqa: E501
5702
5668
 
5703
5669
  @validate_call
5704
5670
  def restore_organization_runs_with_http_info(
5705
5671
  self,
5706
5672
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5707
5673
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
5708
- **kwargs
5674
+ **kwargs,
5709
5675
  ): # noqa: E501
5710
5676
  """Restore cross-project runs selection # noqa: E501
5711
5677
 
@@ -5832,7 +5798,7 @@ class OrganizationsV1Api(BaseApi):
5832
5798
  self,
5833
5799
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5834
5800
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
5835
- **kwargs
5801
+ **kwargs,
5836
5802
  ) -> None: # noqa: E501
5837
5803
  """Skip cross-project runs selection # noqa: E501
5838
5804
 
@@ -5862,16 +5828,14 @@ class OrganizationsV1Api(BaseApi):
5862
5828
  :rtype: None
5863
5829
  """
5864
5830
  kwargs["_return_http_data_only"] = True
5865
- return self.skip_organization_runs_with_http_info(
5866
- owner, body, **kwargs
5867
- ) # noqa: E501
5831
+ return self.skip_organization_runs_with_http_info(owner, body, **kwargs) # noqa: E501
5868
5832
 
5869
5833
  @validate_call
5870
5834
  def skip_organization_runs_with_http_info(
5871
5835
  self,
5872
5836
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5873
5837
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
5874
- **kwargs
5838
+ **kwargs,
5875
5839
  ): # noqa: E501
5876
5840
  """Skip cross-project runs selection # noqa: E501
5877
5841
 
@@ -5995,7 +5959,7 @@ class OrganizationsV1Api(BaseApi):
5995
5959
  self,
5996
5960
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
5997
5961
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
5998
- **kwargs
5962
+ **kwargs,
5999
5963
  ) -> None: # noqa: E501
6000
5964
  """Stop cross-project runs selection # noqa: E501
6001
5965
 
@@ -6025,16 +5989,14 @@ class OrganizationsV1Api(BaseApi):
6025
5989
  :rtype: None
6026
5990
  """
6027
5991
  kwargs["_return_http_data_only"] = True
6028
- return self.stop_organization_runs_with_http_info(
6029
- owner, body, **kwargs
6030
- ) # noqa: E501
5992
+ return self.stop_organization_runs_with_http_info(owner, body, **kwargs) # noqa: E501
6031
5993
 
6032
5994
  @validate_call
6033
5995
  def stop_organization_runs_with_http_info(
6034
5996
  self,
6035
5997
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
6036
5998
  body: Annotated[V1Uuids, Field(..., description="Uuids of the entities")],
6037
- **kwargs
5999
+ **kwargs,
6038
6000
  ): # noqa: E501
6039
6001
  """Stop cross-project runs selection # noqa: E501
6040
6002
 
@@ -6161,7 +6123,7 @@ class OrganizationsV1Api(BaseApi):
6161
6123
  self,
6162
6124
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
6163
6125
  body: Annotated[V1EntitiesTags, Field(..., description="Data")],
6164
- **kwargs
6126
+ **kwargs,
6165
6127
  ) -> None: # noqa: E501
6166
6128
  """Tag cross-project runs selection # noqa: E501
6167
6129
 
@@ -6191,16 +6153,14 @@ class OrganizationsV1Api(BaseApi):
6191
6153
  :rtype: None
6192
6154
  """
6193
6155
  kwargs["_return_http_data_only"] = True
6194
- return self.tag_organization_runs_with_http_info(
6195
- owner, body, **kwargs
6196
- ) # noqa: E501
6156
+ return self.tag_organization_runs_with_http_info(owner, body, **kwargs) # noqa: E501
6197
6157
 
6198
6158
  @validate_call
6199
6159
  def tag_organization_runs_with_http_info(
6200
6160
  self,
6201
6161
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
6202
6162
  body: Annotated[V1EntitiesTags, Field(..., description="Data")],
6203
- **kwargs
6163
+ **kwargs,
6204
6164
  ): # noqa: E501
6205
6165
  """Tag cross-project runs selection # noqa: E501
6206
6166
 
@@ -6327,7 +6287,7 @@ class OrganizationsV1Api(BaseApi):
6327
6287
  self,
6328
6288
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
6329
6289
  body: Annotated[V1EntitiesTransfer, Field(..., description="Data")],
6330
- **kwargs
6290
+ **kwargs,
6331
6291
  ) -> None: # noqa: E501
6332
6292
  """Transfer cross-project runs selection to a new project # noqa: E501
6333
6293
 
@@ -6357,16 +6317,14 @@ class OrganizationsV1Api(BaseApi):
6357
6317
  :rtype: None
6358
6318
  """
6359
6319
  kwargs["_return_http_data_only"] = True
6360
- return self.transfer_organization_runs_with_http_info(
6361
- owner, body, **kwargs
6362
- ) # noqa: E501
6320
+ return self.transfer_organization_runs_with_http_info(owner, body, **kwargs) # noqa: E501
6363
6321
 
6364
6322
  @validate_call
6365
6323
  def transfer_organization_runs_with_http_info(
6366
6324
  self,
6367
6325
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
6368
6326
  body: Annotated[V1EntitiesTransfer, Field(..., description="Data")],
6369
- **kwargs
6327
+ **kwargs,
6370
6328
  ): # noqa: E501
6371
6329
  """Transfer cross-project runs selection to a new project # noqa: E501
6372
6330
 
@@ -6493,7 +6451,7 @@ class OrganizationsV1Api(BaseApi):
6493
6451
  self,
6494
6452
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
6495
6453
  body: Annotated[V1Organization, Field(..., description="Organization body")],
6496
- **kwargs
6454
+ **kwargs,
6497
6455
  ) -> V1Organization: # noqa: E501
6498
6456
  """Update organization # noqa: E501
6499
6457
 
@@ -6523,16 +6481,14 @@ class OrganizationsV1Api(BaseApi):
6523
6481
  :rtype: V1Organization
6524
6482
  """
6525
6483
  kwargs["_return_http_data_only"] = True
6526
- return self.update_organization_with_http_info(
6527
- owner, body, **kwargs
6528
- ) # noqa: E501
6484
+ return self.update_organization_with_http_info(owner, body, **kwargs) # noqa: E501
6529
6485
 
6530
6486
  @validate_call
6531
6487
  def update_organization_with_http_info(
6532
6488
  self,
6533
6489
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
6534
6490
  body: Annotated[V1Organization, Field(..., description="Organization body")],
6535
- **kwargs
6491
+ **kwargs,
6536
6492
  ): # noqa: E501
6537
6493
  """Update organization # noqa: E501
6538
6494
 
@@ -6669,7 +6625,7 @@ class OrganizationsV1Api(BaseApi):
6669
6625
  email: Annotated[
6670
6626
  Optional[StrictStr], Field(description="Optional email.")
6671
6627
  ] = None,
6672
- **kwargs
6628
+ **kwargs,
6673
6629
  ) -> V1OrganizationMember: # noqa: E501
6674
6630
  """Update organization invitation # noqa: E501
6675
6631
 
@@ -6715,7 +6671,7 @@ class OrganizationsV1Api(BaseApi):
6715
6671
  email: Annotated[
6716
6672
  Optional[StrictStr], Field(description="Optional email.")
6717
6673
  ] = None,
6718
- **kwargs
6674
+ **kwargs,
6719
6675
  ): # noqa: E501
6720
6676
  """Update organization invitation # noqa: E501
6721
6677
 
@@ -6857,7 +6813,7 @@ class OrganizationsV1Api(BaseApi):
6857
6813
  email: Annotated[
6858
6814
  Optional[StrictStr], Field(description="Optional email.")
6859
6815
  ] = None,
6860
- **kwargs
6816
+ **kwargs,
6861
6817
  ) -> V1OrganizationMember: # noqa: E501
6862
6818
  """Update organization member # noqa: E501
6863
6819
 
@@ -6906,7 +6862,7 @@ class OrganizationsV1Api(BaseApi):
6906
6862
  email: Annotated[
6907
6863
  Optional[StrictStr], Field(description="Optional email.")
6908
6864
  ] = None,
6909
- **kwargs
6865
+ **kwargs,
6910
6866
  ): # noqa: E501
6911
6867
  """Update organization member # noqa: E501
6912
6868
 
@@ -7046,7 +7002,7 @@ class OrganizationsV1Api(BaseApi):
7046
7002
  self,
7047
7003
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
7048
7004
  body: Annotated[V1Organization, Field(..., description="Organization body")],
7049
- **kwargs
7005
+ **kwargs,
7050
7006
  ) -> V1Organization: # noqa: E501
7051
7007
  """Update organization settings # noqa: E501
7052
7008
 
@@ -7076,16 +7032,14 @@ class OrganizationsV1Api(BaseApi):
7076
7032
  :rtype: V1Organization
7077
7033
  """
7078
7034
  kwargs["_return_http_data_only"] = True
7079
- return self.update_organization_settings_with_http_info(
7080
- owner, body, **kwargs
7081
- ) # noqa: E501
7035
+ return self.update_organization_settings_with_http_info(owner, body, **kwargs) # noqa: E501
7082
7036
 
7083
7037
  @validate_call
7084
7038
  def update_organization_settings_with_http_info(
7085
7039
  self,
7086
7040
  owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
7087
7041
  body: Annotated[V1Organization, Field(..., description="Organization body")],
7088
- **kwargs
7042
+ **kwargs,
7089
7043
  ): # noqa: E501
7090
7044
  """Update organization settings # noqa: E501
7091
7045