-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclient.py
More file actions
847 lines (672 loc) · 24.5 KB
/
client.py
File metadata and controls
847 lines (672 loc) · 24.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
# This file was auto-generated by Fern from our API Definition.
import typing
from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
from ..core.pagination import AsyncPager, SyncPager
from ..core.request_options import RequestOptions
from ..types.data_directory import DataDirectory
from ..types.data_directory_manifest import DataDirectoryManifest
from ..types.empty_response import EmptyResponse
from ..types.file_info import FileInfo
from ..types.get_data_directory_response import GetDataDirectoryResponse
from ..types.get_signed_ur_ls_response import GetSignedUrLsResponse
from ..types.list_data_directories_response import ListDataDirectoriesResponse
from ..types.list_files_response import ListFilesResponse
from ..types.multi_part_upload_response import MultiPartUploadResponse
from ..types.operation import Operation
from .raw_client import AsyncRawDataDirectoriesClient, RawDataDirectoriesClient
# this is used as the default value for optional parameters
OMIT = typing.cast(typing.Any, ...)
class DataDirectoriesClient:
def __init__(self, *, client_wrapper: SyncClientWrapper):
self._raw_client = RawDataDirectoriesClient(client_wrapper=client_wrapper)
@property
def with_raw_response(self) -> RawDataDirectoriesClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
RawDataDirectoriesClient
"""
return self._raw_client
def get(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> GetDataDirectoryResponse:
"""
Get a data directory by its ID.
Parameters
----------
id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetDataDirectoryResponse
The data directory data
Examples
--------
from truefoundry_sdk import TrueFoundry
client = TrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
client.data_directories.get(
id="id",
)
"""
_response = self._raw_client.get(id, request_options=request_options)
return _response.data
def delete(
self,
id: str,
*,
delete_contents: typing.Optional[bool] = False,
request_options: typing.Optional[RequestOptions] = None,
) -> EmptyResponse:
"""
Delete a data directory, optionally including its contents.
Parameters
----------
id : str
delete_contents : typing.Optional[bool]
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
EmptyResponse
Empty response indicating successful deletion
Examples
--------
from truefoundry_sdk import TrueFoundry
client = TrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
client.data_directories.delete(
id="id",
delete_contents=True,
)
"""
_response = self._raw_client.delete(id, delete_contents=delete_contents, request_options=request_options)
return _response.data
def list(
self,
*,
fqn: typing.Optional[str] = None,
ml_repo_id: typing.Optional[str] = None,
name: typing.Optional[str] = None,
limit: typing.Optional[int] = 100,
offset: typing.Optional[int] = 0,
request_options: typing.Optional[RequestOptions] = None,
) -> SyncPager[DataDirectory, ListDataDirectoriesResponse]:
"""
List data directories with optional filtering by FQN, ML Repo, or name.
Parameters
----------
fqn : typing.Optional[str]
Fully qualified name to filter data directories by
ml_repo_id : typing.Optional[str]
ID of the ML Repo to filter data directories by
name : typing.Optional[str]
Name of the data directory to filter by
limit : typing.Optional[int]
Maximum number of data directories to return
offset : typing.Optional[int]
Number of data directories to skip for pagination
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
SyncPager[DataDirectory, ListDataDirectoriesResponse]
List of data directories matching the query with pagination information
Examples
--------
from truefoundry_sdk import TrueFoundry
client = TrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
response = client.data_directories.list(
fqn="fqn",
ml_repo_id="ml_repo_id",
name="name",
limit=1,
offset=1,
)
for item in response:
yield item
# alternatively, you can paginate page-by-page
for page in response.iter_pages():
yield page
"""
return self._raw_client.list(
fqn=fqn, ml_repo_id=ml_repo_id, name=name, limit=limit, offset=offset, request_options=request_options
)
def create_or_update(
self, *, manifest: DataDirectoryManifest, request_options: typing.Optional[RequestOptions] = None
) -> GetDataDirectoryResponse:
"""
Create or update a data directory.
Parameters
----------
manifest : DataDirectoryManifest
Manifest containing metadata for the data directory to apply
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetDataDirectoryResponse
The created or updated data directory
Examples
--------
from truefoundry_sdk import (
DataDirectoryManifest,
TrueFoundry,
TrueFoundryManagedSource,
)
client = TrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
client.data_directories.create_or_update(
manifest=DataDirectoryManifest(
name="name",
ml_repo="ml_repo",
metadata={"key": "value"},
source=TrueFoundryManagedSource(),
),
)
"""
_response = self._raw_client.create_or_update(manifest=manifest, request_options=request_options)
return _response.data
def list_files(
self,
*,
id: str,
path: typing.Optional[str] = OMIT,
limit: typing.Optional[int] = OMIT,
page_token: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> SyncPager[FileInfo, ListFilesResponse]:
"""
List files and directories in a data directory.
Parameters
----------
id : str
ID of the artifact version to list files from
path : typing.Optional[str]
Relative path within the artifact version to list files from (defaults to root)
limit : typing.Optional[int]
Maximum number of files/directories to return
page_token : typing.Optional[str]
Token to retrieve the next page of results
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
SyncPager[FileInfo, ListFilesResponse]
List of files and directories with pagination information
Examples
--------
from truefoundry_sdk import TrueFoundry
client = TrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
response = client.data_directories.list_files(
id="id",
)
for item in response:
yield item
# alternatively, you can paginate page-by-page
for page in response.iter_pages():
yield page
"""
return self._raw_client.list_files(
id=id, path=path, limit=limit, page_token=page_token, request_options=request_options
)
def delete_files(
self, *, id: str, paths: typing.Sequence[str], request_options: typing.Optional[RequestOptions] = None
) -> EmptyResponse:
"""
Delete files from a data directory.
Parameters
----------
id : str
ID of the artifact version to delete files from
paths : typing.Sequence[str]
List of relative file paths within the artifact version to delete
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
EmptyResponse
Empty response indicating successful deletion
Examples
--------
from truefoundry_sdk import TrueFoundry
client = TrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
client.data_directories.delete_files(
id="id",
paths=["paths"],
)
"""
_response = self._raw_client.delete_files(id=id, paths=paths, request_options=request_options)
return _response.data
def get_signed_urls(
self,
*,
id: str,
paths: typing.Sequence[str],
operation: Operation,
request_options: typing.Optional[RequestOptions] = None,
) -> GetSignedUrLsResponse:
"""
Get pre-signed URLs for reading or writing files in a data directory.
Parameters
----------
id : str
ID of the artifact version to get signed URLs for
paths : typing.Sequence[str]
List of relative file paths within the artifact version to get signed URLs for
operation : Operation
Operation type for the signed URL (e.g., 'READ' or 'WRITE')
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetSignedUrLsResponse
List of signed URLs for the requested file paths
Examples
--------
from truefoundry_sdk import Operation, TrueFoundry
client = TrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
client.data_directories.get_signed_urls(
id="id",
paths=["paths"],
operation=Operation.READ,
)
"""
_response = self._raw_client.get_signed_urls(
id=id, paths=paths, operation=operation, request_options=request_options
)
return _response.data
def create_multipart_upload(
self, *, id: str, path: str, num_parts: int, request_options: typing.Optional[RequestOptions] = None
) -> MultiPartUploadResponse:
"""
Create a multipart upload for large files in a data directory.
Parameters
----------
id : str
ID of the artifact version to upload files to
path : str
Relative path within the artifact version where the file should be uploaded
num_parts : int
Number of parts to split the upload into for multipart upload
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
MultiPartUploadResponse
Multipart upload information including signed URLs for each part
Examples
--------
from truefoundry_sdk import TrueFoundry
client = TrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
client.data_directories.create_multipart_upload(
id="id",
path="path",
num_parts=1,
)
"""
_response = self._raw_client.create_multipart_upload(
id=id, path=path, num_parts=num_parts, request_options=request_options
)
return _response.data
class AsyncDataDirectoriesClient:
def __init__(self, *, client_wrapper: AsyncClientWrapper):
self._raw_client = AsyncRawDataDirectoriesClient(client_wrapper=client_wrapper)
@property
def with_raw_response(self) -> AsyncRawDataDirectoriesClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
AsyncRawDataDirectoriesClient
"""
return self._raw_client
async def get(
self, id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> GetDataDirectoryResponse:
"""
Get a data directory by its ID.
Parameters
----------
id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetDataDirectoryResponse
The data directory data
Examples
--------
import asyncio
from truefoundry_sdk import AsyncTrueFoundry
client = AsyncTrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.data_directories.get(
id="id",
)
asyncio.run(main())
"""
_response = await self._raw_client.get(id, request_options=request_options)
return _response.data
async def delete(
self,
id: str,
*,
delete_contents: typing.Optional[bool] = False,
request_options: typing.Optional[RequestOptions] = None,
) -> EmptyResponse:
"""
Delete a data directory, optionally including its contents.
Parameters
----------
id : str
delete_contents : typing.Optional[bool]
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
EmptyResponse
Empty response indicating successful deletion
Examples
--------
import asyncio
from truefoundry_sdk import AsyncTrueFoundry
client = AsyncTrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.data_directories.delete(
id="id",
delete_contents=True,
)
asyncio.run(main())
"""
_response = await self._raw_client.delete(id, delete_contents=delete_contents, request_options=request_options)
return _response.data
async def list(
self,
*,
fqn: typing.Optional[str] = None,
ml_repo_id: typing.Optional[str] = None,
name: typing.Optional[str] = None,
limit: typing.Optional[int] = 100,
offset: typing.Optional[int] = 0,
request_options: typing.Optional[RequestOptions] = None,
) -> AsyncPager[DataDirectory, ListDataDirectoriesResponse]:
"""
List data directories with optional filtering by FQN, ML Repo, or name.
Parameters
----------
fqn : typing.Optional[str]
Fully qualified name to filter data directories by
ml_repo_id : typing.Optional[str]
ID of the ML Repo to filter data directories by
name : typing.Optional[str]
Name of the data directory to filter by
limit : typing.Optional[int]
Maximum number of data directories to return
offset : typing.Optional[int]
Number of data directories to skip for pagination
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
AsyncPager[DataDirectory, ListDataDirectoriesResponse]
List of data directories matching the query with pagination information
Examples
--------
import asyncio
from truefoundry_sdk import AsyncTrueFoundry
client = AsyncTrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
response = await client.data_directories.list(
fqn="fqn",
ml_repo_id="ml_repo_id",
name="name",
limit=1,
offset=1,
)
async for item in response:
yield item
# alternatively, you can paginate page-by-page
async for page in response.iter_pages():
yield page
asyncio.run(main())
"""
return await self._raw_client.list(
fqn=fqn, ml_repo_id=ml_repo_id, name=name, limit=limit, offset=offset, request_options=request_options
)
async def create_or_update(
self, *, manifest: DataDirectoryManifest, request_options: typing.Optional[RequestOptions] = None
) -> GetDataDirectoryResponse:
"""
Create or update a data directory.
Parameters
----------
manifest : DataDirectoryManifest
Manifest containing metadata for the data directory to apply
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetDataDirectoryResponse
The created or updated data directory
Examples
--------
import asyncio
from truefoundry_sdk import (
AsyncTrueFoundry,
DataDirectoryManifest,
TrueFoundryManagedSource,
)
client = AsyncTrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.data_directories.create_or_update(
manifest=DataDirectoryManifest(
name="name",
ml_repo="ml_repo",
metadata={"key": "value"},
source=TrueFoundryManagedSource(),
),
)
asyncio.run(main())
"""
_response = await self._raw_client.create_or_update(manifest=manifest, request_options=request_options)
return _response.data
async def list_files(
self,
*,
id: str,
path: typing.Optional[str] = OMIT,
limit: typing.Optional[int] = OMIT,
page_token: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> AsyncPager[FileInfo, ListFilesResponse]:
"""
List files and directories in a data directory.
Parameters
----------
id : str
ID of the artifact version to list files from
path : typing.Optional[str]
Relative path within the artifact version to list files from (defaults to root)
limit : typing.Optional[int]
Maximum number of files/directories to return
page_token : typing.Optional[str]
Token to retrieve the next page of results
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
AsyncPager[FileInfo, ListFilesResponse]
List of files and directories with pagination information
Examples
--------
import asyncio
from truefoundry_sdk import AsyncTrueFoundry
client = AsyncTrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
response = await client.data_directories.list_files(
id="id",
)
async for item in response:
yield item
# alternatively, you can paginate page-by-page
async for page in response.iter_pages():
yield page
asyncio.run(main())
"""
return await self._raw_client.list_files(
id=id, path=path, limit=limit, page_token=page_token, request_options=request_options
)
async def delete_files(
self, *, id: str, paths: typing.Sequence[str], request_options: typing.Optional[RequestOptions] = None
) -> EmptyResponse:
"""
Delete files from a data directory.
Parameters
----------
id : str
ID of the artifact version to delete files from
paths : typing.Sequence[str]
List of relative file paths within the artifact version to delete
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
EmptyResponse
Empty response indicating successful deletion
Examples
--------
import asyncio
from truefoundry_sdk import AsyncTrueFoundry
client = AsyncTrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.data_directories.delete_files(
id="id",
paths=["paths"],
)
asyncio.run(main())
"""
_response = await self._raw_client.delete_files(id=id, paths=paths, request_options=request_options)
return _response.data
async def get_signed_urls(
self,
*,
id: str,
paths: typing.Sequence[str],
operation: Operation,
request_options: typing.Optional[RequestOptions] = None,
) -> GetSignedUrLsResponse:
"""
Get pre-signed URLs for reading or writing files in a data directory.
Parameters
----------
id : str
ID of the artifact version to get signed URLs for
paths : typing.Sequence[str]
List of relative file paths within the artifact version to get signed URLs for
operation : Operation
Operation type for the signed URL (e.g., 'READ' or 'WRITE')
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetSignedUrLsResponse
List of signed URLs for the requested file paths
Examples
--------
import asyncio
from truefoundry_sdk import AsyncTrueFoundry, Operation
client = AsyncTrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.data_directories.get_signed_urls(
id="id",
paths=["paths"],
operation=Operation.READ,
)
asyncio.run(main())
"""
_response = await self._raw_client.get_signed_urls(
id=id, paths=paths, operation=operation, request_options=request_options
)
return _response.data
async def create_multipart_upload(
self, *, id: str, path: str, num_parts: int, request_options: typing.Optional[RequestOptions] = None
) -> MultiPartUploadResponse:
"""
Create a multipart upload for large files in a data directory.
Parameters
----------
id : str
ID of the artifact version to upload files to
path : str
Relative path within the artifact version where the file should be uploaded
num_parts : int
Number of parts to split the upload into for multipart upload
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
MultiPartUploadResponse
Multipart upload information including signed URLs for each part
Examples
--------
import asyncio
from truefoundry_sdk import AsyncTrueFoundry
client = AsyncTrueFoundry(
api_key="YOUR_API_KEY",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.data_directories.create_multipart_upload(
id="id",
path="path",
num_parts=1,
)
asyncio.run(main())
"""
_response = await self._raw_client.create_multipart_upload(
id=id, path=path, num_parts=num_parts, request_options=request_options
)
return _response.data