label-studio-sdk 2.0.9__py3-none-any.whl → 2.0.11__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 label-studio-sdk might be problematic. Click here for more details.

Files changed (55) hide show
  1. label_studio_sdk/activity_logs/client.py +12 -0
  2. label_studio_sdk/annotation_history/client.py +36 -0
  3. label_studio_sdk/annotation_reviews/client.py +60 -0
  4. label_studio_sdk/billing/client.py +12 -0
  5. label_studio_sdk/comments/client.py +72 -0
  6. label_studio_sdk/export_storage/azure_spi/client.py +84 -0
  7. label_studio_sdk/export_storage/databricks/client.py +84 -0
  8. label_studio_sdk/export_storage/gcswif/client.py +84 -0
  9. label_studio_sdk/export_storage/s3s/client.py +84 -0
  10. label_studio_sdk/import_storage/azure_spi/client.py +84 -0
  11. label_studio_sdk/import_storage/databricks/client.py +84 -0
  12. label_studio_sdk/import_storage/gcswif/client.py +84 -0
  13. label_studio_sdk/import_storage/s3s/client.py +84 -0
  14. label_studio_sdk/label_interface/control_tags.py +12 -7
  15. label_studio_sdk/ml/client.py +14 -2
  16. label_studio_sdk/model_providers/client.py +72 -0
  17. label_studio_sdk/organizations/client.py +30 -6
  18. label_studio_sdk/organizations/invites/client.py +55 -6
  19. label_studio_sdk/organizations/members/client.py +24 -0
  20. label_studio_sdk/organizations/permissions/client.py +60 -0
  21. label_studio_sdk/project_templates/client.py +76 -4
  22. label_studio_sdk/projects/__init__.py +6 -0
  23. label_studio_sdk/projects/assignments/client.py +60 -0
  24. label_studio_sdk/projects/client.py +12 -0
  25. label_studio_sdk/projects/members/bulk/client.py +24 -0
  26. label_studio_sdk/projects/members/client.py +12 -0
  27. label_studio_sdk/projects/members/paginated/client.py +12 -0
  28. label_studio_sdk/projects/metrics/client.py +24 -0
  29. label_studio_sdk/projects/pauses/client.py +60 -0
  30. label_studio_sdk/projects/stats/__init__.py +6 -0
  31. label_studio_sdk/projects/stats/client.py +486 -1
  32. label_studio_sdk/projects/stats/types/__init__.py +6 -0
  33. label_studio_sdk/projects/stats/types/stats_model_version_annotator_agreement_response.py +19 -0
  34. label_studio_sdk/projects/stats/types/stats_model_version_ground_truth_agreement_response.py +19 -0
  35. label_studio_sdk/projects/stats/types/stats_model_version_prediction_agreement_response.py +19 -0
  36. label_studio_sdk/prompts/client.py +96 -0
  37. label_studio_sdk/prompts/indicators/client.py +24 -0
  38. label_studio_sdk/prompts/runs/client.py +36 -0
  39. label_studio_sdk/prompts/versions/client.py +84 -0
  40. label_studio_sdk/sso/saml/client.py +24 -0
  41. label_studio_sdk/sso/scim/client.py +24 -0
  42. label_studio_sdk/types/default_role.py +2 -2
  43. label_studio_sdk/types/lse_organization.py +1 -1
  44. label_studio_sdk/types/project_template.py +1 -1
  45. label_studio_sdk/types/project_template_request.py +1 -1
  46. label_studio_sdk/users/client.py +24 -0
  47. label_studio_sdk/versions/client.py +12 -0
  48. label_studio_sdk/workspaces/client.py +60 -0
  49. label_studio_sdk/workspaces/members/bulk/client.py +24 -0
  50. label_studio_sdk/workspaces/members/client.py +36 -0
  51. label_studio_sdk/workspaces/members/paginated/client.py +12 -0
  52. {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/METADATA +1 -1
  53. {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/RECORD +55 -52
  54. {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/LICENSE +0 -0
  55. {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/WHEEL +0 -0
@@ -28,6 +28,12 @@ class AzureSpiClient:
28
28
  request_options: typing.Optional[RequestOptions] = None,
29
29
  ) -> typing.List[AzureServicePrincipalImportStorage]:
30
30
  """
31
+ <Card href="https://humansignal.com/goenterprise">
32
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
33
+ <p style="margin-top: 10px; font-size: 14px;">
34
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
35
+ </p>
36
+ </Card>
31
37
  Get list of all Azure import storage connections set up with Service Principal authentication.
32
38
 
33
39
  Parameters
@@ -106,6 +112,12 @@ class AzureSpiClient:
106
112
  request_options: typing.Optional[RequestOptions] = None,
107
113
  ) -> AzureServicePrincipalImportStorage:
108
114
  """
115
+ <Card href="https://humansignal.com/goenterprise">
116
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
117
+ <p style="margin-top: 10px; font-size: 14px;">
118
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
119
+ </p>
120
+ </Card>
109
121
  Create Azure import storage with Service Principal authentication.
110
122
 
111
123
  Parameters
@@ -263,6 +275,12 @@ class AzureSpiClient:
263
275
  request_options: typing.Optional[RequestOptions] = None,
264
276
  ) -> None:
265
277
  """
278
+ <Card href="https://humansignal.com/goenterprise">
279
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
280
+ <p style="margin-top: 10px; font-size: 14px;">
281
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
282
+ </p>
283
+ </Card>
266
284
  Validate a specific Azure import storage connection that was set up with Service Principal authentication.
267
285
 
268
286
  Parameters
@@ -389,6 +407,12 @@ class AzureSpiClient:
389
407
  self, id: int, *, request_options: typing.Optional[RequestOptions] = None
390
408
  ) -> AzureServicePrincipalImportStorage:
391
409
  """
410
+ <Card href="https://humansignal.com/goenterprise">
411
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
412
+ <p style="margin-top: 10px; font-size: 14px;">
413
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
414
+ </p>
415
+ </Card>
392
416
  Get a specific Azure import storage connection that was set up with Service Principal authentication.
393
417
 
394
418
  Parameters
@@ -435,6 +459,12 @@ class AzureSpiClient:
435
459
 
436
460
  def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
437
461
  """
462
+ <Card href="https://humansignal.com/goenterprise">
463
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
464
+ <p style="margin-top: 10px; font-size: 14px;">
465
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
466
+ </p>
467
+ </Card>
438
468
  Delete a specific Azure import storage connection that was set up with Service Principal authentication.
439
469
 
440
470
  Parameters
@@ -501,6 +531,12 @@ class AzureSpiClient:
501
531
  request_options: typing.Optional[RequestOptions] = None,
502
532
  ) -> AzureServicePrincipalImportStorage:
503
533
  """
534
+ <Card href="https://humansignal.com/goenterprise">
535
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
536
+ <p style="margin-top: 10px; font-size: 14px;">
537
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
538
+ </p>
539
+ </Card>
504
540
  Update a specific Azure import storage connection that was set up with Service Principal authentication.
505
541
 
506
542
  Parameters
@@ -639,6 +675,12 @@ class AzureSpiClient:
639
675
  self, id: int, *, request_options: typing.Optional[RequestOptions] = None
640
676
  ) -> AzureServicePrincipalImportStorage:
641
677
  """
678
+ <Card href="https://humansignal.com/goenterprise">
679
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
680
+ <p style="margin-top: 10px; font-size: 14px;">
681
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
682
+ </p>
683
+ </Card>
642
684
  Sync tasks from an Azure import storage connection that was set up with Service Principal authentication.
643
685
 
644
686
  Parameters
@@ -696,6 +738,12 @@ class AsyncAzureSpiClient:
696
738
  request_options: typing.Optional[RequestOptions] = None,
697
739
  ) -> typing.List[AzureServicePrincipalImportStorage]:
698
740
  """
741
+ <Card href="https://humansignal.com/goenterprise">
742
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
743
+ <p style="margin-top: 10px; font-size: 14px;">
744
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
745
+ </p>
746
+ </Card>
699
747
  Get list of all Azure import storage connections set up with Service Principal authentication.
700
748
 
701
749
  Parameters
@@ -782,6 +830,12 @@ class AsyncAzureSpiClient:
782
830
  request_options: typing.Optional[RequestOptions] = None,
783
831
  ) -> AzureServicePrincipalImportStorage:
784
832
  """
833
+ <Card href="https://humansignal.com/goenterprise">
834
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
835
+ <p style="margin-top: 10px; font-size: 14px;">
836
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
837
+ </p>
838
+ </Card>
785
839
  Create Azure import storage with Service Principal authentication.
786
840
 
787
841
  Parameters
@@ -947,6 +1001,12 @@ class AsyncAzureSpiClient:
947
1001
  request_options: typing.Optional[RequestOptions] = None,
948
1002
  ) -> None:
949
1003
  """
1004
+ <Card href="https://humansignal.com/goenterprise">
1005
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1006
+ <p style="margin-top: 10px; font-size: 14px;">
1007
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1008
+ </p>
1009
+ </Card>
950
1010
  Validate a specific Azure import storage connection that was set up with Service Principal authentication.
951
1011
 
952
1012
  Parameters
@@ -1081,6 +1141,12 @@ class AsyncAzureSpiClient:
1081
1141
  self, id: int, *, request_options: typing.Optional[RequestOptions] = None
1082
1142
  ) -> AzureServicePrincipalImportStorage:
1083
1143
  """
1144
+ <Card href="https://humansignal.com/goenterprise">
1145
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1146
+ <p style="margin-top: 10px; font-size: 14px;">
1147
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1148
+ </p>
1149
+ </Card>
1084
1150
  Get a specific Azure import storage connection that was set up with Service Principal authentication.
1085
1151
 
1086
1152
  Parameters
@@ -1135,6 +1201,12 @@ class AsyncAzureSpiClient:
1135
1201
 
1136
1202
  async def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
1137
1203
  """
1204
+ <Card href="https://humansignal.com/goenterprise">
1205
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1206
+ <p style="margin-top: 10px; font-size: 14px;">
1207
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1208
+ </p>
1209
+ </Card>
1138
1210
  Delete a specific Azure import storage connection that was set up with Service Principal authentication.
1139
1211
 
1140
1212
  Parameters
@@ -1209,6 +1281,12 @@ class AsyncAzureSpiClient:
1209
1281
  request_options: typing.Optional[RequestOptions] = None,
1210
1282
  ) -> AzureServicePrincipalImportStorage:
1211
1283
  """
1284
+ <Card href="https://humansignal.com/goenterprise">
1285
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1286
+ <p style="margin-top: 10px; font-size: 14px;">
1287
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1288
+ </p>
1289
+ </Card>
1212
1290
  Update a specific Azure import storage connection that was set up with Service Principal authentication.
1213
1291
 
1214
1292
  Parameters
@@ -1355,6 +1433,12 @@ class AsyncAzureSpiClient:
1355
1433
  self, id: int, *, request_options: typing.Optional[RequestOptions] = None
1356
1434
  ) -> AzureServicePrincipalImportStorage:
1357
1435
  """
1436
+ <Card href="https://humansignal.com/goenterprise">
1437
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1438
+ <p style="margin-top: 10px; font-size: 14px;">
1439
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1440
+ </p>
1441
+ </Card>
1358
1442
  Sync tasks from an Azure import storage connection that was set up with Service Principal authentication.
1359
1443
 
1360
1444
  Parameters
@@ -28,6 +28,12 @@ class DatabricksClient:
28
28
  request_options: typing.Optional[RequestOptions] = None,
29
29
  ) -> typing.List[DatabricksImportStorage]:
30
30
  """
31
+ <Card href="https://humansignal.com/goenterprise">
32
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
33
+ <p style="margin-top: 10px; font-size: 14px;">
34
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
35
+ </p>
36
+ </Card>
31
37
  Get list of all Databricks Files import storage connections.
32
38
 
33
39
  Parameters
@@ -108,6 +114,12 @@ class DatabricksClient:
108
114
  request_options: typing.Optional[RequestOptions] = None,
109
115
  ) -> DatabricksImportStorage:
110
116
  """
117
+ <Card href="https://humansignal.com/goenterprise">
118
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
119
+ <p style="margin-top: 10px; font-size: 14px;">
120
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
121
+ </p>
122
+ </Card>
111
123
  Create a Databricks Files import storage connection.
112
124
 
113
125
  Parameters
@@ -277,6 +289,12 @@ class DatabricksClient:
277
289
  request_options: typing.Optional[RequestOptions] = None,
278
290
  ) -> None:
279
291
  """
292
+ <Card href="https://humansignal.com/goenterprise">
293
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
294
+ <p style="margin-top: 10px; font-size: 14px;">
295
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
296
+ </p>
297
+ </Card>
280
298
  Validate a specific Databricks Files import storage connection.
281
299
 
282
300
  Parameters
@@ -411,6 +429,12 @@ class DatabricksClient:
411
429
 
412
430
  def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> DatabricksImportStorage:
413
431
  """
432
+ <Card href="https://humansignal.com/goenterprise">
433
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
434
+ <p style="margin-top: 10px; font-size: 14px;">
435
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
436
+ </p>
437
+ </Card>
414
438
  Get a specific Databricks Files import storage connection.
415
439
 
416
440
  Parameters
@@ -457,6 +481,12 @@ class DatabricksClient:
457
481
 
458
482
  def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
459
483
  """
484
+ <Card href="https://humansignal.com/goenterprise">
485
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
486
+ <p style="margin-top: 10px; font-size: 14px;">
487
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
488
+ </p>
489
+ </Card>
460
490
  Delete a specific Databricks Files import storage connection.
461
491
 
462
492
  Parameters
@@ -525,6 +555,12 @@ class DatabricksClient:
525
555
  request_options: typing.Optional[RequestOptions] = None,
526
556
  ) -> DatabricksImportStorage:
527
557
  """
558
+ <Card href="https://humansignal.com/goenterprise">
559
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
560
+ <p style="margin-top: 10px; font-size: 14px;">
561
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
562
+ </p>
563
+ </Card>
528
564
  Update a specific Databricks Files import storage connection.
529
565
 
530
566
  Parameters
@@ -667,6 +703,12 @@ class DatabricksClient:
667
703
 
668
704
  def sync(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> DatabricksImportStorage:
669
705
  """
706
+ <Card href="https://humansignal.com/goenterprise">
707
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
708
+ <p style="margin-top: 10px; font-size: 14px;">
709
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
710
+ </p>
711
+ </Card>
670
712
  Sync tasks from a Databricks Files import storage.
671
713
 
672
714
  Parameters
@@ -724,6 +766,12 @@ class AsyncDatabricksClient:
724
766
  request_options: typing.Optional[RequestOptions] = None,
725
767
  ) -> typing.List[DatabricksImportStorage]:
726
768
  """
769
+ <Card href="https://humansignal.com/goenterprise">
770
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
771
+ <p style="margin-top: 10px; font-size: 14px;">
772
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
773
+ </p>
774
+ </Card>
727
775
  Get list of all Databricks Files import storage connections.
728
776
 
729
777
  Parameters
@@ -812,6 +860,12 @@ class AsyncDatabricksClient:
812
860
  request_options: typing.Optional[RequestOptions] = None,
813
861
  ) -> DatabricksImportStorage:
814
862
  """
863
+ <Card href="https://humansignal.com/goenterprise">
864
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
865
+ <p style="margin-top: 10px; font-size: 14px;">
866
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
867
+ </p>
868
+ </Card>
815
869
  Create a Databricks Files import storage connection.
816
870
 
817
871
  Parameters
@@ -989,6 +1043,12 @@ class AsyncDatabricksClient:
989
1043
  request_options: typing.Optional[RequestOptions] = None,
990
1044
  ) -> None:
991
1045
  """
1046
+ <Card href="https://humansignal.com/goenterprise">
1047
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1048
+ <p style="margin-top: 10px; font-size: 14px;">
1049
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1050
+ </p>
1051
+ </Card>
992
1052
  Validate a specific Databricks Files import storage connection.
993
1053
 
994
1054
  Parameters
@@ -1131,6 +1191,12 @@ class AsyncDatabricksClient:
1131
1191
 
1132
1192
  async def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> DatabricksImportStorage:
1133
1193
  """
1194
+ <Card href="https://humansignal.com/goenterprise">
1195
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1196
+ <p style="margin-top: 10px; font-size: 14px;">
1197
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1198
+ </p>
1199
+ </Card>
1134
1200
  Get a specific Databricks Files import storage connection.
1135
1201
 
1136
1202
  Parameters
@@ -1185,6 +1251,12 @@ class AsyncDatabricksClient:
1185
1251
 
1186
1252
  async def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
1187
1253
  """
1254
+ <Card href="https://humansignal.com/goenterprise">
1255
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1256
+ <p style="margin-top: 10px; font-size: 14px;">
1257
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1258
+ </p>
1259
+ </Card>
1188
1260
  Delete a specific Databricks Files import storage connection.
1189
1261
 
1190
1262
  Parameters
@@ -1261,6 +1333,12 @@ class AsyncDatabricksClient:
1261
1333
  request_options: typing.Optional[RequestOptions] = None,
1262
1334
  ) -> DatabricksImportStorage:
1263
1335
  """
1336
+ <Card href="https://humansignal.com/goenterprise">
1337
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1338
+ <p style="margin-top: 10px; font-size: 14px;">
1339
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1340
+ </p>
1341
+ </Card>
1264
1342
  Update a specific Databricks Files import storage connection.
1265
1343
 
1266
1344
  Parameters
@@ -1413,6 +1491,12 @@ class AsyncDatabricksClient:
1413
1491
  self, id: int, *, request_options: typing.Optional[RequestOptions] = None
1414
1492
  ) -> DatabricksImportStorage:
1415
1493
  """
1494
+ <Card href="https://humansignal.com/goenterprise">
1495
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1496
+ <p style="margin-top: 10px; font-size: 14px;">
1497
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1498
+ </p>
1499
+ </Card>
1416
1500
  Sync tasks from a Databricks Files import storage.
1417
1501
 
1418
1502
  Parameters
@@ -28,6 +28,12 @@ class GcswifClient:
28
28
  request_options: typing.Optional[RequestOptions] = None,
29
29
  ) -> typing.List[GcswifImportStorage]:
30
30
  """
31
+ <Card href="https://humansignal.com/goenterprise">
32
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
33
+ <p style="margin-top: 10px; font-size: 14px;">
34
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
35
+ </p>
36
+ </Card>
31
37
  Get list of all GCS import storage connections set up with WIF authentication.
32
38
 
33
39
  Parameters
@@ -107,6 +113,12 @@ class GcswifClient:
107
113
  request_options: typing.Optional[RequestOptions] = None,
108
114
  ) -> GcswifImportStorage:
109
115
  """
116
+ <Card href="https://humansignal.com/goenterprise">
117
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
118
+ <p style="margin-top: 10px; font-size: 14px;">
119
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
120
+ </p>
121
+ </Card>
110
122
  Create GCS import storage with WIF.
111
123
 
112
124
  Parameters
@@ -269,6 +281,12 @@ class GcswifClient:
269
281
  request_options: typing.Optional[RequestOptions] = None,
270
282
  ) -> None:
271
283
  """
284
+ <Card href="https://humansignal.com/goenterprise">
285
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
286
+ <p style="margin-top: 10px; font-size: 14px;">
287
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
288
+ </p>
289
+ </Card>
272
290
  Validate a specific GCS import storage connection that was set up with WIF authentication.
273
291
 
274
292
  Parameters
@@ -397,6 +415,12 @@ class GcswifClient:
397
415
 
398
416
  def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> GcswifImportStorage:
399
417
  """
418
+ <Card href="https://humansignal.com/goenterprise">
419
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
420
+ <p style="margin-top: 10px; font-size: 14px;">
421
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
422
+ </p>
423
+ </Card>
400
424
  Get a specific GCS import storage connection that was set up with WIF.
401
425
 
402
426
  Parameters
@@ -443,6 +467,12 @@ class GcswifClient:
443
467
 
444
468
  def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
445
469
  """
470
+ <Card href="https://humansignal.com/goenterprise">
471
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
472
+ <p style="margin-top: 10px; font-size: 14px;">
473
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
474
+ </p>
475
+ </Card>
446
476
  Delete a specific GCS import storage connection that was set up with WIF authentication.
447
477
 
448
478
  Parameters
@@ -510,6 +540,12 @@ class GcswifClient:
510
540
  request_options: typing.Optional[RequestOptions] = None,
511
541
  ) -> GcswifImportStorage:
512
542
  """
543
+ <Card href="https://humansignal.com/goenterprise">
544
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
545
+ <p style="margin-top: 10px; font-size: 14px;">
546
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
547
+ </p>
548
+ </Card>
513
549
  Update a specific GCS import storage connection that was set up with WIF authentication.
514
550
 
515
551
  Parameters
@@ -650,6 +686,12 @@ class GcswifClient:
650
686
 
651
687
  def sync(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> GcswifImportStorage:
652
688
  """
689
+ <Card href="https://humansignal.com/goenterprise">
690
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
691
+ <p style="margin-top: 10px; font-size: 14px;">
692
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
693
+ </p>
694
+ </Card>
653
695
  Sync tasks from an GCS import storage connection that was set up with WIF authentication.
654
696
 
655
697
  Parameters
@@ -707,6 +749,12 @@ class AsyncGcswifClient:
707
749
  request_options: typing.Optional[RequestOptions] = None,
708
750
  ) -> typing.List[GcswifImportStorage]:
709
751
  """
752
+ <Card href="https://humansignal.com/goenterprise">
753
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
754
+ <p style="margin-top: 10px; font-size: 14px;">
755
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
756
+ </p>
757
+ </Card>
710
758
  Get list of all GCS import storage connections set up with WIF authentication.
711
759
 
712
760
  Parameters
@@ -794,6 +842,12 @@ class AsyncGcswifClient:
794
842
  request_options: typing.Optional[RequestOptions] = None,
795
843
  ) -> GcswifImportStorage:
796
844
  """
845
+ <Card href="https://humansignal.com/goenterprise">
846
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
847
+ <p style="margin-top: 10px; font-size: 14px;">
848
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
849
+ </p>
850
+ </Card>
797
851
  Create GCS import storage with WIF.
798
852
 
799
853
  Parameters
@@ -964,6 +1018,12 @@ class AsyncGcswifClient:
964
1018
  request_options: typing.Optional[RequestOptions] = None,
965
1019
  ) -> None:
966
1020
  """
1021
+ <Card href="https://humansignal.com/goenterprise">
1022
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1023
+ <p style="margin-top: 10px; font-size: 14px;">
1024
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1025
+ </p>
1026
+ </Card>
967
1027
  Validate a specific GCS import storage connection that was set up with WIF authentication.
968
1028
 
969
1029
  Parameters
@@ -1100,6 +1160,12 @@ class AsyncGcswifClient:
1100
1160
 
1101
1161
  async def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> GcswifImportStorage:
1102
1162
  """
1163
+ <Card href="https://humansignal.com/goenterprise">
1164
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1165
+ <p style="margin-top: 10px; font-size: 14px;">
1166
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1167
+ </p>
1168
+ </Card>
1103
1169
  Get a specific GCS import storage connection that was set up with WIF.
1104
1170
 
1105
1171
  Parameters
@@ -1154,6 +1220,12 @@ class AsyncGcswifClient:
1154
1220
 
1155
1221
  async def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
1156
1222
  """
1223
+ <Card href="https://humansignal.com/goenterprise">
1224
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1225
+ <p style="margin-top: 10px; font-size: 14px;">
1226
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1227
+ </p>
1228
+ </Card>
1157
1229
  Delete a specific GCS import storage connection that was set up with WIF authentication.
1158
1230
 
1159
1231
  Parameters
@@ -1229,6 +1301,12 @@ class AsyncGcswifClient:
1229
1301
  request_options: typing.Optional[RequestOptions] = None,
1230
1302
  ) -> GcswifImportStorage:
1231
1303
  """
1304
+ <Card href="https://humansignal.com/goenterprise">
1305
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1306
+ <p style="margin-top: 10px; font-size: 14px;">
1307
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1308
+ </p>
1309
+ </Card>
1232
1310
  Update a specific GCS import storage connection that was set up with WIF authentication.
1233
1311
 
1234
1312
  Parameters
@@ -1377,6 +1455,12 @@ class AsyncGcswifClient:
1377
1455
 
1378
1456
  async def sync(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> GcswifImportStorage:
1379
1457
  """
1458
+ <Card href="https://humansignal.com/goenterprise">
1459
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1460
+ <p style="margin-top: 10px; font-size: 14px;">
1461
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1462
+ </p>
1463
+ </Card>
1380
1464
  Sync tasks from an GCS import storage connection that was set up with WIF authentication.
1381
1465
 
1382
1466
  Parameters