-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathgen.lock
More file actions
executable file
·1581 lines (1581 loc) · 93.7 KB
/
gen.lock
File metadata and controls
executable file
·1581 lines (1581 loc) · 93.7 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
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockVersion: 2.0.0
id: 8b5fa338-9106-4734-abf0-e30d67044a90
management:
docChecksum: 550390299c16db8640430b6f95585110
docVersion: 1.2.23
speakeasyVersion: 1.601.0
generationVersion: 2.680.0
releaseVersion: 0.42.8
configChecksum: abbc5148e43147f076699209aa67174a
repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
repoSubDirectory: .
installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
published: true
features:
python:
acceptHeaders: 3.0.0
additionalDependencies: 1.0.0
additionalProperties: 1.0.1
constsAndDefaults: 1.0.5
core: 5.19.8
customCodeRegions: 0.1.1
defaultEnabledRetries: 0.2.0
enumUnions: 0.1.0
envVarSecurityUsage: 0.3.2
examples: 3.0.2
globalSecurity: 3.0.3
globalSecurityCallbacks: 1.0.0
globalSecurityFlattening: 1.0.0
globalServerURLs: 3.1.1
multipartFileContentType: 1.0.0
nameOverrides: 3.0.1
nullables: 1.0.1
openEnums: 1.0.1
responseFormat: 1.0.1
retries: 3.0.2
sdkHooks: 1.1.0
serverIDs: 3.0.0
unions: 3.0.4
uploadStreams: 1.0.0
generatedFiles:
- .gitattributes
- .vscode/settings.json
- USAGE.md
- docs/models/errors/detail.md
- docs/models/errors/httpvalidationerror.md
- docs/models/errors/servererror.md
- docs/models/operations/canceljobrequest.md
- docs/models/operations/canceljobresponse.md
- docs/models/operations/createconnectioncheckdestinationsrequest.md
- docs/models/operations/createconnectioncheckdestinationsresponse.md
- docs/models/operations/createconnectionchecksourcesrequest.md
- docs/models/operations/createconnectionchecksourcesresponse.md
- docs/models/operations/createdestinationrequest.md
- docs/models/operations/createdestinationresponse.md
- docs/models/operations/createjobrequest.md
- docs/models/operations/createjobresponse.md
- docs/models/operations/createsourcerequest.md
- docs/models/operations/createsourceresponse.md
- docs/models/operations/createworkflowrequest.md
- docs/models/operations/createworkflowresponse.md
- docs/models/operations/deletedestinationrequest.md
- docs/models/operations/deletedestinationresponse.md
- docs/models/operations/deletesourcerequest.md
- docs/models/operations/deletesourceresponse.md
- docs/models/operations/deleteworkflowrequest.md
- docs/models/operations/deleteworkflowresponse.md
- docs/models/operations/downloadjoboutputrequest.md
- docs/models/operations/downloadjoboutputresponse.md
- docs/models/operations/getconnectioncheckdestinationsrequest.md
- docs/models/operations/getconnectioncheckdestinationsresponse.md
- docs/models/operations/getconnectionchecksourcesrequest.md
- docs/models/operations/getconnectionchecksourcesresponse.md
- docs/models/operations/getdestinationrequest.md
- docs/models/operations/getdestinationresponse.md
- docs/models/operations/getjobdetailsrequest.md
- docs/models/operations/getjobdetailsresponse.md
- docs/models/operations/getjobfailedfilesrequest.md
- docs/models/operations/getjobfailedfilesresponse.md
- docs/models/operations/getjobrequest.md
- docs/models/operations/getjobresponse.md
- docs/models/operations/getsourcerequest.md
- docs/models/operations/getsourceresponse.md
- docs/models/operations/gettemplaterequest.md
- docs/models/operations/gettemplateresponse.md
- docs/models/operations/getworkflowrequest.md
- docs/models/operations/getworkflowresponse.md
- docs/models/operations/listdestinationsrequest.md
- docs/models/operations/listdestinationsresponse.md
- docs/models/operations/listjobsrequest.md
- docs/models/operations/listjobsresponse.md
- docs/models/operations/listsourcesrequest.md
- docs/models/operations/listsourcesresponse.md
- docs/models/operations/listtemplatesrequest.md
- docs/models/operations/listtemplatesresponse.md
- docs/models/operations/listworkflowsrequest.md
- docs/models/operations/listworkflowsresponse.md
- docs/models/operations/partitionrequest.md
- docs/models/operations/partitionresponse.md
- docs/models/operations/runworkflowrequest.md
- docs/models/operations/runworkflowresponse.md
- docs/models/operations/updatedestinationrequest.md
- docs/models/operations/updatedestinationresponse.md
- docs/models/operations/updatesourcerequest.md
- docs/models/operations/updatesourceresponse.md
- docs/models/operations/updateworkflowrequest.md
- docs/models/operations/updateworkflowresponse.md
- docs/models/shared/astradbconnectorconfig.md
- docs/models/shared/astradbconnectorconfiginput.md
- docs/models/shared/azureaisearchconnectorconfig.md
- docs/models/shared/azureaisearchconnectorconfiginput.md
- docs/models/shared/azuredestinationconnectorconfig.md
- docs/models/shared/azuredestinationconnectorconfiginput.md
- docs/models/shared/azuresourceconnectorconfig.md
- docs/models/shared/azuresourceconnectorconfiginput.md
- docs/models/shared/bodycreatejob.md
- docs/models/shared/bodyrunworkflow.md
- docs/models/shared/bodyrunworkflowinputfiles.md
- docs/models/shared/boxsourceconnectorconfig.md
- docs/models/shared/boxsourceconnectorconfiginput.md
- docs/models/shared/config.md
- docs/models/shared/confluencesourceconnectorconfig.md
- docs/models/shared/confluencesourceconnectorconfiginput.md
- docs/models/shared/connectioncheckstatus.md
- docs/models/shared/couchbasedestinationconnectorconfig.md
- docs/models/shared/couchbasedestinationconnectorconfiginput.md
- docs/models/shared/couchbasesourceconnectorconfig.md
- docs/models/shared/couchbasesourceconnectorconfiginput.md
- docs/models/shared/createdestinationconnector.md
- docs/models/shared/createsourceconnector.md
- docs/models/shared/createsourceconnectorconfig.md
- docs/models/shared/createworkflow.md
- docs/models/shared/crontabentry.md
- docs/models/shared/dagnodeconnectioncheck.md
- docs/models/shared/databricksvdtdestinationconnectorconfig.md
- docs/models/shared/databricksvdtdestinationconnectorconfiginput.md
- docs/models/shared/databricksvolumesconnectorconfig.md
- docs/models/shared/databricksvolumesconnectorconfiginput.md
- docs/models/shared/deltatableconnectorconfig.md
- docs/models/shared/deltatableconnectorconfiginput.md
- docs/models/shared/destinationconnectorinformation.md
- docs/models/shared/destinationconnectorinformationconfig.md
- docs/models/shared/destinationconnectortype.md
- docs/models/shared/dropboxsourceconnectorconfig.md
- docs/models/shared/dropboxsourceconnectorconfiginput.md
- docs/models/shared/elasticsearchconnectorconfig.md
- docs/models/shared/elasticsearchconnectorconfiginput.md
- docs/models/shared/encryptiontype.md
- docs/models/shared/failedfile.md
- docs/models/shared/files.md
- docs/models/shared/gcsdestinationconnectorconfig.md
- docs/models/shared/gcsdestinationconnectorconfiginput.md
- docs/models/shared/gcssourceconnectorconfig.md
- docs/models/shared/gcssourceconnectorconfiginput.md
- docs/models/shared/googledrivesourceconnectorconfig.md
- docs/models/shared/googledrivesourceconnectorconfiginput.md
- docs/models/shared/googledrivesourceconnectorconfiginputserviceaccountkey.md
- docs/models/shared/ibmwatsonxs3destinationconnectorconfig.md
- docs/models/shared/ibmwatsonxs3destinationconnectorconfiginput.md
- docs/models/shared/inputfiles.md
- docs/models/shared/jirasourceconnectorconfig.md
- docs/models/shared/jirasourceconnectorconfiginput.md
- docs/models/shared/jobdetails.md
- docs/models/shared/jobfailedfiles.md
- docs/models/shared/jobinformation.md
- docs/models/shared/jobnodedetails.md
- docs/models/shared/jobprocessingstatus.md
- docs/models/shared/jobstatus.md
- docs/models/shared/kafkaclouddestinationconnectorconfig.md
- docs/models/shared/kafkaclouddestinationconnectorconfiginput.md
- docs/models/shared/kafkacloudsourceconnectorconfig.md
- docs/models/shared/kafkacloudsourceconnectorconfiginput.md
- docs/models/shared/loc.md
- docs/models/shared/milvusdestinationconnectorconfig.md
- docs/models/shared/milvusdestinationconnectorconfiginput.md
- docs/models/shared/mongodbconnectorconfig.md
- docs/models/shared/mongodbconnectorconfiginput.md
- docs/models/shared/neo4jdestinationconnectorconfig.md
- docs/models/shared/neo4jdestinationconnectorconfiginput.md
- docs/models/shared/nodefilemetadata.md
- docs/models/shared/onedrivedestinationconnectorconfig.md
- docs/models/shared/onedrivedestinationconnectorconfiginput.md
- docs/models/shared/onedrivesourceconnectorconfig.md
- docs/models/shared/onedrivesourceconnectorconfiginput.md
- docs/models/shared/opensearchconnectorconfig.md
- docs/models/shared/opensearchconnectorconfiginput.md
- docs/models/shared/outlooksourceconnectorconfig.md
- docs/models/shared/outlooksourceconnectorconfiginput.md
- docs/models/shared/outputformat.md
- docs/models/shared/partitionparameters.md
- docs/models/shared/pineconedestinationconnectorconfig.md
- docs/models/shared/pineconedestinationconnectorconfiginput.md
- docs/models/shared/postgresdestinationconnectorconfig.md
- docs/models/shared/postgresdestinationconnectorconfiginput.md
- docs/models/shared/postgressourceconnectorconfig.md
- docs/models/shared/postgressourceconnectorconfiginput.md
- docs/models/shared/qdrantclouddestinationconnectorconfig.md
- docs/models/shared/qdrantclouddestinationconnectorconfiginput.md
- docs/models/shared/redisdestinationconnectorconfig.md
- docs/models/shared/redisdestinationconnectorconfiginput.md
- docs/models/shared/s3destinationconnectorconfig.md
- docs/models/shared/s3destinationconnectorconfiginput.md
- docs/models/shared/s3sourceconnectorconfig.md
- docs/models/shared/s3sourceconnectorconfiginput.md
- docs/models/shared/salesforcesourceconnectorconfig.md
- docs/models/shared/salesforcesourceconnectorconfiginput.md
- docs/models/shared/schedule.md
- docs/models/shared/secretreference.md
- docs/models/shared/security.md
- docs/models/shared/serviceaccountkey.md
- docs/models/shared/sharepointsourceconnectorconfig.md
- docs/models/shared/sharepointsourceconnectorconfiginput.md
- docs/models/shared/snowflakedestinationconnectorconfig.md
- docs/models/shared/snowflakedestinationconnectorconfiginput.md
- docs/models/shared/snowflakesourceconnectorconfig.md
- docs/models/shared/snowflakesourceconnectorconfiginput.md
- docs/models/shared/sortdirection.md
- docs/models/shared/sourceconnectorinformation.md
- docs/models/shared/sourceconnectorinformationconfig.md
- docs/models/shared/sourceconnectortype.md
- docs/models/shared/strategy.md
- docs/models/shared/templatedetail.md
- docs/models/shared/templatelistitem.md
- docs/models/shared/templatenode.md
- docs/models/shared/updatedestinationconnector.md
- docs/models/shared/updatedestinationconnectorconfig.md
- docs/models/shared/updatesourceconnector.md
- docs/models/shared/updatesourceconnectorconfig.md
- docs/models/shared/updateworkflow.md
- docs/models/shared/updateworkflowschedule.md
- docs/models/shared/validationerror.md
- docs/models/shared/vlmmodelprovider.md
- docs/models/shared/weaviatedestinationconnectorconfig.md
- docs/models/shared/weaviatedestinationconnectorconfiginput.md
- docs/models/shared/workflowinformation.md
- docs/models/shared/workflowjobtype.md
- docs/models/shared/workflownode.md
- docs/models/shared/workflowschedule.md
- docs/models/shared/workflowstate.md
- docs/models/shared/workflowtype.md
- docs/models/shared/zendesksourceconnectorconfig.md
- docs/models/shared/zendesksourceconnectorconfiginput.md
- docs/models/utils/retryconfig.md
- docs/sdks/destinations/README.md
- docs/sdks/general/README.md
- docs/sdks/jobs/README.md
- docs/sdks/sources/README.md
- docs/sdks/templates/README.md
- docs/sdks/unstructuredclient/README.md
- docs/sdks/workflows/README.md
- poetry.toml
- py.typed
- pylintrc
- pyproject.toml
- scripts/prepare_readme.py
- scripts/publish.sh
- src/unstructured_client/__init__.py
- src/unstructured_client/_hooks/__init__.py
- src/unstructured_client/_hooks/sdkhooks.py
- src/unstructured_client/_hooks/types.py
- src/unstructured_client/_version.py
- src/unstructured_client/basesdk.py
- src/unstructured_client/destinations.py
- src/unstructured_client/httpclient.py
- src/unstructured_client/jobs.py
- src/unstructured_client/models/__init__.py
- src/unstructured_client/models/errors/__init__.py
- src/unstructured_client/models/errors/httpvalidationerror.py
- src/unstructured_client/models/errors/no_response_error.py
- src/unstructured_client/models/errors/responsevalidationerror.py
- src/unstructured_client/models/errors/sdkerror.py
- src/unstructured_client/models/errors/servererror.py
- src/unstructured_client/models/errors/unstructuredclienterror.py
- src/unstructured_client/models/operations/__init__.py
- src/unstructured_client/models/operations/cancel_job.py
- src/unstructured_client/models/operations/create_connection_check_destinations.py
- src/unstructured_client/models/operations/create_connection_check_sources.py
- src/unstructured_client/models/operations/create_destination.py
- src/unstructured_client/models/operations/create_job.py
- src/unstructured_client/models/operations/create_source.py
- src/unstructured_client/models/operations/create_workflow.py
- src/unstructured_client/models/operations/delete_destination.py
- src/unstructured_client/models/operations/delete_source.py
- src/unstructured_client/models/operations/delete_workflow.py
- src/unstructured_client/models/operations/download_job_output.py
- src/unstructured_client/models/operations/get_connection_check_destinations.py
- src/unstructured_client/models/operations/get_connection_check_sources.py
- src/unstructured_client/models/operations/get_destination.py
- src/unstructured_client/models/operations/get_job.py
- src/unstructured_client/models/operations/get_job_details.py
- src/unstructured_client/models/operations/get_job_failed_files.py
- src/unstructured_client/models/operations/get_source.py
- src/unstructured_client/models/operations/get_template.py
- src/unstructured_client/models/operations/get_workflow.py
- src/unstructured_client/models/operations/list_destinations.py
- src/unstructured_client/models/operations/list_jobs.py
- src/unstructured_client/models/operations/list_sources.py
- src/unstructured_client/models/operations/list_templates.py
- src/unstructured_client/models/operations/list_workflows.py
- src/unstructured_client/models/operations/partition.py
- src/unstructured_client/models/operations/run_workflow.py
- src/unstructured_client/models/operations/update_destination.py
- src/unstructured_client/models/operations/update_source.py
- src/unstructured_client/models/operations/update_workflow.py
- src/unstructured_client/models/shared/__init__.py
- src/unstructured_client/models/shared/astradbconnectorconfig.py
- src/unstructured_client/models/shared/astradbconnectorconfiginput.py
- src/unstructured_client/models/shared/azureaisearchconnectorconfig.py
- src/unstructured_client/models/shared/azureaisearchconnectorconfiginput.py
- src/unstructured_client/models/shared/azuredestinationconnectorconfig.py
- src/unstructured_client/models/shared/azuredestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/azuresourceconnectorconfig.py
- src/unstructured_client/models/shared/azuresourceconnectorconfiginput.py
- src/unstructured_client/models/shared/body_create_job.py
- src/unstructured_client/models/shared/body_run_workflow.py
- src/unstructured_client/models/shared/boxsourceconnectorconfig.py
- src/unstructured_client/models/shared/boxsourceconnectorconfiginput.py
- src/unstructured_client/models/shared/confluencesourceconnectorconfig.py
- src/unstructured_client/models/shared/confluencesourceconnectorconfiginput.py
- src/unstructured_client/models/shared/connectioncheckstatus.py
- src/unstructured_client/models/shared/couchbasedestinationconnectorconfig.py
- src/unstructured_client/models/shared/couchbasedestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/couchbasesourceconnectorconfig.py
- src/unstructured_client/models/shared/couchbasesourceconnectorconfiginput.py
- src/unstructured_client/models/shared/createdestinationconnector.py
- src/unstructured_client/models/shared/createsourceconnector.py
- src/unstructured_client/models/shared/createworkflow.py
- src/unstructured_client/models/shared/crontabentry.py
- src/unstructured_client/models/shared/dagnodeconnectioncheck.py
- src/unstructured_client/models/shared/databricksvdtdestinationconnectorconfig.py
- src/unstructured_client/models/shared/databricksvdtdestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/databricksvolumesconnectorconfig.py
- src/unstructured_client/models/shared/databricksvolumesconnectorconfiginput.py
- src/unstructured_client/models/shared/deltatableconnectorconfig.py
- src/unstructured_client/models/shared/deltatableconnectorconfiginput.py
- src/unstructured_client/models/shared/destinationconnectorinformation.py
- src/unstructured_client/models/shared/destinationconnectortype.py
- src/unstructured_client/models/shared/dropboxsourceconnectorconfig.py
- src/unstructured_client/models/shared/dropboxsourceconnectorconfiginput.py
- src/unstructured_client/models/shared/elasticsearchconnectorconfig.py
- src/unstructured_client/models/shared/elasticsearchconnectorconfiginput.py
- src/unstructured_client/models/shared/encryptiontype.py
- src/unstructured_client/models/shared/failedfile.py
- src/unstructured_client/models/shared/gcsdestinationconnectorconfig.py
- src/unstructured_client/models/shared/gcsdestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/gcssourceconnectorconfig.py
- src/unstructured_client/models/shared/gcssourceconnectorconfiginput.py
- src/unstructured_client/models/shared/googledrivesourceconnectorconfig.py
- src/unstructured_client/models/shared/googledrivesourceconnectorconfiginput.py
- src/unstructured_client/models/shared/ibmwatsonxs3destinationconnectorconfig.py
- src/unstructured_client/models/shared/ibmwatsonxs3destinationconnectorconfiginput.py
- src/unstructured_client/models/shared/jirasourceconnectorconfig.py
- src/unstructured_client/models/shared/jirasourceconnectorconfiginput.py
- src/unstructured_client/models/shared/jobdetails.py
- src/unstructured_client/models/shared/jobfailedfiles.py
- src/unstructured_client/models/shared/jobinformation.py
- src/unstructured_client/models/shared/jobnodedetails.py
- src/unstructured_client/models/shared/jobprocessingstatus.py
- src/unstructured_client/models/shared/jobstatus.py
- src/unstructured_client/models/shared/kafkaclouddestinationconnectorconfig.py
- src/unstructured_client/models/shared/kafkaclouddestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/kafkacloudsourceconnectorconfig.py
- src/unstructured_client/models/shared/kafkacloudsourceconnectorconfiginput.py
- src/unstructured_client/models/shared/milvusdestinationconnectorconfig.py
- src/unstructured_client/models/shared/milvusdestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/mongodbconnectorconfig.py
- src/unstructured_client/models/shared/mongodbconnectorconfiginput.py
- src/unstructured_client/models/shared/neo4jdestinationconnectorconfig.py
- src/unstructured_client/models/shared/neo4jdestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/nodefilemetadata.py
- src/unstructured_client/models/shared/onedrivedestinationconnectorconfig.py
- src/unstructured_client/models/shared/onedrivedestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/onedrivesourceconnectorconfig.py
- src/unstructured_client/models/shared/onedrivesourceconnectorconfiginput.py
- src/unstructured_client/models/shared/opensearchconnectorconfig.py
- src/unstructured_client/models/shared/opensearchconnectorconfiginput.py
- src/unstructured_client/models/shared/outlooksourceconnectorconfig.py
- src/unstructured_client/models/shared/outlooksourceconnectorconfiginput.py
- src/unstructured_client/models/shared/partition_parameters.py
- src/unstructured_client/models/shared/pineconedestinationconnectorconfig.py
- src/unstructured_client/models/shared/pineconedestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/postgresdestinationconnectorconfig.py
- src/unstructured_client/models/shared/postgresdestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/postgressourceconnectorconfig.py
- src/unstructured_client/models/shared/postgressourceconnectorconfiginput.py
- src/unstructured_client/models/shared/qdrantclouddestinationconnectorconfig.py
- src/unstructured_client/models/shared/qdrantclouddestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/redisdestinationconnectorconfig.py
- src/unstructured_client/models/shared/redisdestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/s3destinationconnectorconfig.py
- src/unstructured_client/models/shared/s3destinationconnectorconfiginput.py
- src/unstructured_client/models/shared/s3sourceconnectorconfig.py
- src/unstructured_client/models/shared/s3sourceconnectorconfiginput.py
- src/unstructured_client/models/shared/salesforcesourceconnectorconfig.py
- src/unstructured_client/models/shared/salesforcesourceconnectorconfiginput.py
- src/unstructured_client/models/shared/secretreference.py
- src/unstructured_client/models/shared/security.py
- src/unstructured_client/models/shared/sharepointsourceconnectorconfig.py
- src/unstructured_client/models/shared/sharepointsourceconnectorconfiginput.py
- src/unstructured_client/models/shared/snowflakedestinationconnectorconfig.py
- src/unstructured_client/models/shared/snowflakedestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/snowflakesourceconnectorconfig.py
- src/unstructured_client/models/shared/snowflakesourceconnectorconfiginput.py
- src/unstructured_client/models/shared/sortdirection.py
- src/unstructured_client/models/shared/sourceconnectorinformation.py
- src/unstructured_client/models/shared/sourceconnectortype.py
- src/unstructured_client/models/shared/templatedetail.py
- src/unstructured_client/models/shared/templatelistitem.py
- src/unstructured_client/models/shared/templatenode.py
- src/unstructured_client/models/shared/updatedestinationconnector.py
- src/unstructured_client/models/shared/updatesourceconnector.py
- src/unstructured_client/models/shared/updateworkflow.py
- src/unstructured_client/models/shared/validationerror.py
- src/unstructured_client/models/shared/weaviatedestinationconnectorconfig.py
- src/unstructured_client/models/shared/weaviatedestinationconnectorconfiginput.py
- src/unstructured_client/models/shared/workflowinformation.py
- src/unstructured_client/models/shared/workflowjobtype.py
- src/unstructured_client/models/shared/workflownode.py
- src/unstructured_client/models/shared/workflowschedule.py
- src/unstructured_client/models/shared/workflowstate.py
- src/unstructured_client/models/shared/workflowtype.py
- src/unstructured_client/models/shared/zendesksourceconnectorconfig.py
- src/unstructured_client/models/shared/zendesksourceconnectorconfiginput.py
- src/unstructured_client/py.typed
- src/unstructured_client/sdk.py
- src/unstructured_client/sdkconfiguration.py
- src/unstructured_client/sources.py
- src/unstructured_client/templates.py
- src/unstructured_client/types/__init__.py
- src/unstructured_client/types/basemodel.py
- src/unstructured_client/utils/__init__.py
- src/unstructured_client/utils/annotations.py
- src/unstructured_client/utils/datetimes.py
- src/unstructured_client/utils/enums.py
- src/unstructured_client/utils/eventstreaming.py
- src/unstructured_client/utils/forms.py
- src/unstructured_client/utils/headers.py
- src/unstructured_client/utils/logger.py
- src/unstructured_client/utils/metadata.py
- src/unstructured_client/utils/queryparams.py
- src/unstructured_client/utils/requestbodies.py
- src/unstructured_client/utils/retries.py
- src/unstructured_client/utils/security.py
- src/unstructured_client/utils/serializers.py
- src/unstructured_client/utils/unmarshal_json_response.py
- src/unstructured_client/utils/url.py
- src/unstructured_client/utils/values.py
- src/unstructured_client/workflows.py
examples:
create_connection_check_destinations:
speakeasy-default-create-connection-check-destinations:
parameters:
path:
destination_id: "cb9e35c1-0b04-4d98-83fa-fa6241323f96"
responses:
"202":
application/json: {"created_at": "2025-10-20T23:39:28.789Z", "id": "bf41fdbf-f16d-4daf-afe8-e0ab3b68a315", "status": "SCHEDULED"}
"422":
application/json: {"detail": "<value>"}
create_destination:
speakeasy-default-create-destination:
requestBody:
application/json: {"config": {"collection": "<value>", "database": "<value>", "uri": "https://criminal-bowler.com"}, "name": "<value>", "type": "elasticsearch"}
responses:
"200":
application/json: {"config": {"collection_name": "<value>", "record_id_key": "<value>", "uri": "https://crafty-cannon.biz/"}, "created_at": "2023-03-18T00:34:28.375Z", "id": "76f3fb82-d6f7-4281-8faf-676da88fb481", "name": "<value>", "type": "delta_table"}
"422":
application/json: {"detail": [{"loc": ["<value>"], "msg": "<value>", "type": "<value>"}, {"loc": ["<value>"], "msg": "<value>", "type": "<value>"}, {"loc": ["<value>"], "msg": "<value>", "type": "<value>"}]}
delete_destination:
speakeasy-default-delete-destination:
parameters:
path:
destination_id: "f50b6b0c-1177-4edb-ae10-68199cd00ba6"
responses:
"200":
application/json: "<value>"
"422":
application/json: {"detail": "<value>"}
get_connection_check_destinations:
speakeasy-default-get-connection-check-destinations:
parameters:
path:
destination_id: "c95687a3-239f-485c-946b-4c8fe314ef82"
responses:
"200":
application/json: {"created_at": "2023-09-24T22:46:25.633Z", "id": "57977ca1-fa51-43e8-81ca-8d14660edb2f", "status": "SCHEDULED"}
"422":
application/json: {"detail": [{"loc": [], "msg": "<value>", "type": "<value>"}, {"loc": [], "msg": "<value>", "type": "<value>"}, {"loc": [], "msg": "<value>", "type": "<value>"}]}
get_destination:
speakeasy-default-get-destination:
parameters:
path:
destination_id: "6352107c-44bd-4a20-a286-de73a4d9c9bd"
responses:
"200":
application/json: {"config": {"api_key": "<value>", "cluster_url": "https://limp-deduction.info/"}, "created_at": "2024-10-05T14:53:37.578Z", "id": "3a19d507-0c6f-45db-9c27-6bda221db7c9", "name": "<value>", "type": "onedrive"}
"422":
application/json: {"detail": "<value>"}
list_destinations:
speakeasy-default-list-destinations:
responses:
"200":
application/json: [{"config": {"collection": "<value>", "database": "<value>", "uri": "https://impish-requirement.com/"}, "created_at": "2023-04-30T14:49:41.382Z", "id": "2a9cfce9-9fbf-4632-b0bb-d7f54308d22a", "name": "<value>", "type": "milvus"}, {"config": {"collection": "<value>", "database": "<value>", "uri": "https://impish-requirement.com/"}, "created_at": "2023-04-30T14:49:41.382Z", "id": "2a9cfce9-9fbf-4632-b0bb-d7f54308d22a", "name": "<value>", "type": "milvus"}]
"422":
application/json: {"detail": [{"loc": ["<value>", 692994, 486732], "msg": "<value>", "type": "<value>"}]}
update_destination:
speakeasy-default-update-destination:
parameters:
path:
destination_id: "9726962d-9d1e-4f84-8787-c7313d183927"
requestBody:
application/json: {"config": {"batch_size": 100, "bootstrap_servers": "<value>", "kafka_api_key": "<value>", "port": 9092, "secret": "<value>", "topic": "<value>"}}
responses:
"200":
application/json: {"config": {"batch_size": 995926, "bootstrap_servers": "<value>", "kafka_api_key": "<value>", "port": 738823, "secret": "<value>", "topic": "<value>"}, "created_at": "2025-01-06T19:22:11.814Z", "id": "b21064e2-21ef-4e1e-afed-49c185e47aec", "name": "<value>", "type": "kafka-cloud"}
"422":
application/json: {"detail": "<value>"}
cancel_job:
speakeasy-default-cancel-job:
parameters:
path:
job_id: "2fafd129-04f3-4201-a0e7-fe33e937b367"
responses:
"200":
application/json: "<value>"
"422":
application/json: {"detail": "<value>"}
download_job_output:
speakeasy-default-download-job-output:
parameters:
path:
job_id: "06d1b7b8-8642-4793-b37e-e45d97d53bc3"
query:
file_id: "<id>"
node_id: "7c8f2aa4-da13-4a04-a98d-0204ea55681e"
responses:
"200":
application/json: "<value>"
"422":
application/json: {"detail": [{"loc": [451892, "<value>", 520048], "msg": "<value>", "type": "<value>"}, {"loc": [451892, "<value>", 520048], "msg": "<value>", "type": "<value>"}]}
get_job:
speakeasy-default-get-job:
parameters:
path:
job_id: "d95a05b3-3446-4f3d-806c-904b6a7ba40a"
responses:
"200":
application/json: {"created_at": "2023-12-26T15:26:16.070Z", "id": "efd2f64b-e5c2-40a2-adff-c96bbced66f1", "status": "STOPPED", "workflow_id": "d23287f2-047a-4009-bd2f-c4cedf39ab27", "workflow_name": "<value>"}
"422":
application/json: {"detail": [{"loc": ["<value>"], "msg": "<value>", "type": "<value>"}]}
list_jobs:
speakeasy-default-list-jobs:
responses:
"200":
application/json: [{"created_at": "2023-06-24T09:45:55.017Z", "id": "a5da67c3-2840-44f1-a29e-15f7f38b3ae9", "status": "COMPLETED", "workflow_id": "33f7a125-e8b1-42b4-9919-8eee0c8bf5dd", "workflow_name": "<value>"}, {"created_at": "2023-06-24T09:45:55.017Z", "id": "a5da67c3-2840-44f1-a29e-15f7f38b3ae9", "status": "COMPLETED", "workflow_id": "33f7a125-e8b1-42b4-9919-8eee0c8bf5dd", "workflow_name": "<value>"}]
"422":
application/json: {"detail": "<value>"}
create_connection_check_sources:
speakeasy-default-create-connection-check-sources:
parameters:
path:
source_id: "8d49e3f2-3e6d-4973-bc61-292af66829d7"
responses:
"202":
application/json: {"created_at": "2024-08-04T05:51:18.286Z", "id": "54af9913-46a4-4c6f-8621-fbdb010d1e1c", "status": "FAILURE"}
"422":
application/json: {"detail": [{"loc": ["<value>"], "msg": "<value>", "type": "<value>"}, {"loc": ["<value>"], "msg": "<value>", "type": "<value>"}, {"loc": ["<value>"], "msg": "<value>", "type": "<value>"}]}
create_source:
speakeasy-default-create-source:
requestBody:
application/json: {"config": {"catalog": "<value>", "client_id": "<id>", "client_secret": "<value>", "host": "athletic-nudge.org", "volume": "<value>", "volume_path": "<value>"}, "name": "<value>", "type": "salesforce"}
responses:
"200":
application/json: {"config": {"es_api_key": "<value>", "hosts": ["<value 1>", "<value 2>"], "index_name": "<value>"}, "created_at": "2023-01-27T10:18:51.865Z", "id": "0d927c6a-cdd3-4cf8-93d1-64e5bab5ae77", "name": "<value>", "type": "outlook"}
"422":
application/json: {"detail": [{"loc": ["<value>", "<value>", 821563], "msg": "<value>", "type": "<value>"}]}
delete_source:
speakeasy-default-delete-source:
parameters:
path:
source_id: "296c4009-7b81-4144-9c7c-e058204aeb93"
responses:
"200":
application/json: "<value>"
"422":
application/json: {"detail": []}
get_connection_check_sources:
speakeasy-default-get-connection-check-sources:
parameters:
path:
source_id: "4df23b66-dae2-44ea-8dd3-329184d5644a"
responses:
"200":
application/json: {"created_at": "2025-03-23T07:48:11.676Z", "id": "049b282d-33c6-4429-9d02-74de94241c1c", "status": "FAILURE"}
"422":
application/json: {"detail": "<value>"}
get_source:
speakeasy-default-get-source:
parameters:
path:
source_id: "df7d5ab1-bb15-4f1a-8dc0-c92a9a28a585"
responses:
"200":
application/json: {"config": {"account": "42519273", "batch_size": 100, "database": "<value>", "host": "cheap-calculus.com", "id_column": "<value>", "password": "REwXIKFWioaChyx", "port": 443, "role": "<value>", "table_name": "<value>", "user": "Geoffrey_Botsford"}, "created_at": "2025-02-20T17:05:31.272Z", "id": "cec63e54-8fcd-4d90-b0cd-a3626915ee21", "name": "<value>", "type": "databricks_volumes"}
"422":
application/json: {"detail": [{"loc": [655647, 154679, "<value>"], "msg": "<value>", "type": "<value>"}, {"loc": [655647, 154679, "<value>"], "msg": "<value>", "type": "<value>"}]}
list_sources:
speakeasy-default-list-sources:
responses:
"200":
application/json: [{"config": {"drive_id": "<id>", "recursive": true, "service_account_key": "<value>"}, "created_at": "2025-05-21T10:14:46.427Z", "id": "9122423b-ce5d-4ea1-9473-88699f279973", "name": "<value>", "type": "s3"}]
"422":
application/json: {"detail": [{"loc": [32316, 153806], "msg": "<value>", "type": "<value>"}, {"loc": [32316, 153806], "msg": "<value>", "type": "<value>"}]}
update_source:
speakeasy-default-update-source:
parameters:
path:
source_id: "ddfe2014-2c10-4972-9711-fc2801d19038"
requestBody:
application/json: {"config": {"batch_size": 615322, "bucket": "<value>", "collection_id": "<id>", "connection_string": "<value>", "password": "sMt9qfyDYveMwvw", "username": "Rene.Glover-Lakin"}}
responses:
"200":
application/json: {"config": {"api_token": "<value>", "email": "Laron_Leannon@gmail.com", "subdomain": "<value>"}, "created_at": "2025-01-06T17:21:52.810Z", "id": "ba174ff5-4d8c-48f7-a45a-73aa3c0890d9", "name": "<value>", "type": "postgres"}
"422":
application/json: {"detail": "<value>"}
create_workflow:
speakeasy-default-create-workflow:
requestBody:
application/json: {"name": "<value>", "workflow_type": "advanced"}
responses:
"200":
application/json: {"created_at": "2023-01-15T13:52:58.634Z", "destinations": [], "id": "80c8c72f-101a-4a39-974b-49aa299e80d3", "name": "<value>", "reprocess_all": false, "schedule": {"crontab_entries": [{"cron_expression": "0 0 * * *"}]}, "sources": ["47678eb0-4958-4341-ad66-b1b822c1deb9"], "status": "active", "workflow_nodes": [{"name": "<value>", "subtype": "<value>", "type": "<value>"}, {"name": "<value>", "subtype": "<value>", "type": "<value>"}]}
"422":
application/json: {"detail": "<value>"}
delete_workflow:
speakeasy-default-delete-workflow:
parameters:
path:
workflow_id: "3e61b8a6-32b6-47cf-bce7-6d13357b30eb"
responses:
"200":
application/json: "<value>"
"422":
application/json: {"detail": [{"loc": [], "msg": "<value>", "type": "<value>"}]}
get_workflow:
speakeasy-default-get-workflow:
parameters:
path:
workflow_id: "d031b0e5-7ca7-4a2b-b3cc-d869d2df3e76"
responses:
"200":
application/json: {"created_at": "2024-01-22T17:42:53.375Z", "destinations": ["624abbf1-dbce-4fe0-8d3f-0673956fc10e"], "id": "840c33c3-f30c-4908-9688-2682ed8eea3f", "name": "<value>", "reprocess_all": false, "schedule": {"crontab_entries": [{"cron_expression": "0 0 * * *"}]}, "sources": ["349ed27a-eeda-4851-866a-8ce3a65a2957", "9aa34544-3278-446f-a265-efcaa55f9c4a"], "status": "active", "workflow_nodes": [{"name": "<value>", "subtype": "<value>", "type": "<value>"}, {"name": "<value>", "subtype": "<value>", "type": "<value>"}]}
"422":
application/json: {"detail": "<value>"}
list_workflows:
speakeasy-default-list-workflows:
parameters:
query:
sort_by: "id"
responses:
"200":
application/json: [{"created_at": "2023-09-02T04:21:23.162Z", "destinations": [], "id": "1e4c63cf-6a6b-407b-b993-b2bc8b3bcefc", "name": "<value>", "reprocess_all": false, "schedule": {"crontab_entries": [{"cron_expression": "0 0 * * *"}]}, "sources": ["2e12d926-4caf-4cce-8b5c-3e16722c1c84"], "status": "inactive", "workflow_nodes": [{"name": "<value>", "subtype": "<value>", "type": "<value>"}, {"name": "<value>", "subtype": "<value>", "type": "<value>"}]}, {"created_at": "2023-09-02T04:21:23.162Z", "destinations": [], "id": "1e4c63cf-6a6b-407b-b993-b2bc8b3bcefc", "name": "<value>", "reprocess_all": false, "schedule": {"crontab_entries": [{"cron_expression": "0 0 * * *"}]}, "sources": ["2e12d926-4caf-4cce-8b5c-3e16722c1c84"], "status": "inactive", "workflow_nodes": [{"name": "<value>", "subtype": "<value>", "type": "<value>"}, {"name": "<value>", "subtype": "<value>", "type": "<value>"}]}]
"422":
application/json: {"detail": [{"loc": ["<value>", 864403], "msg": "<value>", "type": "<value>"}]}
run_workflow:
speakeasy-default-run-workflow:
parameters:
path:
workflow_id: "e7054f23-ce92-4bf1-a1d7-7cf9cb14d013"
responses:
"202":
application/json: {"created_at": "2023-06-18T08:23:13.478Z", "id": "31486aa0-728f-4b32-9a2c-dd2a37bba4db", "status": "FAILED", "workflow_id": "4a6d3163-6a94-4eba-af10-3db36886d0cc", "workflow_name": "<value>"}
"422":
application/json: {"detail": [{"loc": [13129, "<value>", "<value>"], "msg": "<value>", "type": "<value>"}, {"loc": [13129, "<value>", "<value>"], "msg": "<value>", "type": "<value>"}]}
update_workflow:
speakeasy-default-update-workflow:
parameters:
path:
workflow_id: "b9b7e688-353f-4ff2-bcd7-a49b5fa5f6c7"
requestBody:
application/json: {}
responses:
"200":
application/json: {"created_at": "2025-01-11T03:06:48.390Z", "destinations": [], "id": "88fd9cfe-ed29-4701-9d1f-8f26d4ea88d3", "name": "<value>", "reprocess_all": false, "schedule": {"crontab_entries": [{"cron_expression": "0 0 * * *"}]}, "sources": ["0957eb7f-57d3-4705-bc49-03de6ad3794d", "a8b88099-9065-4458-a824-b37da7a9bccf", "a024c482-10ba-433a-9100-e6471e9d3db0"], "status": "active", "workflow_nodes": [{"name": "<value>", "subtype": "<value>", "type": "<value>"}]}
"422":
application/json: {"detail": "<value>"}
partition:
speakeasy-default-partition:
requestBody:
multipart/form-data: {"chunking_strategy": "by_title", "combine_under_n_chars": null, "content_type": null, "coordinates": false, "do_not_break_similarity_on_footer_header": false, "encoding": null, "files": {"": "{\"summary\":\"File to be partitioned\",\"externalValue\":\"https://github.com/Unstructured-IO/unstructured/blob/98d3541909f64290b5efb65a226fc3ee8a7cc5ee/example-docs/layout-parser-paper.pdf\"}"}, "gz_uncompressed_content_type": null, "hi_res_model_name": null, "include_orig_elements": null, "include_page_breaks": false, "include_slide_notes": true, "max_characters": null, "multipage_sections": true, "new_after_n_chars": null, "output_format": "application/json", "overlap": 0, "overlap_all": false, "pdf_infer_table_structure": true, "pdfminer_char_margin": null, "pdfminer_line_margin": null, "pdfminer_line_overlap": null, "pdfminer_word_margin": null, "similarity_threshold": null, "split_pdf_allow_failed": false, "split_pdf_cache_tmp_data": false, "split_pdf_cache_tmp_data_dir": "<value>", "split_pdf_concurrency_level": 5, "split_pdf_page": true, "split_pdf_page_range": [1, 10], "starting_page_number": null, "strategy": "auto", "table_ocr_agent": null, "unique_element_ids": false, "vlm_model": "gpt-4o", "vlm_model_provider": "openai", "xml_keep_tags": false}
responses:
"200":
application/json: [{"type": "Title", "element_id": "6aa0ff22f91bbe7e26e8e25ca8052acd", "text": "LayoutParser: A Unified Toolkit for Deep Learning Based Document Image Analysis", "metadata": {"languages": ["eng"], "page_number": 1, "filename": "layout-parser-paper.pdf", "filetype": "application/pdf"}}]
text/csv: "<value>"
"422":
application/json: {"detail": "<value>"}
5XX:
application/json: {"detail": "An error occurred"}
get_job_details:
speakeasy-default-get-job-details:
parameters:
path:
job_id: "14cc95f9-4174-46b3-81f5-7089b87a4787"
responses:
"200":
application/json: {"id": "39a8d74e-66d2-40a4-a9b0-25ee4f08f855", "node_stats": [], "processing_status": "STOPPED"}
"422":
application/json: {"detail": "<value>"}
get_job_failed_files:
speakeasy-default-get-job-failed-files:
parameters:
path:
job_id: "ad262041-3530-40a9-9f83-b004e947a203"
responses:
"200":
application/json: {"failed_files": []}
"422":
application/json: {"detail": "<value>"}
retrieve:
speakeasy-default-retrieve:
responses:
"200":
application/json: {"pem_key": "<value>", "tenant_id": "<id>"}
"422":
application/json: {"detail": "<value>"}
store_secret:
speakeasy-default-store-secret:
requestBody:
application/json: {"encrypted_value": "<value>"}
responses:
"200":
application/json: {"id": "<id>"}
"422":
application/json: {"detail": []}
get_encryption_certificate:
speakeasy-default-get-encryption-certificate:
responses:
"200":
application/json: {"ca_chain": "<value>", "encryption_certificate": "<value>"}
"422":
application/json: {"detail": []}
create_job:
speakeasy-default-create-job:
requestBody:
multipart/form-data: {"request_data": "<value>"}
responses:
"200":
application/json: {"created_at": "2024-02-18T20:31:27.125Z", "id": "55723ca1-8ca8-4beb-bf8a-b2c41cc6649d", "status": "IN_PROGRESS", "workflow_id": "3f012d20-710b-43a2-8577-22a817a1352a", "workflow_name": "<value>"}
"422":
application/json: {"detail": [{"loc": ["<value>"], "msg": "<value>", "type": "<value>"}]}
get_template:
speakeasy-default-get-template:
parameters:
path:
template_id: "<id>"
responses:
"200":
application/json: {"description": "probate legging nor lest wrathful oddly importance metabolite to tricky", "id": "<id>", "last_updated": "<value>", "name": "<value>", "nodes": [], "version": "<value>"}
"422":
application/json: {"detail": "<value>"}
list_templates:
speakeasy-default-list-templates:
responses:
"200":
application/json: [{"description": "without license expostulate gloss specific through huzzah", "id": "<id>", "last_updated": "<value>", "name": "<value>", "version": "<value>"}]
"422":
application/json: {"detail": [{"loc": ["<value>"], "msg": "<value>", "type": "<value>"}]}
examplesVersion: 1.0.2
generatedTests: {}
trackedFiles:
.gitattributes:
last_write_checksum: sha1:53134de3ada576f37c22276901e1b5b6d85cd2da
.vscode/settings.json:
last_write_checksum: sha1:f84632c81029fcdda8c3b0c768d02b836fc80526
USAGE.md:
last_write_checksum: sha1:634dd7b8ad241a00d0c69649194b8149006a311f
docs/models/errors/detail.md:
last_write_checksum: sha1:9a864f8e5a23346f45054850eba4f02b4ddfa65e
docs/models/errors/httpvalidationerror.md:
last_write_checksum: sha1:1b74d78fb94bad6150ddd93c4cb937672c970cab
docs/models/errors/servererror.md:
last_write_checksum: sha1:ba10866750f76c3c6b3b1face75aa37a517a8647
docs/models/operations/canceljobrequest.md:
last_write_checksum: sha1:c68b3b85e0f5d40e4c3b89d2535f2fca286a9d0f
docs/models/operations/canceljobresponse.md:
last_write_checksum: sha1:ec0f1b7ab6075a10ea1dab44b6d3fa6b3872751c
docs/models/operations/createconnectioncheckdestinationsrequest.md:
last_write_checksum: sha1:01884e8ff647912b15633806207dd151c5ab607b
docs/models/operations/createconnectioncheckdestinationsresponse.md:
last_write_checksum: sha1:b64309e1d90d873a7ffc2ea2226848195144938a
docs/models/operations/createconnectionchecksourcesrequest.md:
last_write_checksum: sha1:fecf135c6381a78caf6f461fb55228350356860b
docs/models/operations/createconnectionchecksourcesresponse.md:
last_write_checksum: sha1:56e30e0c8459179cc3a31b01797006652c90bfc8
docs/models/operations/createdestinationrequest.md:
last_write_checksum: sha1:85e0a1d2aa09c5df3c53c1f1d7f3090270894a44
docs/models/operations/createdestinationresponse.md:
last_write_checksum: sha1:38f36c08f2331bcfbd84cdc48bf67f987ff92d3b
docs/models/operations/createjobrequest.md:
last_write_checksum: sha1:0e59082844b538644c4800826cfe4df866cd268c
docs/models/operations/createjobresponse.md:
last_write_checksum: sha1:02c375249682eeb195fe10456ad993d24689e878
docs/models/operations/createsourcerequest.md:
last_write_checksum: sha1:ffad0297c13b3296896555d0684897d1b703806f
docs/models/operations/createsourceresponse.md:
last_write_checksum: sha1:d2fb364df743675b0da662b11f0d905be464d240
docs/models/operations/createworkflowrequest.md:
last_write_checksum: sha1:b033be68bc9a54bfe5ba70e02f8ad2d6c0fe28fa
docs/models/operations/createworkflowresponse.md:
last_write_checksum: sha1:1e4a1313e118e8831682e28eebf38485b557575b
docs/models/operations/deletedestinationrequest.md:
last_write_checksum: sha1:6ec7ccc6902e45b3fc6408daa324dfb6d4e8cf46
docs/models/operations/deletedestinationresponse.md:
last_write_checksum: sha1:327ddf8e2d6b50d79d232ad715b3efb34e3f20ec
docs/models/operations/deletesourcerequest.md:
last_write_checksum: sha1:e95a8d22ad72eabcbdd0dbd69b11f819c401848e
docs/models/operations/deletesourceresponse.md:
last_write_checksum: sha1:36c02dde611385af13b4b0fb28e6852aa3dbd584
docs/models/operations/deleteworkflowrequest.md:
last_write_checksum: sha1:d1cd1549e20332931005cf47ec708ea8856884a5
docs/models/operations/deleteworkflowresponse.md:
last_write_checksum: sha1:3c48310a3847c7ebb11b26857e54dd2ee3588305
docs/models/operations/downloadjoboutputrequest.md:
last_write_checksum: sha1:06db3b4bb86be7ec09d580f7c9d2e104f6d50499
docs/models/operations/downloadjoboutputresponse.md:
last_write_checksum: sha1:ea5ba518eb952b0de1653e70c0f43f444f07a47c
docs/models/operations/getconnectioncheckdestinationsrequest.md:
last_write_checksum: sha1:6b014c77cf8c3341375726e4d3dce855e896b91d
docs/models/operations/getconnectioncheckdestinationsresponse.md:
last_write_checksum: sha1:40e396296a2cbd3be62a339f91b03ef085690d47
docs/models/operations/getconnectionchecksourcesrequest.md:
last_write_checksum: sha1:4049e5ba7003d344d47ecbca4f6b1f2728cca2b9
docs/models/operations/getconnectionchecksourcesresponse.md:
last_write_checksum: sha1:0ffceea34fd8ebce0af8a8e3161ed63b659beef4
docs/models/operations/getdestinationrequest.md:
last_write_checksum: sha1:389f39364c31628df5e602fdc575d78e645ff13d
docs/models/operations/getdestinationresponse.md:
last_write_checksum: sha1:0be5580dc7f3ac4c6ffac9e6cbaa1daf793d391f
docs/models/operations/getjobdetailsrequest.md:
last_write_checksum: sha1:2664e62ce031f0dc61b43f11e855a4e68d6612cc
docs/models/operations/getjobdetailsresponse.md:
last_write_checksum: sha1:e369dae7b58be400a7bdca788e8e024e4439e805
docs/models/operations/getjobfailedfilesrequest.md:
last_write_checksum: sha1:a6e065b000919f81529227573f5043e7af1a38e4
docs/models/operations/getjobfailedfilesresponse.md:
last_write_checksum: sha1:1809c62a4d1667857d2e909fe55e72fce25a1bfc
docs/models/operations/getjobrequest.md:
last_write_checksum: sha1:d6f9762d1974bba9ba385ed73c0e575c26f6a59a
docs/models/operations/getjobresponse.md:
last_write_checksum: sha1:a8ebec5c661f78deb38cd8800ab2a1b0fb38b567
docs/models/operations/getsourcerequest.md:
last_write_checksum: sha1:13f5a06f370562ce113a820a8df2ef8b3f97911e
docs/models/operations/getsourceresponse.md:
last_write_checksum: sha1:49f545d04b85e40a57491ccaaae28987361082f3
docs/models/operations/gettemplaterequest.md:
last_write_checksum: sha1:ad56d4ee7fd567e09114e2b2701c9da6b11d7476
docs/models/operations/gettemplateresponse.md:
last_write_checksum: sha1:d8bd2e7d255eaa1aba884a1083fa7867c59b19ee
docs/models/operations/getworkflowrequest.md:
last_write_checksum: sha1:dd6e1bb20c7e1f7ac2946c5bb8bb6efb1ec94bf7
docs/models/operations/getworkflowresponse.md:
last_write_checksum: sha1:f359eaa994b59e72a95cf6be87cd3379bcbfbeeb
docs/models/operations/listdestinationsrequest.md:
last_write_checksum: sha1:41447ab03579341643950e5836cd2a593679208d
docs/models/operations/listdestinationsresponse.md:
last_write_checksum: sha1:949a7da6768f75840b3cd77f358adf73e9d0399a
docs/models/operations/listjobsrequest.md:
last_write_checksum: sha1:5c6a7d959fecf0ff29cc82551d12de4faaf7c693
docs/models/operations/listjobsresponse.md:
last_write_checksum: sha1:03ecaf122b7b50667b47d18c77e319ded7637e49
docs/models/operations/listsourcesrequest.md:
last_write_checksum: sha1:d8b44188c43e7bdcc4b303f1d53396a65e0bb74c
docs/models/operations/listsourcesresponse.md:
last_write_checksum: sha1:6500b17470a02391741239e468b215cdd33a92c0
docs/models/operations/listtemplatesrequest.md:
last_write_checksum: sha1:ec8b34ed22a760c0c6d61324b177a92f406ca5f1
docs/models/operations/listtemplatesresponse.md:
last_write_checksum: sha1:08c1a441c1da8b72515eda1758eb2ac41a4ad3a8
docs/models/operations/listworkflowsrequest.md:
last_write_checksum: sha1:7ccc6cd6c196cbd799aaed2a6b0230e504944ee0
docs/models/operations/listworkflowsresponse.md:
last_write_checksum: sha1:e733995a841620e81a5f38697097d39d72ecb716
docs/models/operations/partitionrequest.md:
last_write_checksum: sha1:54014e6854cf8220086322d14cbd6d449d591ce4
docs/models/operations/partitionresponse.md:
last_write_checksum: sha1:1d0bde8a9fa4ec117ec698a533cc118c0ff0a796
docs/models/operations/runworkflowrequest.md:
last_write_checksum: sha1:89a954c721a0070cf45fe530edecc8c9bc3a1e36
docs/models/operations/runworkflowresponse.md:
last_write_checksum: sha1:87b2eb22401bab45a7e7a424adfe0f4dbb2c212e
docs/models/operations/updatedestinationrequest.md:
last_write_checksum: sha1:211264534040d2c9de960b0fe99532c52f6d70f5
docs/models/operations/updatedestinationresponse.md:
last_write_checksum: sha1:4902193056c6ef6189d13d35ea62524a8216598f
docs/models/operations/updatesourcerequest.md:
last_write_checksum: sha1:61c75282f5df6151587ea2c3b0358056bcd6f39b
docs/models/operations/updatesourceresponse.md:
last_write_checksum: sha1:2b26c5966a7627625a25e57cab0dbaa5af2f47b2
docs/models/operations/updateworkflowrequest.md:
last_write_checksum: sha1:177a57e200d961ccd8dcf3d1cd21ad9f35d4ec64
docs/models/operations/updateworkflowresponse.md:
last_write_checksum: sha1:1336948ebad20ffe8e11a836cf0b9faf1d2c0fb4
docs/models/shared/astradbconnectorconfig.md:
last_write_checksum: sha1:136db913654100cb7a2e64b42d59a8ab2b75a7fe
docs/models/shared/astradbconnectorconfiginput.md:
last_write_checksum: sha1:100949b5b43c671e1e6496ff522fa272e356bcde
docs/models/shared/azureaisearchconnectorconfig.md:
last_write_checksum: sha1:ed41a88fb6bddcc2094f9d8b5660dedba9921969
docs/models/shared/azureaisearchconnectorconfiginput.md:
last_write_checksum: sha1:1d2f3f886e12e87cb5c46110e871be3e12b4061b
docs/models/shared/azuredestinationconnectorconfig.md:
last_write_checksum: sha1:b5d8532ce7f18b39181f20640385668587253077
docs/models/shared/azuredestinationconnectorconfiginput.md:
last_write_checksum: sha1:49e9b15d109256f679de41975a7f0e5a0eb9b242
docs/models/shared/azuresourceconnectorconfig.md:
last_write_checksum: sha1:32b34b7b09d4577be2ddc9324eebee18d80f6fc1
docs/models/shared/azuresourceconnectorconfiginput.md:
last_write_checksum: sha1:b8c68a56bef1a7e09bf1c55953a1f26a23c3da7e
docs/models/shared/bodycreatejob.md:
last_write_checksum: sha1:f335b69b4915d22989edbbcbe96d5549b389d678
docs/models/shared/bodyrunworkflow.md:
last_write_checksum: sha1:961071391ef67ad866f6cb4acca4d43d0d939c45
docs/models/shared/bodyrunworkflowinputfiles.md:
last_write_checksum: sha1:578c4d054cfb283e3e37ee72a36aa01a54da5aca
docs/models/shared/boxsourceconnectorconfig.md:
last_write_checksum: sha1:b000010f3d53f4ec609f9c1e9bcf75d0907843fb
docs/models/shared/boxsourceconnectorconfiginput.md:
last_write_checksum: sha1:e75625a2d8e1092d752dec9d6416ca2dc7ece940
docs/models/shared/config.md:
last_write_checksum: sha1:921b555dc3b2f4c796f265958e1e497bc2c2c221
docs/models/shared/confluencesourceconnectorconfig.md:
last_write_checksum: sha1:f0fc3f07b8dfe0af11928df4f8246168500ec3bb
docs/models/shared/confluencesourceconnectorconfiginput.md:
last_write_checksum: sha1:db8a7e7f5f4d5b231fe8cc4de99f848f4cd6ffb1
docs/models/shared/connectioncheckstatus.md:
last_write_checksum: sha1:db2996b0cf9d1ac947825fae0072fcd70c2ab374
docs/models/shared/couchbasedestinationconnectorconfig.md:
last_write_checksum: sha1:f8eef3f3b5aebe168049a683018d9d68e74fc4d6
docs/models/shared/couchbasedestinationconnectorconfiginput.md:
last_write_checksum: sha1:ecbd67c5513db6864aa3096120442104dac98188
docs/models/shared/couchbasesourceconnectorconfig.md:
last_write_checksum: sha1:aeb00df6171f1642d9322bbb69c932432de6aebe
docs/models/shared/couchbasesourceconnectorconfiginput.md:
last_write_checksum: sha1:11c20ae7633c07a8e12d80d60ef57c0e79799d79
docs/models/shared/createdestinationconnector.md:
last_write_checksum: sha1:22cf73e4cf6ca7e97adb7973b2a83ae900039269
docs/models/shared/createsourceconnector.md:
last_write_checksum: sha1:006ad810becfd9f2d7c8e8ff5de3cb0d0815bf72
docs/models/shared/createsourceconnectorconfig.md:
last_write_checksum: sha1:8021615bdecc4203ff24a7663bc51928687771fc
docs/models/shared/createworkflow.md:
last_write_checksum: sha1:8aaf8738ef81e5c333b21e0052015755d21fdb1a
docs/models/shared/crontabentry.md:
last_write_checksum: sha1:2e315fb85c5d83ba9190bf0321c84a09b94dc167
docs/models/shared/dagnodeconnectioncheck.md:
last_write_checksum: sha1:30ce6ae84a9a21ce8fe4227e7a92445bf5aabcf1
docs/models/shared/databricksvdtdestinationconnectorconfig.md:
last_write_checksum: sha1:defcbc8a8b513bb619e7c794d9d1b3c230988629
docs/models/shared/databricksvdtdestinationconnectorconfiginput.md:
last_write_checksum: sha1:f820591adce85b73f0bda0d805c80f4d7cfdd167
docs/models/shared/databricksvolumesconnectorconfig.md:
last_write_checksum: sha1:5b329fba41166cc85d8f5d3d20df073b5ef3b64c
docs/models/shared/databricksvolumesconnectorconfiginput.md:
last_write_checksum: sha1:8d542e8451b21c518c483f92a84f14971c436d0e
docs/models/shared/deltatableconnectorconfig.md:
last_write_checksum: sha1:91f5278c5797015375fdad027a555dc096d28699
docs/models/shared/deltatableconnectorconfiginput.md:
last_write_checksum: sha1:fd4a2cc65ff8276774e8b4c335863c082e140d2b
docs/models/shared/destinationconnectorinformation.md:
last_write_checksum: sha1:3ee4e344b304ba428401ae1c74f1aa5bcdc556da
docs/models/shared/destinationconnectorinformationconfig.md:
last_write_checksum: sha1:a2d78a4773c889d1e189a8f6f31e2a1e234a0b19
docs/models/shared/destinationconnectortype.md:
last_write_checksum: sha1:85ba31b2dfb9d633b795ba98eb58304bdbd1fef5
docs/models/shared/dropboxsourceconnectorconfig.md:
last_write_checksum: sha1:dd236db60bdbbda1422cc81ec574fe9f3f7f4ce3
docs/models/shared/dropboxsourceconnectorconfiginput.md:
last_write_checksum: sha1:4f22e588c4855d715876878c6f49e83a9e538870
docs/models/shared/elasticsearchconnectorconfig.md:
last_write_checksum: sha1:f23bb0fdf87d78a2becc35bb6f2bae133f9d534e
docs/models/shared/elasticsearchconnectorconfiginput.md:
last_write_checksum: sha1:e15f36fe04157454dd5650805ba86f3e822b70a5
docs/models/shared/encryptiontype.md:
last_write_checksum: sha1:687c0937bd9690e37e9958adaa25a4299d109ba5
docs/models/shared/failedfile.md:
last_write_checksum: sha1:60da6ce6eb8d531fcb77945d1f2be5a41fe56156
docs/models/shared/files.md:
last_write_checksum: sha1:3e1b008da7152dbb0849e8d39190773f89068342
docs/models/shared/gcsdestinationconnectorconfig.md:
last_write_checksum: sha1:99908999197b2b2cc2b84614cae7880824de5f19
docs/models/shared/gcsdestinationconnectorconfiginput.md:
last_write_checksum: sha1:eebb8063d181f6c29f6af21e50a54bbdc2048332
docs/models/shared/gcssourceconnectorconfig.md:
last_write_checksum: sha1:d67bf6a4572d8d812c86f6861aaa2aef1ff21115
docs/models/shared/gcssourceconnectorconfiginput.md:
last_write_checksum: sha1:81c8454525972ec3a058d532cf6c32180e2479f6
docs/models/shared/googledrivesourceconnectorconfig.md:
last_write_checksum: sha1:888a74236ee6e3099bee7193f10022b27d5e19f8
docs/models/shared/googledrivesourceconnectorconfiginput.md:
last_write_checksum: sha1:e866f029785a3e71230397080ef83a7d407e89f4
docs/models/shared/googledrivesourceconnectorconfiginputserviceaccountkey.md: