-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.py
More file actions
934 lines (732 loc) · 29.2 KB
/
Copy pathclient.py
File metadata and controls
934 lines (732 loc) · 29.2 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
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
# This file was auto-generated by Fern from our API Definition.
import typing
from .. import core
from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
from ..core.request_options import RequestOptions
from ..types.documents_commit200response import DocumentsCommit200Response
from ..types.documents_get200response import DocumentsGet200Response
from ..types.documents_import_from200response import DocumentsImportFrom200Response
from ..types.documents_init200response import DocumentsInit200Response
from ..types.documents_list200response import DocumentsList200Response
from ..types.documents_upload_proxy200response import DocumentsUploadProxy200Response
from .raw_client import AsyncRawDocumentsClient, RawDocumentsClient
from .types.documents_import_from_request_dedup_mode import DocumentsImportFromRequestDedupMode
from .types.documents_import_from_request_expected import DocumentsImportFromRequestExpected
from .types.documents_import_from_request_mode import DocumentsImportFromRequestMode
from .types.documents_import_from_request_source import DocumentsImportFromRequestSource
from .types.documents_init_request_dedup_mode import DocumentsInitRequestDedupMode
from .types.documents_init_request_upload_preference import DocumentsInitRequestUploadPreference
from .types.list_documents_request_state import ListDocumentsRequestState
# this is used as the default value for optional parameters
OMIT = typing.cast(typing.Any, ...)
class DocumentsClient:
def __init__(self, *, client_wrapper: SyncClientWrapper):
self._raw_client = RawDocumentsClient(client_wrapper=client_wrapper)
@property
def with_raw_response(self) -> RawDocumentsClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
RawDocumentsClient
"""
return self._raw_client
def list(
self,
tenant_id: str,
*,
limit: typing.Optional[int] = None,
cursor: typing.Optional[str] = None,
state: typing.Optional[ListDocumentsRequestState] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> DocumentsList200Response:
"""
Parameters
----------
tenant_id : str
limit : typing.Optional[int]
cursor : typing.Optional[str]
state : typing.Optional[ListDocumentsRequestState]
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocumentsList200Response
OK
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.documents.list(
tenant_id="tenantId",
)
"""
_response = self._raw_client.list(
tenant_id, limit=limit, cursor=cursor, state=state, request_options=request_options
)
return _response.data
def get(
self, tenant_id: str, id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> DocumentsGet200Response:
"""
Parameters
----------
tenant_id : str
id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocumentsGet200Response
OK
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.documents.get(
tenant_id="tenantId",
id="id",
)
"""
_response = self._raw_client.get(tenant_id, id, request_options=request_options)
return _response.data
def delete(self, tenant_id: str, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> None:
"""
Parameters
----------
tenant_id : str
id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
None
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.documents.delete(
tenant_id="tenantId",
id="id",
)
"""
_response = self._raw_client.delete(tenant_id, id, request_options=request_options)
return _response.data
def commit(
self, tenant_id: str, id: str, *, sha256: str, request_options: typing.Optional[RequestOptions] = None
) -> DocumentsCommit200Response:
"""
Parameters
----------
tenant_id : str
id : str
sha256 : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocumentsCommit200Response
OK
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.documents.commit(
tenant_id="tenantId",
id="id",
sha256="sha256",
)
"""
_response = self._raw_client.commit(tenant_id, id, sha256=sha256, request_options=request_options)
return _response.data
def download(
self, tenant_id: str, id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> typing.Iterator[bytes]:
"""
Parameters
----------
tenant_id : str
id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
Returns
-------
typing.Iterator[bytes]
OK
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.documents.download(
tenant_id="tenantId",
id="id",
)
"""
with self._raw_client.download(tenant_id, id, request_options=request_options) as r:
yield from r.data
def thumbnail(
self, tenant_id: str, id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> typing.Iterator[bytes]:
"""
Parameters
----------
tenant_id : str
id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
Returns
-------
typing.Iterator[bytes]
OK
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.documents.thumbnail(
tenant_id="tenantId",
id="id",
)
"""
with self._raw_client.thumbnail(tenant_id, id, request_options=request_options) as r:
yield from r.data
def upload_proxy(
self, tenant_id: str, id: str, *, file: core.File, request_options: typing.Optional[RequestOptions] = None
) -> DocumentsUploadProxy200Response:
"""
This bounded origin-mediated fallback must only be used after documents.init returns upload.kind=proxy. Auto mode prefers a presigned object-store PUT whenever available.
Parameters
----------
tenant_id : str
id : str
file : core.File
See core.File for more documentation
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocumentsUploadProxy200Response
OK
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.documents.upload_proxy(
tenant_id="tenantId",
id="id",
)
"""
_response = self._raw_client.upload_proxy(tenant_id, id, file=file, request_options=request_options)
return _response.data
def import_from(
self,
tenant_id: str,
*,
source: DocumentsImportFromRequestSource,
expected: typing.Optional[DocumentsImportFromRequestExpected] = OMIT,
metadata: typing.Optional[typing.Dict[str, typing.Any]] = OMIT,
idempotency_key: typing.Optional[str] = OMIT,
dedup_mode: typing.Optional[DocumentsImportFromRequestDedupMode] = OMIT,
doc_id: typing.Optional[str] = OMIT,
mode: typing.Optional[DocumentsImportFromRequestMode] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> DocumentsImportFrom200Response:
"""
Default mode is synchronous and bounded: the response returns only after the transfer verified and committed (or failed). mode=async (connection sources only) answers 202 immediately and an in-process worker performs the transfer with leased, fenced retries; poll the document until ready/failed. The deployment import policy gates scheme, network range, and size; sources must declare a length. CloudPDF copies and owns the bytes — the source is never referenced in place. A 502 marks a retryable upstream failure: retry with the same idempotencyKey to resume the same document. URL sources are capabilities and never echoed back. Connection sources name operator-registered storage (bucket/prefix scope, allowed credential classes, and tenant bindings are deployment configuration); `revision` is provider-interpreted (S3 VersionId, GCS generation, Azure version id).
Parameters
----------
tenant_id : str
source : DocumentsImportFromRequestSource
Where CloudPDF pulls the bytes from. The two shapes differ in WHO supplies the authority to read, not in which storage vendor holds the file.
expected : typing.Optional[DocumentsImportFromRequestExpected]
Integrity pins, enforced when present. When absent, the server-observed values become authoritative.
metadata : typing.Optional[typing.Dict[str, typing.Any]]
idempotency_key : typing.Optional[str]
Retrying with the same key resumes the same document rather than importing a second copy — including after a 502.
dedup_mode : typing.Optional[DocumentsImportFromRequestDedupMode]
always-create (default) creates a new document every time. reuse-existing returns a document that already holds the same content instead of storing it twice.
doc_id : typing.Optional[str]
mode : typing.Optional[DocumentsImportFromRequestMode]
sync (default) holds the response open for the whole transfer. async answers 202 with the document pending and transfers in the background; it requires a connection source, and filesystem connections additionally require expected.sha256.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocumentsImportFrom200Response
OK
Examples
--------
from cloudpdf import CloudPDFClient
from cloudpdf.documents import DocumentsImportFromRequestSource_Url
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.documents.import_from(
tenant_id="tenantId",
source=DocumentsImportFromRequestSource_Url(
url="url",
),
)
"""
_response = self._raw_client.import_from(
tenant_id,
source=source,
expected=expected,
metadata=metadata,
idempotency_key=idempotency_key,
dedup_mode=dedup_mode,
doc_id=doc_id,
mode=mode,
request_options=request_options,
)
return _response.data
def init(
self,
tenant_id: str,
*,
content_length: float,
content_sha256: str,
metadata: typing.Optional[typing.Dict[str, typing.Any]] = OMIT,
idempotency_key: typing.Optional[str] = OMIT,
dedup_mode: typing.Optional[DocumentsInitRequestDedupMode] = OMIT,
doc_id: typing.Optional[str] = OMIT,
upload_ttl_sec: typing.Optional[float] = OMIT,
upload_preference: typing.Optional[DocumentsInitRequestUploadPreference] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> DocumentsInit200Response:
"""
Parameters
----------
tenant_id : str
content_length : float
content_sha256 : str
metadata : typing.Optional[typing.Dict[str, typing.Any]]
idempotency_key : typing.Optional[str]
dedup_mode : typing.Optional[DocumentsInitRequestDedupMode]
always-create (default) creates a new document every time. reuse-existing returns a document that already holds the same content instead of storing it twice.
doc_id : typing.Optional[str]
upload_ttl_sec : typing.Optional[float]
upload_preference : typing.Optional[DocumentsInitRequestUploadPreference]
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocumentsInit200Response
OK
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.documents.init(
tenant_id="tenantId",
content_length=1.1,
content_sha256="contentSha256",
)
"""
_response = self._raw_client.init(
tenant_id,
content_length=content_length,
content_sha256=content_sha256,
metadata=metadata,
idempotency_key=idempotency_key,
dedup_mode=dedup_mode,
doc_id=doc_id,
upload_ttl_sec=upload_ttl_sec,
upload_preference=upload_preference,
request_options=request_options,
)
return _response.data
class AsyncDocumentsClient:
def __init__(self, *, client_wrapper: AsyncClientWrapper):
self._raw_client = AsyncRawDocumentsClient(client_wrapper=client_wrapper)
@property
def with_raw_response(self) -> AsyncRawDocumentsClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
AsyncRawDocumentsClient
"""
return self._raw_client
async def list(
self,
tenant_id: str,
*,
limit: typing.Optional[int] = None,
cursor: typing.Optional[str] = None,
state: typing.Optional[ListDocumentsRequestState] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> DocumentsList200Response:
"""
Parameters
----------
tenant_id : str
limit : typing.Optional[int]
cursor : typing.Optional[str]
state : typing.Optional[ListDocumentsRequestState]
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocumentsList200Response
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.documents.list(
tenant_id="tenantId",
)
asyncio.run(main())
"""
_response = await self._raw_client.list(
tenant_id, limit=limit, cursor=cursor, state=state, request_options=request_options
)
return _response.data
async def get(
self, tenant_id: str, id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> DocumentsGet200Response:
"""
Parameters
----------
tenant_id : str
id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocumentsGet200Response
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.documents.get(
tenant_id="tenantId",
id="id",
)
asyncio.run(main())
"""
_response = await self._raw_client.get(tenant_id, id, request_options=request_options)
return _response.data
async def delete(self, tenant_id: str, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> None:
"""
Parameters
----------
tenant_id : str
id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
None
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.documents.delete(
tenant_id="tenantId",
id="id",
)
asyncio.run(main())
"""
_response = await self._raw_client.delete(tenant_id, id, request_options=request_options)
return _response.data
async def commit(
self, tenant_id: str, id: str, *, sha256: str, request_options: typing.Optional[RequestOptions] = None
) -> DocumentsCommit200Response:
"""
Parameters
----------
tenant_id : str
id : str
sha256 : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocumentsCommit200Response
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.documents.commit(
tenant_id="tenantId",
id="id",
sha256="sha256",
)
asyncio.run(main())
"""
_response = await self._raw_client.commit(tenant_id, id, sha256=sha256, request_options=request_options)
return _response.data
async def download(
self, tenant_id: str, id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> typing.AsyncIterator[bytes]:
"""
Parameters
----------
tenant_id : str
id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
Returns
-------
typing.AsyncIterator[bytes]
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.documents.download(
tenant_id="tenantId",
id="id",
)
asyncio.run(main())
"""
async with self._raw_client.download(tenant_id, id, request_options=request_options) as r:
async for _chunk in r.data:
yield _chunk
async def thumbnail(
self, tenant_id: str, id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> typing.AsyncIterator[bytes]:
"""
Parameters
----------
tenant_id : str
id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
Returns
-------
typing.AsyncIterator[bytes]
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.documents.thumbnail(
tenant_id="tenantId",
id="id",
)
asyncio.run(main())
"""
async with self._raw_client.thumbnail(tenant_id, id, request_options=request_options) as r:
async for _chunk in r.data:
yield _chunk
async def upload_proxy(
self, tenant_id: str, id: str, *, file: core.File, request_options: typing.Optional[RequestOptions] = None
) -> DocumentsUploadProxy200Response:
"""
This bounded origin-mediated fallback must only be used after documents.init returns upload.kind=proxy. Auto mode prefers a presigned object-store PUT whenever available.
Parameters
----------
tenant_id : str
id : str
file : core.File
See core.File for more documentation
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocumentsUploadProxy200Response
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.documents.upload_proxy(
tenant_id="tenantId",
id="id",
)
asyncio.run(main())
"""
_response = await self._raw_client.upload_proxy(tenant_id, id, file=file, request_options=request_options)
return _response.data
async def import_from(
self,
tenant_id: str,
*,
source: DocumentsImportFromRequestSource,
expected: typing.Optional[DocumentsImportFromRequestExpected] = OMIT,
metadata: typing.Optional[typing.Dict[str, typing.Any]] = OMIT,
idempotency_key: typing.Optional[str] = OMIT,
dedup_mode: typing.Optional[DocumentsImportFromRequestDedupMode] = OMIT,
doc_id: typing.Optional[str] = OMIT,
mode: typing.Optional[DocumentsImportFromRequestMode] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> DocumentsImportFrom200Response:
"""
Default mode is synchronous and bounded: the response returns only after the transfer verified and committed (or failed). mode=async (connection sources only) answers 202 immediately and an in-process worker performs the transfer with leased, fenced retries; poll the document until ready/failed. The deployment import policy gates scheme, network range, and size; sources must declare a length. CloudPDF copies and owns the bytes — the source is never referenced in place. A 502 marks a retryable upstream failure: retry with the same idempotencyKey to resume the same document. URL sources are capabilities and never echoed back. Connection sources name operator-registered storage (bucket/prefix scope, allowed credential classes, and tenant bindings are deployment configuration); `revision` is provider-interpreted (S3 VersionId, GCS generation, Azure version id).
Parameters
----------
tenant_id : str
source : DocumentsImportFromRequestSource
Where CloudPDF pulls the bytes from. The two shapes differ in WHO supplies the authority to read, not in which storage vendor holds the file.
expected : typing.Optional[DocumentsImportFromRequestExpected]
Integrity pins, enforced when present. When absent, the server-observed values become authoritative.
metadata : typing.Optional[typing.Dict[str, typing.Any]]
idempotency_key : typing.Optional[str]
Retrying with the same key resumes the same document rather than importing a second copy — including after a 502.
dedup_mode : typing.Optional[DocumentsImportFromRequestDedupMode]
always-create (default) creates a new document every time. reuse-existing returns a document that already holds the same content instead of storing it twice.
doc_id : typing.Optional[str]
mode : typing.Optional[DocumentsImportFromRequestMode]
sync (default) holds the response open for the whole transfer. async answers 202 with the document pending and transfers in the background; it requires a connection source, and filesystem connections additionally require expected.sha256.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocumentsImportFrom200Response
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
from cloudpdf.documents import DocumentsImportFromRequestSource_Url
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.documents.import_from(
tenant_id="tenantId",
source=DocumentsImportFromRequestSource_Url(
url="url",
),
)
asyncio.run(main())
"""
_response = await self._raw_client.import_from(
tenant_id,
source=source,
expected=expected,
metadata=metadata,
idempotency_key=idempotency_key,
dedup_mode=dedup_mode,
doc_id=doc_id,
mode=mode,
request_options=request_options,
)
return _response.data
async def init(
self,
tenant_id: str,
*,
content_length: float,
content_sha256: str,
metadata: typing.Optional[typing.Dict[str, typing.Any]] = OMIT,
idempotency_key: typing.Optional[str] = OMIT,
dedup_mode: typing.Optional[DocumentsInitRequestDedupMode] = OMIT,
doc_id: typing.Optional[str] = OMIT,
upload_ttl_sec: typing.Optional[float] = OMIT,
upload_preference: typing.Optional[DocumentsInitRequestUploadPreference] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> DocumentsInit200Response:
"""
Parameters
----------
tenant_id : str
content_length : float
content_sha256 : str
metadata : typing.Optional[typing.Dict[str, typing.Any]]
idempotency_key : typing.Optional[str]
dedup_mode : typing.Optional[DocumentsInitRequestDedupMode]
always-create (default) creates a new document every time. reuse-existing returns a document that already holds the same content instead of storing it twice.
doc_id : typing.Optional[str]
upload_ttl_sec : typing.Optional[float]
upload_preference : typing.Optional[DocumentsInitRequestUploadPreference]
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocumentsInit200Response
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.documents.init(
tenant_id="tenantId",
content_length=1.1,
content_sha256="contentSha256",
)
asyncio.run(main())
"""
_response = await self._raw_client.init(
tenant_id,
content_length=content_length,
content_sha256=content_sha256,
metadata=metadata,
idempotency_key=idempotency_key,
dedup_mode=dedup_mode,
doc_id=doc_id,
upload_ttl_sec=upload_ttl_sec,
upload_preference=upload_preference,
request_options=request_options,
)
return _response.data