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.
- label_studio_sdk/activity_logs/client.py +12 -0
- label_studio_sdk/annotation_history/client.py +36 -0
- label_studio_sdk/annotation_reviews/client.py +60 -0
- label_studio_sdk/billing/client.py +12 -0
- label_studio_sdk/comments/client.py +72 -0
- label_studio_sdk/export_storage/azure_spi/client.py +84 -0
- label_studio_sdk/export_storage/databricks/client.py +84 -0
- label_studio_sdk/export_storage/gcswif/client.py +84 -0
- label_studio_sdk/export_storage/s3s/client.py +84 -0
- label_studio_sdk/import_storage/azure_spi/client.py +84 -0
- label_studio_sdk/import_storage/databricks/client.py +84 -0
- label_studio_sdk/import_storage/gcswif/client.py +84 -0
- label_studio_sdk/import_storage/s3s/client.py +84 -0
- label_studio_sdk/label_interface/control_tags.py +12 -7
- label_studio_sdk/ml/client.py +14 -2
- label_studio_sdk/model_providers/client.py +72 -0
- label_studio_sdk/organizations/client.py +30 -6
- label_studio_sdk/organizations/invites/client.py +55 -6
- label_studio_sdk/organizations/members/client.py +24 -0
- label_studio_sdk/organizations/permissions/client.py +60 -0
- label_studio_sdk/project_templates/client.py +76 -4
- label_studio_sdk/projects/__init__.py +6 -0
- label_studio_sdk/projects/assignments/client.py +60 -0
- label_studio_sdk/projects/client.py +12 -0
- label_studio_sdk/projects/members/bulk/client.py +24 -0
- label_studio_sdk/projects/members/client.py +12 -0
- label_studio_sdk/projects/members/paginated/client.py +12 -0
- label_studio_sdk/projects/metrics/client.py +24 -0
- label_studio_sdk/projects/pauses/client.py +60 -0
- label_studio_sdk/projects/stats/__init__.py +6 -0
- label_studio_sdk/projects/stats/client.py +486 -1
- label_studio_sdk/projects/stats/types/__init__.py +6 -0
- label_studio_sdk/projects/stats/types/stats_model_version_annotator_agreement_response.py +19 -0
- label_studio_sdk/projects/stats/types/stats_model_version_ground_truth_agreement_response.py +19 -0
- label_studio_sdk/projects/stats/types/stats_model_version_prediction_agreement_response.py +19 -0
- label_studio_sdk/prompts/client.py +96 -0
- label_studio_sdk/prompts/indicators/client.py +24 -0
- label_studio_sdk/prompts/runs/client.py +36 -0
- label_studio_sdk/prompts/versions/client.py +84 -0
- label_studio_sdk/sso/saml/client.py +24 -0
- label_studio_sdk/sso/scim/client.py +24 -0
- label_studio_sdk/types/default_role.py +2 -2
- label_studio_sdk/types/lse_organization.py +1 -1
- label_studio_sdk/types/project_template.py +1 -1
- label_studio_sdk/types/project_template_request.py +1 -1
- label_studio_sdk/users/client.py +24 -0
- label_studio_sdk/versions/client.py +12 -0
- label_studio_sdk/workspaces/client.py +60 -0
- label_studio_sdk/workspaces/members/bulk/client.py +24 -0
- label_studio_sdk/workspaces/members/client.py +36 -0
- label_studio_sdk/workspaces/members/paginated/client.py +12 -0
- {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/METADATA +1 -1
- {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/RECORD +55 -52
- {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/LICENSE +0 -0
- {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/WHEEL +0 -0
|
@@ -28,6 +28,12 @@ class DatabricksClient:
|
|
|
28
28
|
request_options: typing.Optional[RequestOptions] = None,
|
|
29
29
|
) -> typing.List[DatabricksExportStorage]:
|
|
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 a list of all Databricks Files export storage connections.
|
|
32
38
|
|
|
33
39
|
Parameters
|
|
@@ -106,6 +112,12 @@ class DatabricksClient:
|
|
|
106
112
|
request_options: typing.Optional[RequestOptions] = None,
|
|
107
113
|
) -> DatabricksExportStorage:
|
|
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 a Databricks Files export storage connection.
|
|
110
122
|
|
|
111
123
|
Parameters
|
|
@@ -265,6 +277,12 @@ class DatabricksClient:
|
|
|
265
277
|
request_options: typing.Optional[RequestOptions] = None,
|
|
266
278
|
) -> None:
|
|
267
279
|
"""
|
|
280
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
281
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
282
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
283
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
284
|
+
</p>
|
|
285
|
+
</Card>
|
|
268
286
|
Validate a specific Databricks Files export storage connection.
|
|
269
287
|
|
|
270
288
|
Parameters
|
|
@@ -391,6 +409,12 @@ class DatabricksClient:
|
|
|
391
409
|
|
|
392
410
|
def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> DatabricksExportStorage:
|
|
393
411
|
"""
|
|
412
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
413
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
414
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
415
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
416
|
+
</p>
|
|
417
|
+
</Card>
|
|
394
418
|
Get a specific Databricks Files export storage connection.
|
|
395
419
|
|
|
396
420
|
Parameters
|
|
@@ -437,6 +461,12 @@ class DatabricksClient:
|
|
|
437
461
|
|
|
438
462
|
def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
|
|
439
463
|
"""
|
|
464
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
465
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
466
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
467
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
468
|
+
</p>
|
|
469
|
+
</Card>
|
|
440
470
|
Delete a specific Databricks Files export storage connection.
|
|
441
471
|
|
|
442
472
|
Parameters
|
|
@@ -503,6 +533,12 @@ class DatabricksClient:
|
|
|
503
533
|
request_options: typing.Optional[RequestOptions] = None,
|
|
504
534
|
) -> DatabricksExportStorage:
|
|
505
535
|
"""
|
|
536
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
537
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
538
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
539
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
540
|
+
</p>
|
|
541
|
+
</Card>
|
|
506
542
|
Update a specific Databricks Files export storage connection.
|
|
507
543
|
|
|
508
544
|
Parameters
|
|
@@ -637,6 +673,12 @@ class DatabricksClient:
|
|
|
637
673
|
|
|
638
674
|
def sync(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> DatabricksExportStorage:
|
|
639
675
|
"""
|
|
676
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
677
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
678
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
679
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
680
|
+
</p>
|
|
681
|
+
</Card>
|
|
640
682
|
Export annotations to a Databricks Files storage.
|
|
641
683
|
|
|
642
684
|
Parameters
|
|
@@ -694,6 +736,12 @@ class AsyncDatabricksClient:
|
|
|
694
736
|
request_options: typing.Optional[RequestOptions] = None,
|
|
695
737
|
) -> typing.List[DatabricksExportStorage]:
|
|
696
738
|
"""
|
|
739
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
740
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
741
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
742
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
743
|
+
</p>
|
|
744
|
+
</Card>
|
|
697
745
|
Get a list of all Databricks Files export storage connections.
|
|
698
746
|
|
|
699
747
|
Parameters
|
|
@@ -780,6 +828,12 @@ class AsyncDatabricksClient:
|
|
|
780
828
|
request_options: typing.Optional[RequestOptions] = None,
|
|
781
829
|
) -> DatabricksExportStorage:
|
|
782
830
|
"""
|
|
831
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
832
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
833
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
834
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
835
|
+
</p>
|
|
836
|
+
</Card>
|
|
783
837
|
Create a Databricks Files export storage connection.
|
|
784
838
|
|
|
785
839
|
Parameters
|
|
@@ -947,6 +1001,12 @@ class AsyncDatabricksClient:
|
|
|
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 Databricks Files export storage connection.
|
|
951
1011
|
|
|
952
1012
|
Parameters
|
|
@@ -1081,6 +1141,12 @@ class AsyncDatabricksClient:
|
|
|
1081
1141
|
|
|
1082
1142
|
async def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> DatabricksExportStorage:
|
|
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 Databricks Files export storage connection.
|
|
1085
1151
|
|
|
1086
1152
|
Parameters
|
|
@@ -1135,6 +1201,12 @@ class AsyncDatabricksClient:
|
|
|
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 Databricks Files export storage connection.
|
|
1139
1211
|
|
|
1140
1212
|
Parameters
|
|
@@ -1209,6 +1281,12 @@ class AsyncDatabricksClient:
|
|
|
1209
1281
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1210
1282
|
) -> DatabricksExportStorage:
|
|
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 Databricks Files export storage connection.
|
|
1213
1291
|
|
|
1214
1292
|
Parameters
|
|
@@ -1353,6 +1431,12 @@ class AsyncDatabricksClient:
|
|
|
1353
1431
|
self, id: int, *, request_options: typing.Optional[RequestOptions] = None
|
|
1354
1432
|
) -> DatabricksExportStorage:
|
|
1355
1433
|
"""
|
|
1434
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
1435
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
1436
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
1437
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
1438
|
+
</p>
|
|
1439
|
+
</Card>
|
|
1356
1440
|
Export annotations to a Databricks Files storage.
|
|
1357
1441
|
|
|
1358
1442
|
Parameters
|
|
@@ -28,6 +28,12 @@ class GcswifClient:
|
|
|
28
28
|
request_options: typing.Optional[RequestOptions] = None,
|
|
29
29
|
) -> typing.List[GcswifExportStorage]:
|
|
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 a list of all GCS export storage connections that were set up with WIF authentication.
|
|
32
38
|
|
|
33
39
|
Parameters
|
|
@@ -105,6 +111,12 @@ class GcswifClient:
|
|
|
105
111
|
request_options: typing.Optional[RequestOptions] = None,
|
|
106
112
|
) -> GcswifExportStorage:
|
|
107
113
|
"""
|
|
114
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
115
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
116
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
117
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
118
|
+
</p>
|
|
119
|
+
</Card>
|
|
108
120
|
Create an GCS export storage connection with WIF authentication to store annotations.
|
|
109
121
|
|
|
110
122
|
Parameters
|
|
@@ -258,6 +270,12 @@ class GcswifClient:
|
|
|
258
270
|
request_options: typing.Optional[RequestOptions] = None,
|
|
259
271
|
) -> None:
|
|
260
272
|
"""
|
|
273
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
274
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
275
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
276
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
277
|
+
</p>
|
|
278
|
+
</Card>
|
|
261
279
|
Validate a specific GCS export storage connection that was set up with WIF authentication.
|
|
262
280
|
|
|
263
281
|
Parameters
|
|
@@ -379,6 +397,12 @@ class GcswifClient:
|
|
|
379
397
|
|
|
380
398
|
def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> GcswifExportStorage:
|
|
381
399
|
"""
|
|
400
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
401
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
402
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
403
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
404
|
+
</p>
|
|
405
|
+
</Card>
|
|
382
406
|
Get a specific GCS export storage connection that was set up with WIF authentication.
|
|
383
407
|
|
|
384
408
|
Parameters
|
|
@@ -425,6 +449,12 @@ class GcswifClient:
|
|
|
425
449
|
|
|
426
450
|
def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
|
|
427
451
|
"""
|
|
452
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
453
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
454
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
455
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
456
|
+
</p>
|
|
457
|
+
</Card>
|
|
428
458
|
Delete a specific GCS export storage connection that was set up with WIF authentication.
|
|
429
459
|
|
|
430
460
|
Parameters
|
|
@@ -490,6 +520,12 @@ class GcswifClient:
|
|
|
490
520
|
request_options: typing.Optional[RequestOptions] = None,
|
|
491
521
|
) -> GcswifExportStorage:
|
|
492
522
|
"""
|
|
523
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
524
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
525
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
526
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
527
|
+
</p>
|
|
528
|
+
</Card>
|
|
493
529
|
Update a specific GCS export storage connection that was set up with WIF authentication.
|
|
494
530
|
|
|
495
531
|
Parameters
|
|
@@ -623,6 +659,12 @@ class GcswifClient:
|
|
|
623
659
|
|
|
624
660
|
def sync(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> GcswifExportStorage:
|
|
625
661
|
"""
|
|
662
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
663
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
664
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
665
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
666
|
+
</p>
|
|
667
|
+
</Card>
|
|
626
668
|
Sync tasks from an GCS WIF export storage.
|
|
627
669
|
|
|
628
670
|
Parameters
|
|
@@ -680,6 +722,12 @@ class AsyncGcswifClient:
|
|
|
680
722
|
request_options: typing.Optional[RequestOptions] = None,
|
|
681
723
|
) -> typing.List[GcswifExportStorage]:
|
|
682
724
|
"""
|
|
725
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
726
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
727
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
728
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
729
|
+
</p>
|
|
730
|
+
</Card>
|
|
683
731
|
Get a list of all GCS export storage connections that were set up with WIF authentication.
|
|
684
732
|
|
|
685
733
|
Parameters
|
|
@@ -765,6 +813,12 @@ class AsyncGcswifClient:
|
|
|
765
813
|
request_options: typing.Optional[RequestOptions] = None,
|
|
766
814
|
) -> GcswifExportStorage:
|
|
767
815
|
"""
|
|
816
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
817
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
818
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
819
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
820
|
+
</p>
|
|
821
|
+
</Card>
|
|
768
822
|
Create an GCS export storage connection with WIF authentication to store annotations.
|
|
769
823
|
|
|
770
824
|
Parameters
|
|
@@ -926,6 +980,12 @@ class AsyncGcswifClient:
|
|
|
926
980
|
request_options: typing.Optional[RequestOptions] = None,
|
|
927
981
|
) -> None:
|
|
928
982
|
"""
|
|
983
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
984
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
985
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
986
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
987
|
+
</p>
|
|
988
|
+
</Card>
|
|
929
989
|
Validate a specific GCS export storage connection that was set up with WIF authentication.
|
|
930
990
|
|
|
931
991
|
Parameters
|
|
@@ -1055,6 +1115,12 @@ class AsyncGcswifClient:
|
|
|
1055
1115
|
|
|
1056
1116
|
async def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> GcswifExportStorage:
|
|
1057
1117
|
"""
|
|
1118
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
1119
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
1120
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
1121
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
1122
|
+
</p>
|
|
1123
|
+
</Card>
|
|
1058
1124
|
Get a specific GCS export storage connection that was set up with WIF authentication.
|
|
1059
1125
|
|
|
1060
1126
|
Parameters
|
|
@@ -1109,6 +1175,12 @@ class AsyncGcswifClient:
|
|
|
1109
1175
|
|
|
1110
1176
|
async def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
|
|
1111
1177
|
"""
|
|
1178
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
1179
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
1180
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
1181
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
1182
|
+
</p>
|
|
1183
|
+
</Card>
|
|
1112
1184
|
Delete a specific GCS export storage connection that was set up with WIF authentication.
|
|
1113
1185
|
|
|
1114
1186
|
Parameters
|
|
@@ -1182,6 +1254,12 @@ class AsyncGcswifClient:
|
|
|
1182
1254
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1183
1255
|
) -> GcswifExportStorage:
|
|
1184
1256
|
"""
|
|
1257
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
1258
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
1259
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
1260
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
1261
|
+
</p>
|
|
1262
|
+
</Card>
|
|
1185
1263
|
Update a specific GCS export storage connection that was set up with WIF authentication.
|
|
1186
1264
|
|
|
1187
1265
|
Parameters
|
|
@@ -1323,6 +1401,12 @@ class AsyncGcswifClient:
|
|
|
1323
1401
|
|
|
1324
1402
|
async def sync(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> GcswifExportStorage:
|
|
1325
1403
|
"""
|
|
1404
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
1405
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
1406
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
1407
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
1408
|
+
</p>
|
|
1409
|
+
</Card>
|
|
1326
1410
|
Sync tasks from an GCS WIF export storage.
|
|
1327
1411
|
|
|
1328
1412
|
Parameters
|
|
@@ -28,6 +28,12 @@ class S3SClient:
|
|
|
28
28
|
request_options: typing.Optional[RequestOptions] = None,
|
|
29
29
|
) -> typing.List[LseS3ExportStorage]:
|
|
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 a list of all S3 export storage connections that were set up with IAM role access.
|
|
32
38
|
|
|
33
39
|
Parameters
|
|
@@ -108,6 +114,12 @@ class S3SClient:
|
|
|
108
114
|
request_options: typing.Optional[RequestOptions] = None,
|
|
109
115
|
) -> LseS3ExportStorage:
|
|
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 an S3 export storage connection with IAM role access to store annotations.
|
|
112
124
|
|
|
113
125
|
Parameters
|
|
@@ -276,6 +288,12 @@ class S3SClient:
|
|
|
276
288
|
request_options: typing.Optional[RequestOptions] = None,
|
|
277
289
|
) -> None:
|
|
278
290
|
"""
|
|
291
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
292
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
293
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
294
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
295
|
+
</p>
|
|
296
|
+
</Card>
|
|
279
297
|
Validate a specific S3 export storage connection that was set up with IAM role access.
|
|
280
298
|
|
|
281
299
|
Parameters
|
|
@@ -409,6 +427,12 @@ class S3SClient:
|
|
|
409
427
|
|
|
410
428
|
def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> LseS3ExportStorage:
|
|
411
429
|
"""
|
|
430
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
431
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
432
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
433
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
434
|
+
</p>
|
|
435
|
+
</Card>
|
|
412
436
|
Get a specific S3 export storage connection that was set up with IAM role access.
|
|
413
437
|
|
|
414
438
|
Parameters
|
|
@@ -455,6 +479,12 @@ class S3SClient:
|
|
|
455
479
|
|
|
456
480
|
def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
|
|
457
481
|
"""
|
|
482
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
483
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
484
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
485
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
486
|
+
</p>
|
|
487
|
+
</Card>
|
|
458
488
|
Delete a specific S3 export storage connection that was set up with IAM role access.
|
|
459
489
|
|
|
460
490
|
Parameters
|
|
@@ -523,6 +553,12 @@ class S3SClient:
|
|
|
523
553
|
request_options: typing.Optional[RequestOptions] = None,
|
|
524
554
|
) -> LseS3ExportStorage:
|
|
525
555
|
"""
|
|
556
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
557
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
558
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
559
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
560
|
+
</p>
|
|
561
|
+
</Card>
|
|
526
562
|
Update a specific S3 export storage connection that was set up with IAM role access.
|
|
527
563
|
|
|
528
564
|
Parameters
|
|
@@ -667,6 +703,12 @@ class S3SClient:
|
|
|
667
703
|
|
|
668
704
|
def sync(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> LseS3ExportStorage:
|
|
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 an S3 export storage.
|
|
671
713
|
|
|
672
714
|
Parameters
|
|
@@ -724,6 +766,12 @@ class AsyncS3SClient:
|
|
|
724
766
|
request_options: typing.Optional[RequestOptions] = None,
|
|
725
767
|
) -> typing.List[LseS3ExportStorage]:
|
|
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 a list of all S3 export storage connections that were set up with IAM role access.
|
|
728
776
|
|
|
729
777
|
Parameters
|
|
@@ -812,6 +860,12 @@ class AsyncS3SClient:
|
|
|
812
860
|
request_options: typing.Optional[RequestOptions] = None,
|
|
813
861
|
) -> LseS3ExportStorage:
|
|
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 an S3 export storage connection with IAM role access to store annotations.
|
|
816
870
|
|
|
817
871
|
Parameters
|
|
@@ -988,6 +1042,12 @@ class AsyncS3SClient:
|
|
|
988
1042
|
request_options: typing.Optional[RequestOptions] = None,
|
|
989
1043
|
) -> None:
|
|
990
1044
|
"""
|
|
1045
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
1046
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
1047
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
1048
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
1049
|
+
</p>
|
|
1050
|
+
</Card>
|
|
991
1051
|
Validate a specific S3 export storage connection that was set up with IAM role access.
|
|
992
1052
|
|
|
993
1053
|
Parameters
|
|
@@ -1129,6 +1189,12 @@ class AsyncS3SClient:
|
|
|
1129
1189
|
|
|
1130
1190
|
async def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> LseS3ExportStorage:
|
|
1131
1191
|
"""
|
|
1192
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
1193
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
1194
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
1195
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
1196
|
+
</p>
|
|
1197
|
+
</Card>
|
|
1132
1198
|
Get a specific S3 export storage connection that was set up with IAM role access.
|
|
1133
1199
|
|
|
1134
1200
|
Parameters
|
|
@@ -1183,6 +1249,12 @@ class AsyncS3SClient:
|
|
|
1183
1249
|
|
|
1184
1250
|
async def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
|
|
1185
1251
|
"""
|
|
1252
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
1253
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
1254
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
1255
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
1256
|
+
</p>
|
|
1257
|
+
</Card>
|
|
1186
1258
|
Delete a specific S3 export storage connection that was set up with IAM role access.
|
|
1187
1259
|
|
|
1188
1260
|
Parameters
|
|
@@ -1259,6 +1331,12 @@ class AsyncS3SClient:
|
|
|
1259
1331
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1260
1332
|
) -> LseS3ExportStorage:
|
|
1261
1333
|
"""
|
|
1334
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
1335
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
1336
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
1337
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
1338
|
+
</p>
|
|
1339
|
+
</Card>
|
|
1262
1340
|
Update a specific S3 export storage connection that was set up with IAM role access.
|
|
1263
1341
|
|
|
1264
1342
|
Parameters
|
|
@@ -1411,6 +1489,12 @@ class AsyncS3SClient:
|
|
|
1411
1489
|
|
|
1412
1490
|
async def sync(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> LseS3ExportStorage:
|
|
1413
1491
|
"""
|
|
1492
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
1493
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
1494
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
1495
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
1496
|
+
</p>
|
|
1497
|
+
</Card>
|
|
1414
1498
|
Sync tasks from an S3 export storage.
|
|
1415
1499
|
|
|
1416
1500
|
Parameters
|