forked from airbytehq/airbyte-api-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
files.gen
executable file
·2157 lines (2157 loc) · 108 KB
/
files.gen
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
src/airbyte/sdkconfiguration.py
src/airbyte/connections.py
src/airbyte/destinations.py
src/airbyte/jobs.py
src/airbyte/sources.py
src/airbyte/streams.py
src/airbyte/workspaces.py
src/airbyte/sdk.py
pylintrc
setup.py
src/airbyte/__init__.py
src/airbyte/utils/__init__.py
src/airbyte/utils/retries.py
src/airbyte/utils/utils.py
src/airbyte/models/errors/sdkerror.py
tests/helpers.py
src/airbyte/models/operations/createconnection.py
src/airbyte/models/operations/deleteconnection.py
src/airbyte/models/operations/getconnection.py
src/airbyte/models/operations/listconnections.py
src/airbyte/models/operations/patchconnection.py
src/airbyte/models/operations/createdestination.py
src/airbyte/models/operations/deletedestination.py
src/airbyte/models/operations/getdestination.py
src/airbyte/models/operations/listdestinations.py
src/airbyte/models/operations/patchdestination.py
src/airbyte/models/operations/putdestination.py
src/airbyte/models/operations/canceljob.py
src/airbyte/models/operations/createjob.py
src/airbyte/models/operations/getjob.py
src/airbyte/models/operations/listjobs.py
src/airbyte/models/operations/createsource.py
src/airbyte/models/operations/deletesource.py
src/airbyte/models/operations/getsource.py
src/airbyte/models/operations/initiateoauth.py
src/airbyte/models/operations/listsources.py
src/airbyte/models/operations/patchsource.py
src/airbyte/models/operations/putsource.py
src/airbyte/models/operations/getstreamproperties.py
src/airbyte/models/operations/createorupdateworkspaceoauthcredentials.py
src/airbyte/models/operations/createworkspace.py
src/airbyte/models/operations/deleteworkspace.py
src/airbyte/models/operations/getworkspace.py
src/airbyte/models/operations/listworkspaces.py
src/airbyte/models/operations/updateworkspace.py
src/airbyte/models/shared/connectionresponse.py
src/airbyte/models/shared/connectionstatusenum.py
src/airbyte/models/shared/connectionscheduleresponse.py
src/airbyte/models/shared/scheduletypewithbasicenum.py
src/airbyte/models/shared/nonbreakingschemaupdatesbehaviorenum.py
src/airbyte/models/shared/namespacedefinitionenum.py
src/airbyte/models/shared/geographyenum.py
src/airbyte/models/shared/streamconfigurations.py
src/airbyte/models/shared/streamconfiguration.py
src/airbyte/models/shared/connectionsyncmodeenum.py
src/airbyte/models/shared/connectioncreaterequest.py
src/airbyte/models/shared/connectionschedule.py
src/airbyte/models/shared/scheduletypeenum.py
src/airbyte/models/shared/connectionsresponse.py
src/airbyte/models/shared/connectionpatchrequest.py
src/airbyte/models/shared/nonbreakingschemaupdatesbehaviorenumnodefault.py
src/airbyte/models/shared/namespacedefinitionenumnodefault.py
src/airbyte/models/shared/geographyenumnodefault.py
src/airbyte/models/shared/destinationresponse.py
src/airbyte/models/shared/destination_google_sheets.py
src/airbyte/models/shared/destination_aws_datalake.py
src/airbyte/models/shared/destination_azure_blob_storage.py
src/airbyte/models/shared/destination_bigquery.py
src/airbyte/models/shared/destination_clickhouse.py
src/airbyte/models/shared/destination_convex.py
src/airbyte/models/shared/destination_cumulio.py
src/airbyte/models/shared/destination_databend.py
src/airbyte/models/shared/destination_databricks.py
src/airbyte/models/shared/destination_dev_null.py
src/airbyte/models/shared/destination_duckdb.py
src/airbyte/models/shared/destination_dynamodb.py
src/airbyte/models/shared/destination_elasticsearch.py
src/airbyte/models/shared/destination_firebolt.py
src/airbyte/models/shared/destination_firestore.py
src/airbyte/models/shared/destination_gcs.py
src/airbyte/models/shared/destination_keen.py
src/airbyte/models/shared/destination_kinesis.py
src/airbyte/models/shared/destination_langchain.py
src/airbyte/models/shared/destination_milvus.py
src/airbyte/models/shared/destination_mongodb.py
src/airbyte/models/shared/destination_mssql.py
src/airbyte/models/shared/destination_mysql.py
src/airbyte/models/shared/destination_oracle.py
src/airbyte/models/shared/destination_pinecone.py
src/airbyte/models/shared/destination_postgres.py
src/airbyte/models/shared/destination_pubsub.py
src/airbyte/models/shared/destination_qdrant.py
src/airbyte/models/shared/destination_redis.py
src/airbyte/models/shared/destination_redshift.py
src/airbyte/models/shared/destination_s3.py
src/airbyte/models/shared/destination_s3_glue.py
src/airbyte/models/shared/destination_sftp_json.py
src/airbyte/models/shared/destination_snowflake.py
src/airbyte/models/shared/destination_timeplus.py
src/airbyte/models/shared/destination_typesense.py
src/airbyte/models/shared/destination_vertica.py
src/airbyte/models/shared/destination_weaviate.py
src/airbyte/models/shared/destination_xata.py
src/airbyte/models/shared/destinationcreaterequest.py
src/airbyte/models/shared/destinationsresponse.py
src/airbyte/models/shared/destinationpatchrequest.py
src/airbyte/models/shared/destinationputrequest.py
src/airbyte/models/shared/jobresponse.py
src/airbyte/models/shared/jobstatusenum.py
src/airbyte/models/shared/jobtypeenum.py
src/airbyte/models/shared/jobcreaterequest.py
src/airbyte/models/shared/jobsresponse.py
src/airbyte/models/shared/sourceresponse.py
src/airbyte/models/shared/source_aha.py
src/airbyte/models/shared/source_aircall.py
src/airbyte/models/shared/source_airtable.py
src/airbyte/models/shared/source_alloydb.py
src/airbyte/models/shared/source_amazon_ads.py
src/airbyte/models/shared/source_amazon_seller_partner.py
src/airbyte/models/shared/source_amazon_sqs.py
src/airbyte/models/shared/source_amplitude.py
src/airbyte/models/shared/source_apify_dataset.py
src/airbyte/models/shared/source_appfollow.py
src/airbyte/models/shared/source_asana.py
src/airbyte/models/shared/source_auth0.py
src/airbyte/models/shared/source_aws_cloudtrail.py
src/airbyte/models/shared/source_azure_blob_storage.py
src/airbyte/models/shared/source_azure_table.py
src/airbyte/models/shared/source_bamboo_hr.py
src/airbyte/models/shared/source_bigquery.py
src/airbyte/models/shared/source_bing_ads.py
src/airbyte/models/shared/source_braintree.py
src/airbyte/models/shared/source_braze.py
src/airbyte/models/shared/source_chargebee.py
src/airbyte/models/shared/source_chartmogul.py
src/airbyte/models/shared/source_clickhouse.py
src/airbyte/models/shared/source_clickup_api.py
src/airbyte/models/shared/source_clockify.py
src/airbyte/models/shared/source_close_com.py
src/airbyte/models/shared/source_coda.py
src/airbyte/models/shared/source_coin_api.py
src/airbyte/models/shared/source_coinmarketcap.py
src/airbyte/models/shared/source_configcat.py
src/airbyte/models/shared/source_confluence.py
src/airbyte/models/shared/source_convex.py
src/airbyte/models/shared/source_datascope.py
src/airbyte/models/shared/source_delighted.py
src/airbyte/models/shared/source_dixa.py
src/airbyte/models/shared/source_dockerhub.py
src/airbyte/models/shared/source_dremio.py
src/airbyte/models/shared/source_dynamodb.py
src/airbyte/models/shared/source_e2e_test_cloud.py
src/airbyte/models/shared/source_emailoctopus.py
src/airbyte/models/shared/source_exchange_rates.py
src/airbyte/models/shared/source_facebook_marketing.py
src/airbyte/models/shared/source_facebook_pages.py
src/airbyte/models/shared/source_faker.py
src/airbyte/models/shared/source_fauna.py
src/airbyte/models/shared/source_file.py
src/airbyte/models/shared/source_firebolt.py
src/airbyte/models/shared/source_freshcaller.py
src/airbyte/models/shared/source_freshdesk.py
src/airbyte/models/shared/source_freshsales.py
src/airbyte/models/shared/source_gainsight_px.py
src/airbyte/models/shared/source_gcs.py
src/airbyte/models/shared/source_getlago.py
src/airbyte/models/shared/source_github.py
src/airbyte/models/shared/source_gitlab.py
src/airbyte/models/shared/source_glassfrog.py
src/airbyte/models/shared/source_gnews.py
src/airbyte/models/shared/source_google_ads.py
src/airbyte/models/shared/source_google_analytics_data_api.py
src/airbyte/models/shared/source_google_directory.py
src/airbyte/models/shared/source_google_drive.py
src/airbyte/models/shared/source_google_pagespeed_insights.py
src/airbyte/models/shared/source_google_search_console.py
src/airbyte/models/shared/source_google_sheets.py
src/airbyte/models/shared/source_google_webfonts.py
src/airbyte/models/shared/source_google_workspace_admin_reports.py
src/airbyte/models/shared/source_greenhouse.py
src/airbyte/models/shared/source_gridly.py
src/airbyte/models/shared/source_harvest.py
src/airbyte/models/shared/source_hubplanner.py
src/airbyte/models/shared/source_hubspot.py
src/airbyte/models/shared/source_insightly.py
src/airbyte/models/shared/source_instagram.py
src/airbyte/models/shared/source_instatus.py
src/airbyte/models/shared/source_intercom.py
src/airbyte/models/shared/source_ip2whois.py
src/airbyte/models/shared/source_iterable.py
src/airbyte/models/shared/source_jira.py
src/airbyte/models/shared/source_k6_cloud.py
src/airbyte/models/shared/source_klarna.py
src/airbyte/models/shared/source_klaviyo.py
src/airbyte/models/shared/source_kustomer_singer.py
src/airbyte/models/shared/source_kyve.py
src/airbyte/models/shared/source_launchdarkly.py
src/airbyte/models/shared/source_lemlist.py
src/airbyte/models/shared/source_lever_hiring.py
src/airbyte/models/shared/source_linkedin_ads.py
src/airbyte/models/shared/source_linkedin_pages.py
src/airbyte/models/shared/source_linnworks.py
src/airbyte/models/shared/source_lokalise.py
src/airbyte/models/shared/source_mailchimp.py
src/airbyte/models/shared/source_mailgun.py
src/airbyte/models/shared/source_mailjet_sms.py
src/airbyte/models/shared/source_marketo.py
src/airbyte/models/shared/source_metabase.py
src/airbyte/models/shared/source_microsoft_teams.py
src/airbyte/models/shared/source_mixpanel.py
src/airbyte/models/shared/source_monday.py
src/airbyte/models/shared/source_mongodb_internal_poc.py
src/airbyte/models/shared/source_mongodb_v2.py
src/airbyte/models/shared/source_mssql.py
src/airbyte/models/shared/source_my_hours.py
src/airbyte/models/shared/source_mysql.py
src/airbyte/models/shared/source_netsuite.py
src/airbyte/models/shared/source_notion.py
src/airbyte/models/shared/source_nytimes.py
src/airbyte/models/shared/source_okta.py
src/airbyte/models/shared/source_omnisend.py
src/airbyte/models/shared/source_onesignal.py
src/airbyte/models/shared/source_oracle.py
src/airbyte/models/shared/source_orb.py
src/airbyte/models/shared/source_orbit.py
src/airbyte/models/shared/source_outbrain_amplify.py
src/airbyte/models/shared/source_outreach.py
src/airbyte/models/shared/source_paypal_transaction.py
src/airbyte/models/shared/source_paystack.py
src/airbyte/models/shared/source_pendo.py
src/airbyte/models/shared/source_persistiq.py
src/airbyte/models/shared/source_pexels_api.py
src/airbyte/models/shared/source_pinterest.py
src/airbyte/models/shared/source_pipedrive.py
src/airbyte/models/shared/source_pocket.py
src/airbyte/models/shared/source_pokeapi.py
src/airbyte/models/shared/source_polygon_stock_api.py
src/airbyte/models/shared/source_postgres.py
src/airbyte/models/shared/source_posthog.py
src/airbyte/models/shared/source_postmarkapp.py
src/airbyte/models/shared/source_prestashop.py
src/airbyte/models/shared/source_punk_api.py
src/airbyte/models/shared/source_pypi.py
src/airbyte/models/shared/source_qualaroo.py
src/airbyte/models/shared/source_quickbooks.py
src/airbyte/models/shared/source_railz.py
src/airbyte/models/shared/source_recharge.py
src/airbyte/models/shared/source_recreation.py
src/airbyte/models/shared/source_recruitee.py
src/airbyte/models/shared/source_recurly.py
src/airbyte/models/shared/source_redshift.py
src/airbyte/models/shared/source_retently.py
src/airbyte/models/shared/source_rki_covid.py
src/airbyte/models/shared/source_rss.py
src/airbyte/models/shared/source_s3.py
src/airbyte/models/shared/source_salesforce.py
src/airbyte/models/shared/source_salesloft.py
src/airbyte/models/shared/source_sap_fieldglass.py
src/airbyte/models/shared/source_secoda.py
src/airbyte/models/shared/source_sendgrid.py
src/airbyte/models/shared/source_sendinblue.py
src/airbyte/models/shared/source_senseforce.py
src/airbyte/models/shared/source_sentry.py
src/airbyte/models/shared/source_sftp.py
src/airbyte/models/shared/source_sftp_bulk.py
src/airbyte/models/shared/source_shopify.py
src/airbyte/models/shared/source_shortio.py
src/airbyte/models/shared/source_slack.py
src/airbyte/models/shared/source_smaily.py
src/airbyte/models/shared/source_smartengage.py
src/airbyte/models/shared/source_smartsheets.py
src/airbyte/models/shared/source_snapchat_marketing.py
src/airbyte/models/shared/source_snowflake.py
src/airbyte/models/shared/source_sonar_cloud.py
src/airbyte/models/shared/source_spacex_api.py
src/airbyte/models/shared/source_square.py
src/airbyte/models/shared/source_strava.py
src/airbyte/models/shared/source_stripe.py
src/airbyte/models/shared/source_survey_sparrow.py
src/airbyte/models/shared/source_surveymonkey.py
src/airbyte/models/shared/source_tempo.py
src/airbyte/models/shared/source_the_guardian_api.py
src/airbyte/models/shared/source_tiktok_marketing.py
src/airbyte/models/shared/source_todoist.py
src/airbyte/models/shared/source_trello.py
src/airbyte/models/shared/source_trustpilot.py
src/airbyte/models/shared/source_tvmaze_schedule.py
src/airbyte/models/shared/source_twilio.py
src/airbyte/models/shared/source_twilio_taskrouter.py
src/airbyte/models/shared/source_twitter.py
src/airbyte/models/shared/source_typeform.py
src/airbyte/models/shared/source_us_census.py
src/airbyte/models/shared/source_vantage.py
src/airbyte/models/shared/source_webflow.py
src/airbyte/models/shared/source_whisky_hunter.py
src/airbyte/models/shared/source_wikipedia_pageviews.py
src/airbyte/models/shared/source_woocommerce.py
src/airbyte/models/shared/source_xkcd.py
src/airbyte/models/shared/source_yandex_metrica.py
src/airbyte/models/shared/source_yotpo.py
src/airbyte/models/shared/source_youtube_analytics.py
src/airbyte/models/shared/source_zendesk_chat.py
src/airbyte/models/shared/source_zendesk_sell.py
src/airbyte/models/shared/source_zendesk_sunshine.py
src/airbyte/models/shared/source_zendesk_support.py
src/airbyte/models/shared/source_zendesk_talk.py
src/airbyte/models/shared/source_zenloop.py
src/airbyte/models/shared/source_zoho_crm.py
src/airbyte/models/shared/source_zoom.py
src/airbyte/models/shared/source_zuora.py
src/airbyte/models/shared/sourcecreaterequest.py
src/airbyte/models/shared/initiateoauthrequest.py
src/airbyte/models/shared/oauthactornames.py
src/airbyte/models/shared/oauthinputconfiguration.py
src/airbyte/models/shared/sourcesresponse.py
src/airbyte/models/shared/sourcepatchrequest.py
src/airbyte/models/shared/sourceputrequest.py
src/airbyte/models/shared/streampropertiesresponse.py
src/airbyte/models/shared/streamproperties.py
src/airbyte/models/shared/workspaceoauthcredentialsrequest.py
src/airbyte/models/shared/airtable.py
src/airbyte/models/shared/amazon_ads.py
src/airbyte/models/shared/amazon_seller_partner.py
src/airbyte/models/shared/asana.py
src/airbyte/models/shared/bing_ads.py
src/airbyte/models/shared/facebook_marketing.py
src/airbyte/models/shared/github.py
src/airbyte/models/shared/gitlab.py
src/airbyte/models/shared/google_ads.py
src/airbyte/models/shared/google_analytics_data_api.py
src/airbyte/models/shared/google_drive.py
src/airbyte/models/shared/google_search_console.py
src/airbyte/models/shared/google_sheets.py
src/airbyte/models/shared/harvest.py
src/airbyte/models/shared/hubspot.py
src/airbyte/models/shared/instagram.py
src/airbyte/models/shared/intercom.py
src/airbyte/models/shared/lever_hiring.py
src/airbyte/models/shared/linkedin_ads.py
src/airbyte/models/shared/mailchimp.py
src/airbyte/models/shared/microsoft_teams.py
src/airbyte/models/shared/monday.py
src/airbyte/models/shared/notion.py
src/airbyte/models/shared/pinterest.py
src/airbyte/models/shared/retently.py
src/airbyte/models/shared/salesforce.py
src/airbyte/models/shared/shopify.py
src/airbyte/models/shared/slack.py
src/airbyte/models/shared/smartsheets.py
src/airbyte/models/shared/snapchat_marketing.py
src/airbyte/models/shared/snowflake.py
src/airbyte/models/shared/square.py
src/airbyte/models/shared/strava.py
src/airbyte/models/shared/surveymonkey.py
src/airbyte/models/shared/tiktok_marketing.py
src/airbyte/models/shared/typeform.py
src/airbyte/models/shared/youtube_analytics.py
src/airbyte/models/shared/zendesk_chat.py
src/airbyte/models/shared/zendesk_sunshine.py
src/airbyte/models/shared/zendesk_support.py
src/airbyte/models/shared/zendesk_talk.py
src/airbyte/models/shared/actortypeenum.py
src/airbyte/models/shared/workspaceresponse.py
src/airbyte/models/shared/workspacecreaterequest.py
src/airbyte/models/shared/workspacesresponse.py
src/airbyte/models/shared/workspaceupdaterequest.py
src/airbyte/models/shared/security.py
src/airbyte/models/shared/schemebasicauth.py
src/airbyte/models/__init__.py
src/airbyte/models/errors/__init__.py
src/airbyte/models/operations/__init__.py
src/airbyte/models/shared/__init__.py
docs/models/operations/createconnectionresponse.md
docs/models/operations/deleteconnectionrequest.md
docs/models/operations/deleteconnectionresponse.md
docs/models/operations/getconnectionrequest.md
docs/models/operations/getconnectionresponse.md
docs/models/operations/listconnectionsrequest.md
docs/models/operations/listconnectionsresponse.md
docs/models/operations/patchconnectionrequest.md
docs/models/operations/patchconnectionresponse.md
docs/models/operations/createdestinationresponse.md
docs/models/operations/deletedestinationrequest.md
docs/models/operations/deletedestinationresponse.md
docs/models/operations/getdestinationrequest.md
docs/models/operations/getdestinationresponse.md
docs/models/operations/listdestinationsrequest.md
docs/models/operations/listdestinationsresponse.md
docs/models/operations/patchdestinationrequest.md
docs/models/operations/patchdestinationresponse.md
docs/models/operations/putdestinationrequest.md
docs/models/operations/putdestinationresponse.md
docs/models/operations/canceljobrequest.md
docs/models/operations/canceljobresponse.md
docs/models/operations/createjobresponse.md
docs/models/operations/getjobrequest.md
docs/models/operations/getjobresponse.md
docs/models/operations/listjobsrequest.md
docs/models/operations/listjobsresponse.md
docs/models/operations/createsourceresponse.md
docs/models/operations/deletesourcerequest.md
docs/models/operations/deletesourceresponse.md
docs/models/operations/getsourcerequest.md
docs/models/operations/getsourceresponse.md
docs/models/operations/initiateoauthresponse.md
docs/models/operations/listsourcesrequest.md
docs/models/operations/listsourcesresponse.md
docs/models/operations/patchsourcerequest.md
docs/models/operations/patchsourceresponse.md
docs/models/operations/putsourcerequest.md
docs/models/operations/putsourceresponse.md
docs/models/operations/getstreampropertiesrequest.md
docs/models/operations/getstreampropertiesresponse.md
docs/models/operations/createorupdateworkspaceoauthcredentialsrequest.md
docs/models/operations/createorupdateworkspaceoauthcredentialsresponse.md
docs/models/operations/createworkspaceresponse.md
docs/models/operations/deleteworkspacerequest.md
docs/models/operations/deleteworkspaceresponse.md
docs/models/operations/getworkspacerequest.md
docs/models/operations/getworkspaceresponse.md
docs/models/operations/listworkspacesrequest.md
docs/models/operations/listworkspacesresponse.md
docs/models/operations/updateworkspacerequest.md
docs/models/operations/updateworkspaceresponse.md
docs/models/shared/connectionresponse.md
docs/models/shared/connectionstatusenum.md
docs/models/shared/connectionscheduleresponse.md
docs/models/shared/scheduletypewithbasicenum.md
docs/models/shared/nonbreakingschemaupdatesbehaviorenum.md
docs/models/shared/namespacedefinitionenum.md
docs/models/shared/geographyenum.md
docs/models/shared/streamconfigurations.md
docs/models/shared/streamconfiguration.md
docs/models/shared/connectionsyncmodeenum.md
docs/models/shared/connectioncreaterequest.md
docs/models/shared/connectionschedule.md
docs/models/shared/scheduletypeenum.md
docs/models/shared/connectionsresponse.md
docs/models/shared/connectionpatchrequest.md
docs/models/shared/nonbreakingschemaupdatesbehaviorenumnodefault.md
docs/models/shared/namespacedefinitionenumnodefault.md
docs/models/shared/geographyenumnodefault.md
docs/models/shared/destinationresponse.md
docs/models/shared/destinationconfiguration.md
docs/models/shared/authenticationviagoogleoauth.md
docs/models/shared/destinationgooglesheetsgooglesheets.md
docs/models/shared/destinationgooglesheets.md
docs/models/shared/destinationawsdatalakecredentialstitle.md
docs/models/shared/iamuser.md
docs/models/shared/credentialstitle.md
docs/models/shared/iamrole.md
docs/models/shared/authenticationmode.md
docs/models/shared/awsdatalake.md
docs/models/shared/destinationawsdatalakecompressioncodecoptional.md
docs/models/shared/destinationawsdatalakeformattypewildcard.md
docs/models/shared/parquetcolumnarstorage.md
docs/models/shared/compressioncodecoptional.md
docs/models/shared/formattypewildcard.md
docs/models/shared/jsonlinesnewlinedelimitedjson.md
docs/models/shared/outputformatwildcard.md
docs/models/shared/choosehowtopartitiondata.md
docs/models/shared/s3bucketregion.md
docs/models/shared/destinationawsdatalake.md
docs/models/shared/azureblobstorage.md
docs/models/shared/destinationazureblobstorageformattype.md
docs/models/shared/destinationazureblobstoragejsonlinesnewlinedelimitedjson.md
docs/models/shared/normalizationflattening.md
docs/models/shared/formattype.md
docs/models/shared/csvcommaseparatedvalues.md
docs/models/shared/outputformat.md
docs/models/shared/destinationazureblobstorage.md
docs/models/shared/datasetlocation.md
docs/models/shared/bigquery.md
docs/models/shared/destinationbigquerymethod.md
docs/models/shared/standardinserts.md
docs/models/shared/destinationbigquerycredentialtype.md
docs/models/shared/destinationbigqueryhmackey.md
docs/models/shared/credential.md
docs/models/shared/gcstmpfilesafterwardprocessing.md
docs/models/shared/method.md
docs/models/shared/gcsstaging.md
docs/models/shared/loadingmethod.md
docs/models/shared/transformationqueryruntype.md
docs/models/shared/destinationbigquery.md
docs/models/shared/clickhouse.md
docs/models/shared/destinationclickhouseschemastunnelmethod.md
docs/models/shared/passwordauthentication.md
docs/models/shared/destinationclickhousetunnelmethod.md
docs/models/shared/sshkeyauthentication.md
docs/models/shared/tunnelmethod.md
docs/models/shared/notunnel.md
docs/models/shared/sshtunnelmethod.md
docs/models/shared/destinationclickhouse.md
docs/models/shared/convex.md
docs/models/shared/destinationconvex.md
docs/models/shared/cumulio.md
docs/models/shared/destinationcumulio.md
docs/models/shared/databend.md
docs/models/shared/destinationdatabend.md
docs/models/shared/destinationdatabricksschemasdatasourcetype.md
docs/models/shared/destinationdatabricksazureblobstorage.md
docs/models/shared/destinationdatabricksdatasourcetype.md
docs/models/shared/destinationdatabrickss3bucketregion.md
docs/models/shared/amazons3.md
docs/models/shared/datasourcetype.md
docs/models/shared/recommendedmanagedtables.md
docs/models/shared/datasource.md
docs/models/shared/databricks.md
docs/models/shared/destinationdatabricks.md
docs/models/shared/devnull.md
docs/models/shared/testdestinationtype.md
docs/models/shared/silent.md
docs/models/shared/testdestination.md
docs/models/shared/destinationdevnull.md
docs/models/shared/duckdb.md
docs/models/shared/destinationduckdb.md
docs/models/shared/dynamodb.md
docs/models/shared/dynamodbregion.md
docs/models/shared/destinationdynamodb.md
docs/models/shared/destinationelasticsearchschemasmethod.md
docs/models/shared/usernamepassword.md
docs/models/shared/destinationelasticsearchmethod.md
docs/models/shared/apikeysecret.md
docs/models/shared/authenticationmethod.md
docs/models/shared/elasticsearch.md
docs/models/shared/destinationelasticsearch.md
docs/models/shared/firebolt.md
docs/models/shared/destinationfireboltschemasmethod.md
docs/models/shared/externaltablevias3.md
docs/models/shared/destinationfireboltmethod.md
docs/models/shared/sqlinserts.md
docs/models/shared/destinationfireboltloadingmethod.md
docs/models/shared/destinationfirebolt.md
docs/models/shared/firestore.md
docs/models/shared/destinationfirestore.md
docs/models/shared/credentialtype.md
docs/models/shared/hmackey.md
docs/models/shared/authentication.md
docs/models/shared/gcs.md
docs/models/shared/destinationgcscompressioncodec.md
docs/models/shared/destinationgcsschemasformatoutputformatformattype.md
docs/models/shared/destinationgcsparquetcolumnarstorage.md
docs/models/shared/destinationgcsschemasformatcompressiontype.md
docs/models/shared/destinationgcsgzip.md
docs/models/shared/destinationgcsschemascompressiontype.md
docs/models/shared/destinationgcsschemasnocompression.md
docs/models/shared/destinationgcscompression.md
docs/models/shared/destinationgcsschemasformatformattype.md
docs/models/shared/destinationgcsjsonlinesnewlinedelimitedjson.md
docs/models/shared/destinationgcscompressiontype.md
docs/models/shared/gzip.md
docs/models/shared/compressiontype.md
docs/models/shared/destinationgcsnocompression.md
docs/models/shared/compression.md
docs/models/shared/normalization.md
docs/models/shared/destinationgcsschemasformattype.md
docs/models/shared/destinationgcscsvcommaseparatedvalues.md
docs/models/shared/destinationgcsschemasformatoutputformat1codec.md
docs/models/shared/snappy.md
docs/models/shared/destinationgcsschemasformatoutputformatcodec.md
docs/models/shared/zstandard.md
docs/models/shared/destinationgcsschemasformatcodec.md
docs/models/shared/xz.md
docs/models/shared/destinationgcsschemascodec.md
docs/models/shared/bzip2.md
docs/models/shared/destinationgcscodec.md
docs/models/shared/deflate.md
docs/models/shared/codec.md
docs/models/shared/nocompression.md
docs/models/shared/compressioncodec.md
docs/models/shared/destinationgcsformattype.md
docs/models/shared/avroapacheavro.md
docs/models/shared/destinationgcsoutputformat.md
docs/models/shared/gcsbucketregion.md
docs/models/shared/destinationgcs.md
docs/models/shared/keen.md
docs/models/shared/destinationkeen.md
docs/models/shared/kinesis.md
docs/models/shared/destinationkinesis.md
docs/models/shared/langchain.md
docs/models/shared/destinationlangchainmode.md
docs/models/shared/fake.md
docs/models/shared/destinationlangchainschemasembeddingmode.md
docs/models/shared/openai.md
docs/models/shared/embedding.md
docs/models/shared/destinationlangchainschemasindexingindexingmode.md
docs/models/shared/chromalocalpersistance.md
docs/models/shared/destinationlangchainschemasindexingmode.md
docs/models/shared/docarrayhnswsearch.md
docs/models/shared/destinationlangchainschemasmode.md
docs/models/shared/destinationlangchainpinecone.md
docs/models/shared/indexing.md
docs/models/shared/processingconfigmodel.md
docs/models/shared/destinationlangchain.md
docs/models/shared/milvus.md
docs/models/shared/destinationmilvusschemasembeddingembedding6mode.md
docs/models/shared/openaicompatible.md
docs/models/shared/destinationmilvusschemasembeddingembedding5mode.md
docs/models/shared/azureopenai.md
docs/models/shared/destinationmilvusschemasembeddingembeddingmode.md
docs/models/shared/fromfield.md
docs/models/shared/destinationmilvusschemasembeddingmode.md
docs/models/shared/destinationmilvusfake.md
docs/models/shared/destinationmilvusschemasmode.md
docs/models/shared/cohere.md
docs/models/shared/destinationmilvusmode.md
docs/models/shared/destinationmilvusopenai.md
docs/models/shared/destinationmilvusembedding.md
docs/models/shared/destinationmilvusschemasindexingauthauthenticationmode.md
docs/models/shared/noauth.md
docs/models/shared/destinationmilvusschemasindexingauthmode.md
docs/models/shared/destinationmilvususernamepassword.md
docs/models/shared/destinationmilvusschemasindexingmode.md
docs/models/shared/destinationmilvusapitoken.md
docs/models/shared/destinationmilvusauthentication.md
docs/models/shared/destinationmilvusindexing.md
docs/models/shared/fieldnamemappingconfigmodel.md
docs/models/shared/destinationmilvuslanguage.md
docs/models/shared/destinationmilvusschemasprocessingtextsplittertextsplittermode.md
docs/models/shared/byprogramminglanguage.md
docs/models/shared/destinationmilvusschemasprocessingtextsplittermode.md
docs/models/shared/bymarkdownheader.md
docs/models/shared/destinationmilvusschemasprocessingmode.md
docs/models/shared/byseparator.md
docs/models/shared/textsplitter.md
docs/models/shared/destinationmilvusprocessingconfigmodel.md
docs/models/shared/destinationmilvus.md
docs/models/shared/destinationmongodbauthorization.md
docs/models/shared/loginpassword.md
docs/models/shared/destinationmongodbschemasauthorization.md
docs/models/shared/nonet.md
docs/models/shared/authorizationtype.md
docs/models/shared/mongodb.md
docs/models/shared/destinationmongodbschemasinstance.md
docs/models/shared/mongodbatlas.md
docs/models/shared/destinationmongodbinstance.md
docs/models/shared/replicaset.md
docs/models/shared/instance.md
docs/models/shared/standalonemongodbinstance.md
docs/models/shared/mongodbinstancetype.md
docs/models/shared/destinationmongodbschemastunnelmethodtunnelmethod.md
docs/models/shared/destinationmongodbpasswordauthentication.md
docs/models/shared/destinationmongodbschemastunnelmethod.md
docs/models/shared/destinationmongodbsshkeyauthentication.md
docs/models/shared/destinationmongodbtunnelmethod.md
docs/models/shared/destinationmongodbnotunnel.md
docs/models/shared/destinationmongodbsshtunnelmethod.md
docs/models/shared/destinationmongodb.md
docs/models/shared/mssql.md
docs/models/shared/destinationmssqlschemassslmethod.md
docs/models/shared/encryptedverifycertificate.md
docs/models/shared/destinationmssqlsslmethod.md
docs/models/shared/encryptedtrustservercertificate.md
docs/models/shared/sslmethod.md
docs/models/shared/destinationmssqlschemastunnelmethodtunnelmethod.md
docs/models/shared/destinationmssqlpasswordauthentication.md
docs/models/shared/destinationmssqlschemastunnelmethod.md
docs/models/shared/destinationmssqlsshkeyauthentication.md
docs/models/shared/destinationmssqltunnelmethod.md
docs/models/shared/destinationmssqlnotunnel.md
docs/models/shared/destinationmssqlsshtunnelmethod.md
docs/models/shared/destinationmssql.md
docs/models/shared/mysql.md
docs/models/shared/destinationmysqlschemastunnelmethodtunnelmethod.md
docs/models/shared/destinationmysqlpasswordauthentication.md
docs/models/shared/destinationmysqlschemastunnelmethod.md
docs/models/shared/destinationmysqlsshkeyauthentication.md
docs/models/shared/destinationmysqltunnelmethod.md
docs/models/shared/destinationmysqlnotunnel.md
docs/models/shared/destinationmysqlsshtunnelmethod.md
docs/models/shared/destinationmysql.md
docs/models/shared/oracle.md
docs/models/shared/destinationoracleschemastunnelmethodtunnelmethod.md
docs/models/shared/destinationoraclepasswordauthentication.md
docs/models/shared/destinationoracleschemastunnelmethod.md
docs/models/shared/destinationoraclesshkeyauthentication.md
docs/models/shared/destinationoracletunnelmethod.md
docs/models/shared/destinationoraclenotunnel.md
docs/models/shared/destinationoraclesshtunnelmethod.md
docs/models/shared/destinationoracle.md
docs/models/shared/pinecone.md
docs/models/shared/destinationpineconeschemasembeddingembedding5mode.md
docs/models/shared/destinationpineconeopenaicompatible.md
docs/models/shared/destinationpineconeschemasembeddingembeddingmode.md
docs/models/shared/destinationpineconeazureopenai.md
docs/models/shared/destinationpineconeschemasembeddingmode.md
docs/models/shared/destinationpineconefake.md
docs/models/shared/destinationpineconeschemasmode.md
docs/models/shared/destinationpineconecohere.md
docs/models/shared/destinationpineconemode.md
docs/models/shared/destinationpineconeopenai.md
docs/models/shared/destinationpineconeembedding.md
docs/models/shared/destinationpineconeindexing.md
docs/models/shared/destinationpineconefieldnamemappingconfigmodel.md
docs/models/shared/destinationpineconelanguage.md
docs/models/shared/destinationpineconeschemasprocessingtextsplittertextsplittermode.md
docs/models/shared/destinationpineconebyprogramminglanguage.md
docs/models/shared/destinationpineconeschemasprocessingtextsplittermode.md
docs/models/shared/destinationpineconebymarkdownheader.md
docs/models/shared/destinationpineconeschemasprocessingmode.md
docs/models/shared/destinationpineconebyseparator.md
docs/models/shared/destinationpineconetextsplitter.md
docs/models/shared/destinationpineconeprocessingconfigmodel.md
docs/models/shared/destinationpinecone.md
docs/models/shared/postgres.md
docs/models/shared/destinationpostgresschemassslmodesslmodes6mode.md
docs/models/shared/verifyfull.md
docs/models/shared/destinationpostgresschemassslmodesslmodesmode.md
docs/models/shared/verifyca.md
docs/models/shared/destinationpostgresschemassslmodemode.md
docs/models/shared/require.md
docs/models/shared/destinationpostgresschemasmode.md
docs/models/shared/prefer.md
docs/models/shared/destinationpostgresmode.md
docs/models/shared/allow.md
docs/models/shared/mode.md
docs/models/shared/disable.md
docs/models/shared/sslmodes.md
docs/models/shared/destinationpostgresschemastunnelmethodtunnelmethod.md
docs/models/shared/destinationpostgrespasswordauthentication.md
docs/models/shared/destinationpostgresschemastunnelmethod.md
docs/models/shared/destinationpostgressshkeyauthentication.md
docs/models/shared/destinationpostgrestunnelmethod.md
docs/models/shared/destinationpostgresnotunnel.md
docs/models/shared/destinationpostgressshtunnelmethod.md
docs/models/shared/destinationpostgres.md
docs/models/shared/pubsub.md
docs/models/shared/destinationpubsub.md
docs/models/shared/qdrant.md
docs/models/shared/destinationqdrantschemasembeddingembedding6mode.md
docs/models/shared/destinationqdrantopenaicompatible.md
docs/models/shared/destinationqdrantschemasembeddingembedding5mode.md
docs/models/shared/destinationqdrantazureopenai.md
docs/models/shared/destinationqdrantschemasembeddingembeddingmode.md
docs/models/shared/destinationqdrantfromfield.md
docs/models/shared/destinationqdrantschemasembeddingmode.md
docs/models/shared/destinationqdrantfake.md
docs/models/shared/destinationqdrantschemasmode.md
docs/models/shared/destinationqdrantcohere.md
docs/models/shared/destinationqdrantmode.md
docs/models/shared/destinationqdrantopenai.md
docs/models/shared/destinationqdrantembedding.md
docs/models/shared/destinationqdrantschemasindexingauthmethodmode.md
docs/models/shared/destinationqdrantnoauth.md
docs/models/shared/destinationqdrantschemasindexingmode.md
docs/models/shared/apikeyauth.md
docs/models/shared/destinationqdrantauthenticationmethod.md
docs/models/shared/three.md
docs/models/shared/two.md
docs/models/shared/one.md
docs/models/shared/distancemetric.md
docs/models/shared/destinationqdrantindexing.md
docs/models/shared/destinationqdrantfieldnamemappingconfigmodel.md
docs/models/shared/destinationqdrantlanguage.md
docs/models/shared/destinationqdrantschemasprocessingtextsplittertextsplittermode.md
docs/models/shared/destinationqdrantbyprogramminglanguage.md
docs/models/shared/destinationqdrantschemasprocessingtextsplittermode.md
docs/models/shared/destinationqdrantbymarkdownheader.md
docs/models/shared/destinationqdrantschemasprocessingmode.md
docs/models/shared/destinationqdrantbyseparator.md
docs/models/shared/destinationqdranttextsplitter.md
docs/models/shared/destinationqdrantprocessingconfigmodel.md
docs/models/shared/destinationqdrant.md
docs/models/shared/cachetype.md
docs/models/shared/redis.md
docs/models/shared/destinationredisschemasmode.md
docs/models/shared/destinationredisverifyfull.md
docs/models/shared/destinationredismode.md
docs/models/shared/destinationredisdisable.md
docs/models/shared/destinationredissslmodes.md
docs/models/shared/destinationredisschemastunnelmethodtunnelmethod.md
docs/models/shared/destinationredispasswordauthentication.md
docs/models/shared/destinationredisschemastunnelmethod.md
docs/models/shared/destinationredissshkeyauthentication.md
docs/models/shared/destinationredistunnelmethod.md
docs/models/shared/destinationredisnotunnel.md
docs/models/shared/destinationredissshtunnelmethod.md
docs/models/shared/destinationredis.md
docs/models/shared/redshift.md
docs/models/shared/destinationredshiftschemastunnelmethodtunnelmethod.md
docs/models/shared/destinationredshiftpasswordauthentication.md
docs/models/shared/destinationredshiftschemastunnelmethod.md
docs/models/shared/destinationredshiftsshkeyauthentication.md
docs/models/shared/destinationredshifttunnelmethod.md
docs/models/shared/destinationredshiftnotunnel.md
docs/models/shared/destinationredshiftsshtunnelmethod.md
docs/models/shared/destinationredshiftschemasmethod.md
docs/models/shared/standard.md
docs/models/shared/destinationredshiftencryptiontype.md
docs/models/shared/aescbcenvelopeencryption.md
docs/models/shared/encryptiontype.md
docs/models/shared/noencryption.md
docs/models/shared/destinationredshiftencryption.md
docs/models/shared/destinationredshiftmethod.md
docs/models/shared/destinationredshifts3bucketregion.md
docs/models/shared/s3staging.md
docs/models/shared/uploadingmethod.md
docs/models/shared/destinationredshift.md
docs/models/shared/s3.md
docs/models/shared/destinations3schemascompressioncodec.md
docs/models/shared/destinations3schemasformatoutputformatformattype.md
docs/models/shared/destinations3parquetcolumnarstorage.md
docs/models/shared/destinations3schemasformatoutputformatcompressiontype.md
docs/models/shared/destinations3schemasgzip.md
docs/models/shared/destinations3schemasformatcompressiontype.md
docs/models/shared/destinations3schemasformatnocompression.md
docs/models/shared/destinations3schemascompression.md
docs/models/shared/destinations3schemasflattening.md
docs/models/shared/destinations3schemasformatformattype.md
docs/models/shared/destinations3jsonlinesnewlinedelimitedjson.md
docs/models/shared/destinations3schemascompressiontype.md
docs/models/shared/destinations3gzip.md
docs/models/shared/destinations3compressiontype.md
docs/models/shared/destinations3schemasnocompression.md
docs/models/shared/destinations3compression.md
docs/models/shared/destinations3flattening.md
docs/models/shared/destinations3schemasformattype.md
docs/models/shared/destinations3csvcommaseparatedvalues.md
docs/models/shared/destinations3schemasformatoutputformat1compressioncodeccodec.md
docs/models/shared/destinations3snappy.md
docs/models/shared/destinations3schemasformatoutputformat1codec.md
docs/models/shared/destinations3zstandard.md
docs/models/shared/destinations3schemasformatoutputformatcodec.md
docs/models/shared/destinations3xz.md
docs/models/shared/destinations3schemasformatcodec.md
docs/models/shared/destinations3bzip2.md
docs/models/shared/destinations3schemascodec.md
docs/models/shared/destinations3deflate.md
docs/models/shared/destinations3codec.md
docs/models/shared/destinations3nocompression.md
docs/models/shared/destinations3compressioncodec.md
docs/models/shared/destinations3formattype.md
docs/models/shared/destinations3avroapacheavro.md
docs/models/shared/destinations3outputformat.md
docs/models/shared/destinations3s3bucketregion.md
docs/models/shared/destinations3.md
docs/models/shared/s3glue.md
docs/models/shared/destinations3glueschemascompressiontype.md
docs/models/shared/destinations3gluegzip.md
docs/models/shared/destinations3gluecompressiontype.md
docs/models/shared/destinations3gluenocompression.md
docs/models/shared/destinations3gluecompression.md
docs/models/shared/flattening.md
docs/models/shared/destinations3glueformattype.md
docs/models/shared/destinations3gluejsonlinesnewlinedelimitedjson.md
docs/models/shared/destinations3glueoutputformat.md
docs/models/shared/serializationlibrary.md
docs/models/shared/destinations3glues3bucketregion.md
docs/models/shared/destinations3glue.md
docs/models/shared/sftpjson.md
docs/models/shared/destinationsftpjson.md
docs/models/shared/destinationsnowflakeschemasauthtype.md
docs/models/shared/usernameandpassword.md
docs/models/shared/destinationsnowflakeauthtype.md
docs/models/shared/keypairauthentication.md
docs/models/shared/destinationsnowflakeschemascredentialsauthtype.md
docs/models/shared/oauth20.md
docs/models/shared/authorizationmethod.md
docs/models/shared/destinationsnowflakesnowflake.md
docs/models/shared/destinationsnowflake.md
docs/models/shared/timeplus.md
docs/models/shared/destinationtimeplus.md
docs/models/shared/typesense.md
docs/models/shared/destinationtypesense.md
docs/models/shared/vertica.md
docs/models/shared/destinationverticaschemastunnelmethodtunnelmethod.md
docs/models/shared/destinationverticapasswordauthentication.md
docs/models/shared/destinationverticaschemastunnelmethod.md
docs/models/shared/destinationverticasshkeyauthentication.md
docs/models/shared/destinationverticatunnelmethod.md
docs/models/shared/destinationverticanotunnel.md
docs/models/shared/destinationverticasshtunnelmethod.md
docs/models/shared/destinationvertica.md
docs/models/shared/weaviate.md
docs/models/shared/destinationweaviateschemasembeddingembedding7mode.md
docs/models/shared/destinationweaviateopenaicompatible.md
docs/models/shared/destinationweaviateschemasembeddingembedding6mode.md
docs/models/shared/destinationweaviatefake.md
docs/models/shared/destinationweaviateschemasembeddingembedding5mode.md
docs/models/shared/destinationweaviatefromfield.md
docs/models/shared/destinationweaviateschemasembeddingembeddingmode.md
docs/models/shared/destinationweaviatecohere.md
docs/models/shared/destinationweaviateschemasembeddingmode.md
docs/models/shared/destinationweaviateopenai.md
docs/models/shared/destinationweaviateschemasmode.md
docs/models/shared/destinationweaviateazureopenai.md
docs/models/shared/destinationweaviatemode.md
docs/models/shared/noexternalembedding.md
docs/models/shared/destinationweaviateembedding.md
docs/models/shared/header.md
docs/models/shared/destinationweaviateschemasindexingauthauthenticationmode.md
docs/models/shared/noauthentication.md
docs/models/shared/destinationweaviateschemasindexingauthmode.md
docs/models/shared/destinationweaviateusernamepassword.md
docs/models/shared/destinationweaviateschemasindexingmode.md
docs/models/shared/destinationweaviateapitoken.md
docs/models/shared/destinationweaviateauthentication.md
docs/models/shared/defaultvectorizer.md
docs/models/shared/destinationweaviateindexing.md
docs/models/shared/destinationweaviatefieldnamemappingconfigmodel.md
docs/models/shared/destinationweaviatelanguage.md
docs/models/shared/destinationweaviateschemasprocessingtextsplittertextsplittermode.md
docs/models/shared/destinationweaviatebyprogramminglanguage.md
docs/models/shared/destinationweaviateschemasprocessingtextsplittermode.md
docs/models/shared/destinationweaviatebymarkdownheader.md
docs/models/shared/destinationweaviateschemasprocessingmode.md
docs/models/shared/destinationweaviatebyseparator.md
docs/models/shared/destinationweaviatetextsplitter.md
docs/models/shared/destinationweaviateprocessingconfigmodel.md
docs/models/shared/destinationweaviate.md
docs/models/shared/xata.md
docs/models/shared/destinationxata.md
docs/models/shared/destinationcreaterequest.md
docs/models/shared/destinationsresponse.md
docs/models/shared/destinationpatchrequest.md
docs/models/shared/destinationputrequest.md
docs/models/shared/jobresponse.md
docs/models/shared/jobstatusenum.md
docs/models/shared/jobtypeenum.md
docs/models/shared/jobcreaterequest.md
docs/models/shared/jobsresponse.md
docs/models/shared/sourceresponse.md
docs/models/shared/sourceconfiguration.md
docs/models/shared/aha.md
docs/models/shared/sourceaha.md
docs/models/shared/aircall.md
docs/models/shared/sourceaircall.md
docs/models/shared/sourceairtableauthmethod.md
docs/models/shared/personalaccesstoken.md
docs/models/shared/sourceairtableschemasauthmethod.md
docs/models/shared/sourceairtableoauth20.md
docs/models/shared/sourceairtableauthentication.md
docs/models/shared/sourceairtableairtable.md
docs/models/shared/sourceairtable.md
docs/models/shared/sourcealloydbschemasreplicationmethodmethod.md
docs/models/shared/sourcealloydbstandard.md
docs/models/shared/lsncommitbehaviour.md
docs/models/shared/sourcealloydbschemasmethod.md
docs/models/shared/plugin.md
docs/models/shared/logicalreplicationcdc.md
docs/models/shared/sourcealloydbmethod.md
docs/models/shared/standardxmin.md
docs/models/shared/replicationmethod.md
docs/models/shared/alloydb.md
docs/models/shared/sourcealloydbschemassslmodesslmodes6mode.md
docs/models/shared/sourcealloydbverifyfull.md
docs/models/shared/sourcealloydbschemassslmodesslmodes5mode.md
docs/models/shared/sourcealloydbverifyca.md
docs/models/shared/sourcealloydbschemassslmodesslmodesmode.md
docs/models/shared/sourcealloydbrequire.md
docs/models/shared/sourcealloydbschemassslmodemode.md
docs/models/shared/sourcealloydbprefer.md
docs/models/shared/sourcealloydbschemasmode.md
docs/models/shared/sourcealloydballow.md
docs/models/shared/sourcealloydbmode.md
docs/models/shared/sourcealloydbdisable.md
docs/models/shared/sourcealloydbsslmodes.md
docs/models/shared/sourcealloydbschemastunnelmethodtunnelmethod.md
docs/models/shared/sourcealloydbpasswordauthentication.md
docs/models/shared/sourcealloydbschemastunnelmethod.md
docs/models/shared/sourcealloydbsshkeyauthentication.md
docs/models/shared/sourcealloydbtunnelmethod.md
docs/models/shared/sourcealloydbnotunnel.md
docs/models/shared/sourcealloydbsshtunnelmethod.md
docs/models/shared/sourcealloydb.md
docs/models/shared/sourceamazonadsauthtype.md
docs/models/shared/region.md
docs/models/shared/reportrecordtypes.md
docs/models/shared/sourceamazonadsamazonads.md
docs/models/shared/statefilter.md
docs/models/shared/sourceamazonads.md
docs/models/shared/sourceamazonsellerpartnerauthtype.md
docs/models/shared/awsenvironment.md
docs/models/shared/awsregion.md
docs/models/shared/sourceamazonsellerpartneramazonsellerpartner.md
docs/models/shared/sourceamazonsellerpartner.md
docs/models/shared/sourceamazonsqsawsregion.md
docs/models/shared/amazonsqs.md
docs/models/shared/sourceamazonsqs.md
docs/models/shared/dataregion.md
docs/models/shared/amplitude.md
docs/models/shared/sourceamplitude.md
docs/models/shared/apifydataset.md
docs/models/shared/sourceapifydataset.md
docs/models/shared/appfollow.md
docs/models/shared/sourceappfollow.md
docs/models/shared/sourceasanaschemascredentialstitle.md
docs/models/shared/authenticatewithpersonalaccesstoken.md
docs/models/shared/sourceasanacredentialstitle.md
docs/models/shared/authenticateviaasanaoauth.md
docs/models/shared/authenticationmechanism.md
docs/models/shared/sourceasanaasana.md
docs/models/shared/sourceasana.md
docs/models/shared/sourceauth0schemascredentialsauthenticationmethod.md
docs/models/shared/oauth2accesstoken.md
docs/models/shared/sourceauth0schemasauthenticationmethod.md
docs/models/shared/oauth2confidentialapplication.md
docs/models/shared/sourceauth0authenticationmethod.md
docs/models/shared/auth0.md
docs/models/shared/sourceauth0.md