This repository has been archived by the owner on Nov 26, 2024. It is now read-only.
forked from airbytehq/terraform-provider-airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
files.gen
executable file
·3028 lines (3028 loc) · 170 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
internal/sdk/connections.go
internal/sdk/destinations.go
internal/sdk/jobs.go
internal/sdk/sources.go
internal/sdk/streams.go
internal/sdk/workspaces.go
internal/sdk/sdk.go
internal/provider/type_stream_configuration.go
internal/provider/type_stream_configurations.go
internal/provider/type_connection_schedule.go
internal/provider/type_destination_amazon_sqs.go
internal/provider/type_destination_aws_datalake_authentication_mode_iam_role.go
internal/provider/type_destination_aws_datalake_authentication_mode_iam_user.go
internal/provider/type_destination_aws_datalake_authentication_mode.go
internal/provider/type_destination_aws_datalake_output_format_wildcard_json_lines_newline_delimited_json.go
internal/provider/type_destination_aws_datalake_output_format_wildcard_parquet_columnar_storage.go
internal/provider/type_destination_aws_datalake_output_format_wildcard.go
internal/provider/type_destination_aws_datalake.go
internal/provider/type_destination_azure_blob_storage_output_format_csv_comma_separated_values.go
internal/provider/type_destination_azure_blob_storage_output_format_json_lines_newline_delimited_json.go
internal/provider/type_destination_azure_blob_storage_output_format.go
internal/provider/type_destination_azure_blob_storage.go
internal/provider/type_destination_bigquery_loading_method_gcs_staging_credential_hmac_key.go
internal/provider/type_destination_bigquery_loading_method_gcs_staging_credential.go
internal/provider/type_destination_bigquery_loading_method_gcs_staging.go
internal/provider/type_destination_bigquery_loading_method_standard_inserts.go
internal/provider/type_destination_bigquery_update_loading_method_gcs_staging_credential.go
internal/provider/type_destination_bigquery_update_loading_method_gcs_staging.go
internal/provider/type_destination_bigquery_loading_method.go
internal/provider/type_destination_bigquery.go
internal/provider/type_destination_bigquery_denormalized_loading_method_gcs_staging_credential.go
internal/provider/type_destination_bigquery_denormalized_loading_method_gcs_staging.go
internal/provider/type_destination_bigquery_denormalized_update_loading_method_gcs_staging_credential.go
internal/provider/type_destination_bigquery_denormalized_update_loading_method_gcs_staging.go
internal/provider/type_destination_bigquery_denormalized_loading_method.go
internal/provider/type_destination_bigquery_denormalized.go
internal/provider/type_destination_cassandra.go
internal/provider/type_destination_clickhouse_ssh_tunnel_method_no_tunnel.go
internal/provider/type_destination_clickhouse_ssh_tunnel_method_password_authentication.go
internal/provider/type_destination_clickhouse_ssh_tunnel_method_ssh_key_authentication.go
internal/provider/type_destination_clickhouse_ssh_tunnel_method.go
internal/provider/type_destination_clickhouse.go
internal/provider/type_destination_convex.go
internal/provider/type_destination_cumulio.go
internal/provider/type_destination_databend.go
internal/provider/type_destination_databricks_data_source_recommended_managed_tables.go
internal/provider/type_destination_databricks_data_source_amazon_s3.go
internal/provider/type_destination_databricks_data_source_azure_blob_storage.go
internal/provider/type_destination_databricks_update_data_source_amazon_s3.go
internal/provider/type_destination_databricks_data_source.go
internal/provider/type_destination_databricks.go
internal/provider/type_destination_dev_null_test_destination_silent.go
internal/provider/type_destination_dev_null_test_destination.go
internal/provider/type_destination_dev_null.go
internal/provider/type_destination_dynamodb.go
internal/provider/type_destination_elasticsearch_authentication_method_api_key_secret.go
internal/provider/type_destination_elasticsearch_authentication_method_username_password.go
internal/provider/type_destination_elasticsearch_authentication_method.go
internal/provider/type_destination_elasticsearch.go
internal/provider/type_destination_firebolt_loading_method_external_table_via_s3.go
internal/provider/type_destination_firebolt_loading_method_sql_inserts.go
internal/provider/type_destination_firebolt_loading_method.go
internal/provider/type_destination_firebolt.go
internal/provider/type_destination_firestore.go
internal/provider/type_destination_gcs_authentication.go
internal/provider/type_destination_gcs_output_format_avro_apache_avro_compression_codec_bzip2.go
internal/provider/type_destination_gcs_output_format_avro_apache_avro_compression_codec_deflate.go
internal/provider/type_destination_gcs_output_format_avro_apache_avro_compression_codec_no_compression.go
internal/provider/type_destination_gcs_output_format_avro_apache_avro_compression_codec_snappy.go
internal/provider/type_destination_gcs_output_format_avro_apache_avro_compression_codec_xz.go
internal/provider/type_destination_gcs_output_format_avro_apache_avro_compression_codec_zstandard.go
internal/provider/type_destination_gcs_output_format_avro_apache_avro_compression_codec.go
internal/provider/type_destination_gcs_output_format_avro_apache_avro.go
internal/provider/type_destination_gcs_output_format_csv_comma_separated_values_compression_gzip.go
internal/provider/type_destination_gcs_output_format_csv_comma_separated_values_compression_no_compression.go
internal/provider/type_destination_gcs_output_format_csv_comma_separated_values_compression.go
internal/provider/type_destination_gcs_output_format_csv_comma_separated_values.go
internal/provider/type_destination_gcs_output_format_json_lines_newline_delimited_json_compression_gzip.go
internal/provider/type_destination_gcs_output_format_json_lines_newline_delimited_json_compression_no_compression.go
internal/provider/type_destination_gcs_output_format_json_lines_newline_delimited_json_compression.go
internal/provider/type_destination_gcs_output_format_json_lines_newline_delimited_json.go
internal/provider/type_destination_gcs_output_format_parquet_columnar_storage.go
internal/provider/type_destination_gcs_update_output_format_avro_apache_avro_compression_codec.go
internal/provider/type_destination_gcs_update_output_format_avro_apache_avro.go
internal/provider/type_destination_gcs_update_output_format_csv_comma_separated_values_compression.go
internal/provider/type_destination_gcs_update_output_format_csv_comma_separated_values.go
internal/provider/type_destination_gcs_update_output_format_json_lines_newline_delimited_json_compression.go
internal/provider/type_destination_gcs_update_output_format_json_lines_newline_delimited_json.go
internal/provider/type_destination_gcs_output_format.go
internal/provider/type_destination_gcs.go
internal/provider/type_destination_google_sheets_authentication_via_google_o_auth.go
internal/provider/type_destination_google_sheets.go
internal/provider/type_destination_keen.go
internal/provider/type_destination_kinesis.go
internal/provider/type_destination_mariadb_columnstore_ssh_tunnel_method.go
internal/provider/type_destination_mariadb_columnstore.go
internal/provider/type_destination_meilisearch.go
internal/provider/type_destination_mongodb_authorization_type_login_password.go
internal/provider/type_destination_mongodb_authorization_type_none.go
internal/provider/type_destination_mongodb_authorization_type.go
internal/provider/type_destination_mongodb_mongo_db_instance_type_mongo_db_atlas.go
internal/provider/type_destination_mongodb_mongo_db_instance_type_replica_set.go
internal/provider/type_destination_mongodb_mongo_db_instance_type_standalone_mongo_db_instance.go
internal/provider/type_destination_mongodb_mongo_db_instance_type.go
internal/provider/type_destination_mongodb_ssh_tunnel_method.go
internal/provider/type_destination_mongodb.go
internal/provider/type_destination_mssql_ssl_method_encrypted_trust_server_certificate.go
internal/provider/type_destination_mssql_ssl_method_encrypted_verify_certificate.go
internal/provider/type_destination_mssql_ssl_method.go
internal/provider/type_destination_mssql_ssh_tunnel_method.go
internal/provider/type_destination_mssql.go
internal/provider/type_destination_mysql_ssh_tunnel_method.go
internal/provider/type_destination_mysql.go
internal/provider/type_destination_oracle_ssh_tunnel_method.go
internal/provider/type_destination_oracle.go
internal/provider/type_destination_postgres_ssl_modes_allow.go
internal/provider/type_destination_postgres_ssl_modes_disable.go
internal/provider/type_destination_postgres_ssl_modes_prefer.go
internal/provider/type_destination_postgres_ssl_modes_require.go
internal/provider/type_destination_postgres_ssl_modes_verify_ca.go
internal/provider/type_destination_postgres_ssl_modes_verify_full.go
internal/provider/type_destination_postgres_ssl_modes.go
internal/provider/type_destination_postgres_ssh_tunnel_method.go
internal/provider/type_destination_postgres.go
internal/provider/type_destination_pubsub.go
internal/provider/type_destination_pulsar.go
internal/provider/type_destination_rabbitmq.go
internal/provider/type_destination_redis_ssl_modes.go
internal/provider/type_destination_redis_ssh_tunnel_method.go
internal/provider/type_destination_redis.go
internal/provider/type_destination_redshift_ssh_tunnel_method.go
internal/provider/type_destination_redshift_uploading_method_s3_staging_encryption_aescbc_envelope_encryption.go
internal/provider/type_destination_redshift_uploading_method_s3_staging_encryption_no_encryption.go
internal/provider/type_destination_redshift_uploading_method_s3_staging_encryption.go
internal/provider/type_destination_redshift_uploading_method_s3_staging.go
internal/provider/type_destination_redshift_uploading_method_standard.go
internal/provider/type_destination_redshift_update_uploading_method_s3_staging_encryption.go
internal/provider/type_destination_redshift_update_uploading_method_s3_staging.go
internal/provider/type_destination_redshift_uploading_method.go
internal/provider/type_destination_redshift.go
internal/provider/type_destination_rockset.go
internal/provider/type_destination_s3_output_format_avro_apache_avro_compression_codec.go
internal/provider/type_destination_s3_output_format_avro_apache_avro.go
internal/provider/type_destination_s3_output_format_csv_comma_separated_values_compression.go
internal/provider/type_destination_s3_output_format_csv_comma_separated_values.go
internal/provider/type_destination_s3_output_format_json_lines_newline_delimited_json_compression.go
internal/provider/type_destination_s3_output_format_json_lines_newline_delimited_json.go
internal/provider/type_destination_s3_output_format_parquet_columnar_storage.go
internal/provider/type_destination_s3_update_output_format_avro_apache_avro_compression_codec.go
internal/provider/type_destination_s3_update_output_format_avro_apache_avro.go
internal/provider/type_destination_s3_update_output_format_csv_comma_separated_values_compression.go
internal/provider/type_destination_s3_update_output_format_csv_comma_separated_values.go
internal/provider/type_destination_s3_update_output_format_json_lines_newline_delimited_json_compression.go
internal/provider/type_destination_s3_update_output_format_json_lines_newline_delimited_json.go
internal/provider/type_destination_s3_output_format.go
internal/provider/type_destination_s3.go
internal/provider/type_destination_s3_glue_output_format_json_lines_newline_delimited_json_compression.go
internal/provider/type_destination_s3_glue_output_format_json_lines_newline_delimited_json.go
internal/provider/type_destination_s3_glue_update_output_format_json_lines_newline_delimited_json_compression.go
internal/provider/type_destination_s3_glue_update_output_format_json_lines_newline_delimited_json.go
internal/provider/type_destination_s3_glue_output_format.go
internal/provider/type_destination_s3_glue.go
internal/provider/type_destination_scylla.go
internal/provider/type_destination_sftp_json.go
internal/provider/type_destination_snowflake_authorization_method_key_pair_authentication.go
internal/provider/type_destination_snowflake_authorization_method_o_auth20.go
internal/provider/type_destination_snowflake_authorization_method_username_and_password.go
internal/provider/type_destination_snowflake_authorization_method.go
internal/provider/type_destination_snowflake_data_staging_method_recommended_internal_staging.go
internal/provider/type_destination_snowflake_data_staging_method_awss3_staging_encryption.go
internal/provider/type_destination_snowflake_data_staging_method_awss3_staging.go
internal/provider/type_destination_snowflake_data_staging_method_google_cloud_storage_staging.go
internal/provider/type_destination_snowflake_data_staging_method_select_another_option.go
internal/provider/type_destination_snowflake_update_data_staging_method_awss3_staging_encryption.go
internal/provider/type_destination_snowflake_update_data_staging_method_awss3_staging.go
internal/provider/type_destination_snowflake_data_staging_method.go
internal/provider/type_destination_snowflake.go
internal/provider/type_destination_typesense.go
internal/provider/type_destination_vertica_ssh_tunnel_method.go
internal/provider/type_destination_vertica.go
internal/provider/type_source_aircall.go
internal/provider/type_source_airtable_authentication_o_auth20.go
internal/provider/type_source_airtable_authentication_personal_access_token.go
internal/provider/type_source_airtable_authentication.go
internal/provider/type_source_airtable.go
internal/provider/type_source_alloydb_replication_method_logical_replication_cdc.go
internal/provider/type_source_alloydb_replication_method_standard.go
internal/provider/type_source_alloydb_update_replication_method_logical_replication_cdc.go
internal/provider/type_source_alloydb_replication_method.go
internal/provider/type_source_alloydb_ssl_modes_allow.go
internal/provider/type_source_alloydb_ssl_modes_disable.go
internal/provider/type_source_alloydb_ssl_modes_prefer.go
internal/provider/type_source_alloydb_ssl_modes_require.go
internal/provider/type_source_alloydb_ssl_modes_verify_ca.go
internal/provider/type_source_alloydb_ssl_modes_verify_full.go
internal/provider/type_source_alloydb_update_ssl_modes_allow.go
internal/provider/type_source_alloydb_update_ssl_modes_disable.go
internal/provider/type_source_alloydb_update_ssl_modes_prefer.go
internal/provider/type_source_alloydb_update_ssl_modes_require.go
internal/provider/type_source_alloydb_update_ssl_modes_verify_ca.go
internal/provider/type_source_alloydb_update_ssl_modes_verify_full.go
internal/provider/type_source_alloydb_ssl_modes.go
internal/provider/type_source_alloydb_ssh_tunnel_method.go
internal/provider/type_source_alloydb.go
internal/provider/type_source_amazon_ads.go
internal/provider/type_source_amazon_sqs.go
internal/provider/type_source_amplitude.go
internal/provider/type_source_apify_dataset.go
internal/provider/type_source_asana_authentication_mechanism_authenticate_via_asana_oauth.go
internal/provider/type_source_asana_authentication_mechanism_authenticate_with_personal_access_token.go
internal/provider/type_source_asana_authentication_mechanism.go
internal/provider/type_source_asana.go
internal/provider/type_source_auth0_authentication_method_o_auth2_access_token.go
internal/provider/type_source_auth0_authentication_method_o_auth2_confidential_application.go
internal/provider/type_source_auth0_authentication_method.go
internal/provider/type_source_auth0.go
internal/provider/type_source_aws_cloudtrail.go
internal/provider/type_source_azure_blob_storage_input_format_json_lines_newline_delimited_json.go
internal/provider/type_source_azure_blob_storage_input_format.go
internal/provider/type_source_azure_blob_storage.go
internal/provider/type_source_azure_table.go
internal/provider/type_source_bamboo_hr.go
internal/provider/type_source_bigcommerce.go
internal/provider/type_source_bigquery.go
internal/provider/type_source_bing_ads.go
internal/provider/type_source_braintree.go
internal/provider/type_source_braze.go
internal/provider/type_source_chargebee.go
internal/provider/type_source_chartmogul.go
internal/provider/type_source_clickhouse_ssh_tunnel_method.go
internal/provider/type_source_clickhouse.go
internal/provider/type_source_clickup_api.go
internal/provider/type_source_close_com.go
internal/provider/type_source_coda.go
internal/provider/type_source_coin_api.go
internal/provider/type_source_coinmarketcap.go
internal/provider/type_source_configcat.go
internal/provider/type_source_confluence.go
internal/provider/type_source_datascope.go
internal/provider/type_source_delighted.go
internal/provider/type_source_dixa.go
internal/provider/type_source_dockerhub.go
internal/provider/type_source_dremio.go
internal/provider/type_source_dynamodb.go
internal/provider/type_source_e2e_test_cloud_mock_catalog_multi_schema.go
internal/provider/type_source_e2e_test_cloud_mock_catalog_single_schema.go
internal/provider/type_source_e2e_test_cloud_mock_catalog.go
internal/provider/type_source_e2e_test_cloud.go
internal/provider/type_source_emailoctopus.go
internal/provider/type_source_exchange_rates.go
internal/provider/type_source_facebook_marketing_insight_config.go
internal/provider/type_source_facebook_marketing.go
internal/provider/type_source_facebook_pages.go
internal/provider/type_source_faker.go
internal/provider/type_source_fauna_collection_deletion_mode_disabled.go
internal/provider/type_source_fauna_collection_deletion_mode_enabled.go
internal/provider/type_source_fauna_collection_deletion_mode.go
internal/provider/type_source_fauna_collection.go
internal/provider/type_source_fauna.go
internal/provider/type_source_file_secure_storage_provider_az_blob_azure_blob_storage.go
internal/provider/type_source_file_secure_storage_provider_gcs_google_cloud_storage.go
internal/provider/type_source_file_secure_storage_provider_https_public_web.go
internal/provider/type_source_file_secure_storage_provider_s3_amazon_web_services.go
internal/provider/type_source_file_secure_storage_provider_scp_secure_copy_protocol.go
internal/provider/type_source_file_secure_storage_provider_sftp_secure_file_transfer_protocol.go
internal/provider/type_source_file_secure_storage_provider_ssh_secure_shell.go
internal/provider/type_source_file_secure_storage_provider.go
internal/provider/type_source_file_secure.go
internal/provider/type_source_firebolt.go
internal/provider/type_source_freshcaller.go
internal/provider/type_source_freshdesk.go
internal/provider/type_source_freshsales.go
internal/provider/type_source_freshservice.go
internal/provider/type_source_gcs.go
internal/provider/type_source_getlago.go
internal/provider/type_source_github_authentication_o_auth.go
internal/provider/type_source_github_authentication_personal_access_token.go
internal/provider/type_source_github_authentication.go
internal/provider/type_source_github.go
internal/provider/type_source_gitlab_authorization_method_o_auth20.go
internal/provider/type_source_gitlab_authorization_method_private_token.go
internal/provider/type_source_gitlab_authorization_method.go
internal/provider/type_source_gitlab.go
internal/provider/type_source_glassfrog.go
internal/provider/type_source_gnews.go
internal/provider/type_source_google_ads_google_credentials.go
internal/provider/type_source_google_ads_custom_queries.go
internal/provider/type_source_google_ads.go
internal/provider/type_source_google_analytics_data_api_credentials_authenticate_via_google_oauth.go
internal/provider/type_source_google_analytics_data_api_credentials_service_account_key_authentication.go
internal/provider/type_source_google_analytics_data_api_credentials.go
internal/provider/type_source_google_analytics_data_api.go
internal/provider/type_source_google_analytics_v4_credentials.go
internal/provider/type_source_google_analytics_v4.go
internal/provider/type_source_google_directory.go
internal/provider/type_source_google_pagespeed_insights.go
internal/provider/type_source_google_search_console_authentication_type_o_auth.go
internal/provider/type_source_google_search_console_authentication_type_service_account_key_authentication.go
internal/provider/type_source_google_search_console_authentication_type.go
internal/provider/type_source_google_search_console.go
internal/provider/type_source_google_sheets_authentication_authenticate_via_google_o_auth.go
internal/provider/type_source_google_sheets_authentication_service_account_key_authentication.go
internal/provider/type_source_google_sheets_authentication.go
internal/provider/type_source_google_sheets.go
internal/provider/type_source_google_webfonts.go
internal/provider/type_source_google_workspace_admin_reports.go
internal/provider/type_source_greenhouse.go
internal/provider/type_source_gridly.go
internal/provider/type_source_harvest_authentication_mechanism_authenticate_via_harvest_o_auth.go
internal/provider/type_source_harvest_authentication_mechanism_authenticate_with_personal_access_token.go
internal/provider/type_source_harvest_update_authentication_mechanism_authenticate_via_harvest_o_auth.go
internal/provider/type_source_harvest_update_authentication_mechanism_authenticate_with_personal_access_token.go
internal/provider/type_source_harvest_authentication_mechanism.go
internal/provider/type_source_harvest.go
internal/provider/type_source_hubplanner.go
internal/provider/type_source_hubspot_authentication_o_auth.go
internal/provider/type_source_hubspot_authentication_private_app.go
internal/provider/type_source_hubspot_authentication.go
internal/provider/type_source_hubspot.go
internal/provider/type_source_insightly.go
internal/provider/type_source_instagram.go
internal/provider/type_source_instatus.go
internal/provider/type_source_intercom.go
internal/provider/type_source_ip2whois.go
internal/provider/type_source_iterable.go
internal/provider/type_source_jira.go
internal/provider/type_source_k6_cloud.go
internal/provider/type_source_klarna.go
internal/provider/type_source_klaviyo.go
internal/provider/type_source_kustomer_singer.go
internal/provider/type_source_launchdarkly.go
internal/provider/type_source_lemlist.go
internal/provider/type_source_linkedin_ads_authentication_access_token.go
internal/provider/type_source_linkedin_ads_authentication_o_auth20.go
internal/provider/type_source_linkedin_ads_authentication.go
internal/provider/type_source_linkedin_ads.go
internal/provider/type_source_linkedin_pages_authentication.go
internal/provider/type_source_linkedin_pages.go
internal/provider/type_source_linnworks.go
internal/provider/type_source_lokalise.go
internal/provider/type_source_mailchimp_authentication_api_key.go
internal/provider/type_source_mailchimp_authentication_o_auth20.go
internal/provider/type_source_mailchimp_authentication.go
internal/provider/type_source_mailchimp.go
internal/provider/type_source_mailgun.go
internal/provider/type_source_mailjet_sms.go
internal/provider/type_source_marketo.go
internal/provider/type_source_metabase.go
internal/provider/type_source_microsoft_teams_authentication_mechanism_authenticate_via_microsoft.go
internal/provider/type_source_microsoft_teams_authentication_mechanism_authenticate_via_microsoft_o_auth20.go
internal/provider/type_source_microsoft_teams_authentication_mechanism.go
internal/provider/type_source_microsoft_teams.go
internal/provider/type_source_mixpanel_authentication_wildcard_project_secret.go
internal/provider/type_source_mixpanel_authentication_wildcard_service_account.go
internal/provider/type_source_mixpanel_authentication_wildcard.go
internal/provider/type_source_mixpanel.go
internal/provider/type_source_monday_authorization_method_api_token.go
internal/provider/type_source_monday_authorization_method_o_auth20.go
internal/provider/type_source_monday_authorization_method.go
internal/provider/type_source_monday.go
internal/provider/type_source_mongodb_mongo_db_instance_type_mongo_db_atlas.go
internal/provider/type_source_mongodb_mongo_db_instance_type_replica_set.go
internal/provider/type_source_mongodb_mongo_db_instance_type_standalone_mongo_db_instance.go
internal/provider/type_source_mongodb_mongo_db_instance_type.go
internal/provider/type_source_mongodb.go
internal/provider/type_source_mssql_replication_method_logical_replication_cdc.go
internal/provider/type_source_mssql_replication_method_standard.go
internal/provider/type_source_mssql_replication_method.go
internal/provider/type_source_mssql_ssl_method.go
internal/provider/type_source_mssql_ssh_tunnel_method.go
internal/provider/type_source_mssql.go
internal/provider/type_source_my_hours.go
internal/provider/type_source_mysql_replication_method_logical_replication_cdc.go
internal/provider/type_source_mysql_replication_method.go
internal/provider/type_source_mysql_ssl_modes_preferred.go
internal/provider/type_source_mysql_ssl_modes_required.go
internal/provider/type_source_mysql_ssl_modes_verify_ca.go
internal/provider/type_source_mysql_ssl_modes_verify_identity.go
internal/provider/type_source_mysql_ssl_modes.go
internal/provider/type_source_mysql_ssh_tunnel_method.go
internal/provider/type_source_mysql.go
internal/provider/type_source_netsuite.go
internal/provider/type_source_notion_authenticate_using_access_token.go
internal/provider/type_source_notion_authenticate_using_o_auth20.go
internal/provider/type_source_notion_authenticate_using.go
internal/provider/type_source_notion.go
internal/provider/type_source_nytimes.go
internal/provider/type_source_okta_authorization_method_o_auth20.go
internal/provider/type_source_okta_authorization_method.go
internal/provider/type_source_okta.go
internal/provider/type_source_omnisend.go
internal/provider/type_source_onesignal_applications.go
internal/provider/type_source_onesignal.go
internal/provider/type_source_openweather.go
internal/provider/type_source_oracle_connect_by_service_name.go
internal/provider/type_source_oracle_connect_by_system_idsid.go
internal/provider/type_source_oracle_connect_by.go
internal/provider/type_source_oracle_encryption_native_network_encryption_nne.go
internal/provider/type_source_oracle_encryption_tls_encrypted_verify_certificate.go
internal/provider/type_source_oracle_encryption.go
internal/provider/type_source_oracle_ssh_tunnel_method.go
internal/provider/type_source_oracle.go
internal/provider/type_source_orb.go
internal/provider/type_source_orbit.go
internal/provider/type_source_outreach.go
internal/provider/type_source_paypal_transaction.go
internal/provider/type_source_paystack.go
internal/provider/type_source_pendo.go
internal/provider/type_source_persistiq.go
internal/provider/type_source_pexels_api.go
internal/provider/type_source_pinterest_authorization_method_o_auth20.go
internal/provider/type_source_pinterest_authorization_method.go
internal/provider/type_source_pinterest.go
internal/provider/type_source_pipedrive_api_key_authentication.go
internal/provider/type_source_pipedrive.go
internal/provider/type_source_pocket.go
internal/provider/type_source_pokeapi.go
internal/provider/type_source_polygon_stock_api.go
internal/provider/type_source_postgres_replication_method_logical_replication_cdc.go
internal/provider/type_source_postgres_update_replication_method_logical_replication_cdc.go
internal/provider/type_source_postgres_replication_method.go
internal/provider/type_source_postgres_ssl_modes_allow.go
internal/provider/type_source_postgres_ssl_modes_disable.go
internal/provider/type_source_postgres_ssl_modes_prefer.go
internal/provider/type_source_postgres_ssl_modes_require.go
internal/provider/type_source_postgres_ssl_modes_verify_ca.go
internal/provider/type_source_postgres_ssl_modes_verify_full.go
internal/provider/type_source_postgres_update_ssl_modes_allow.go
internal/provider/type_source_postgres_update_ssl_modes_disable.go
internal/provider/type_source_postgres_update_ssl_modes_prefer.go
internal/provider/type_source_postgres_update_ssl_modes_require.go
internal/provider/type_source_postgres_update_ssl_modes_verify_ca.go
internal/provider/type_source_postgres_update_ssl_modes_verify_full.go
internal/provider/type_source_postgres_ssl_modes.go
internal/provider/type_source_postgres_ssh_tunnel_method.go
internal/provider/type_source_postgres.go
internal/provider/type_source_posthog.go
internal/provider/type_source_postmarkapp.go
internal/provider/type_source_prestashop.go
internal/provider/type_source_public_apis.go
internal/provider/type_source_punk_api.go
internal/provider/type_source_pypi.go
internal/provider/type_source_qualaroo.go
internal/provider/type_source_quickbooks_authorization_method_o_auth20.go
internal/provider/type_source_quickbooks_authorization_method.go
internal/provider/type_source_quickbooks.go
internal/provider/type_source_railz.go
internal/provider/type_source_recharge.go
internal/provider/type_source_recreation.go
internal/provider/type_source_recruitee.go
internal/provider/type_source_recurly.go
internal/provider/type_source_redshift.go
internal/provider/type_source_retently_authentication_mechanism_authenticate_via_retently_o_auth.go
internal/provider/type_source_retently_authentication_mechanism_authenticate_with_api_token.go
internal/provider/type_source_retently_update_authentication_mechanism_authenticate_via_retently_o_auth.go
internal/provider/type_source_retently_update_authentication_mechanism_authenticate_with_api_token.go
internal/provider/type_source_retently_authentication_mechanism.go
internal/provider/type_source_retently.go
internal/provider/type_source_rki_covid.go
internal/provider/type_source_rss.go
internal/provider/type_source_s3_file_format_avro.go
internal/provider/type_source_s3_file_format_csv.go
internal/provider/type_source_s3_file_format_jsonl.go
internal/provider/type_source_s3_file_format_parquet.go
internal/provider/type_source_s3_file_format.go
internal/provider/type_source_s3_s3_amazon_web_services.go
internal/provider/type_source_s3.go
internal/provider/type_source_salesforce_streams_criteria.go
internal/provider/type_source_salesforce.go
internal/provider/type_source_salesforce_singer.go
internal/provider/type_source_salesloft_credentials_authenticate_via_api_key.go
internal/provider/type_source_salesloft_credentials.go
internal/provider/type_source_salesloft.go
internal/provider/type_source_sap_fieldglass.go
internal/provider/type_source_secoda.go
internal/provider/type_source_sendgrid.go
internal/provider/type_source_sendinblue.go
internal/provider/type_source_senseforce.go
internal/provider/type_source_sentry.go
internal/provider/type_source_sftp_authentication_wildcard_password_authentication.go
internal/provider/type_source_sftp_authentication_wildcard_ssh_key_authentication.go
internal/provider/type_source_sftp_authentication_wildcard.go
internal/provider/type_source_sftp.go
internal/provider/type_source_sftp_bulk.go
internal/provider/type_source_shopify_shopify_authorization_method_api_password.go
internal/provider/type_source_shopify_shopify_authorization_method_o_auth20.go
internal/provider/type_source_shopify_shopify_authorization_method.go
internal/provider/type_source_shopify.go
internal/provider/type_source_shortio.go
internal/provider/type_source_slack_authentication_mechanism_api_token.go
internal/provider/type_source_slack_authentication_mechanism_sign_in_via_slack_o_auth.go
internal/provider/type_source_slack_authentication_mechanism.go
internal/provider/type_source_slack.go
internal/provider/type_source_smaily.go
internal/provider/type_source_smartengage.go
internal/provider/type_source_smartsheets_authorization_method.go
internal/provider/type_source_smartsheets.go
internal/provider/type_source_snapchat_marketing.go
internal/provider/type_source_snowflake_authorization_method_o_auth20.go
internal/provider/type_source_snowflake_authorization_method_username_and_password.go
internal/provider/type_source_snowflake_authorization_method.go
internal/provider/type_source_snowflake.go
internal/provider/type_source_sonar_cloud.go
internal/provider/type_source_spacex_api.go
internal/provider/type_source_square_authentication_api_key.go
internal/provider/type_source_square_authentication_oauth_authentication.go
internal/provider/type_source_square_authentication.go
internal/provider/type_source_square.go
internal/provider/type_source_strava.go
internal/provider/type_source_stripe.go
internal/provider/type_source_surveymonkey_survey_monkey_authorization_method.go
internal/provider/type_source_surveymonkey.go
internal/provider/type_source_survey_sparrow_base_urleu_based_account.go
internal/provider/type_source_survey_sparrow_base_url_global_account.go
internal/provider/type_source_survey_sparrow_base_url.go
internal/provider/type_source_survey_sparrow.go
internal/provider/type_source_tempo.go
internal/provider/type_source_the_guardian_api.go
internal/provider/type_source_tiktok_marketing_authentication_method_o_auth20.go
internal/provider/type_source_tiktok_marketing_authentication_method_sandbox_access_token.go
internal/provider/type_source_tiktok_marketing_authentication_method.go
internal/provider/type_source_tiktok_marketing.go
internal/provider/type_source_todoist.go
internal/provider/type_source_trello.go
internal/provider/type_source_trustpilot_authorization_method_api_key.go
internal/provider/type_source_trustpilot_authorization_method.go
internal/provider/type_source_trustpilot.go
internal/provider/type_source_tvmaze_schedule.go
internal/provider/type_source_twilio.go
internal/provider/type_source_twilio_taskrouter.go
internal/provider/type_source_twitter.go
internal/provider/type_source_typeform.go
internal/provider/type_source_us_census.go
internal/provider/type_source_vantage.go
internal/provider/type_source_webflow.go
internal/provider/type_source_whisky_hunter.go
internal/provider/type_source_wikipedia_pageviews.go
internal/provider/type_source_woocommerce.go
internal/provider/type_source_xero_authenticate_via_xero_o_auth.go
internal/provider/type_source_xero.go
internal/provider/type_source_xkcd.go
internal/provider/type_source_yandex_metrica.go
internal/provider/type_source_yotpo.go
internal/provider/type_source_younium.go
internal/provider/type_source_youtube_analytics_authenticate_via_o_auth20.go
internal/provider/type_source_youtube_analytics.go
internal/provider/type_source_zendesk_chat_authorization_method_access_token.go
internal/provider/type_source_zendesk_chat_authorization_method_o_auth20.go
internal/provider/type_source_zendesk_chat_authorization_method.go
internal/provider/type_source_zendesk_chat.go
internal/provider/type_source_zendesk_sunshine_authorization_method_api_token.go
internal/provider/type_source_zendesk_sunshine_authorization_method_o_auth20.go
internal/provider/type_source_zendesk_sunshine_authorization_method.go
internal/provider/type_source_zendesk_sunshine.go
internal/provider/type_source_zendesk_support_authentication_api_token.go
internal/provider/type_source_zendesk_support_authentication_o_auth20.go
internal/provider/type_source_zendesk_support_update_authentication_api_token.go
internal/provider/type_source_zendesk_support_update_authentication_o_auth20.go
internal/provider/type_source_zendesk_support_authentication.go
internal/provider/type_source_zendesk_support.go
internal/provider/type_source_zendesk_talk_authentication_api_token.go
internal/provider/type_source_zendesk_talk_authentication_o_auth20.go
internal/provider/type_source_zendesk_talk_update_authentication_api_token.go
internal/provider/type_source_zendesk_talk_update_authentication_o_auth20.go
internal/provider/type_source_zendesk_talk_authentication.go
internal/provider/type_source_zendesk_talk.go
internal/provider/type_source_zenloop.go
internal/provider/type_source_zoho_crm.go
internal/provider/type_source_zoom.go
internal/provider/type_source_zuora.go
examples/README.md
go.mod
go.sum
internal/planmodifiers/boolplanmodifier/suppress_diff.go
internal/planmodifiers/float64planmodifier/suppress_diff.go
internal/planmodifiers/int64planmodifier/suppress_diff.go
internal/planmodifiers/listplanmodifier/suppress_diff.go
internal/planmodifiers/mapplanmodifier/suppress_diff.go
internal/planmodifiers/numberplanmodifier/suppress_diff.go
internal/planmodifiers/objectplanmodifier/suppress_diff.go
internal/planmodifiers/setplanmodifier/suppress_diff.go
internal/planmodifiers/stringplanmodifier/suppress_diff.go
internal/planmodifiers/utils/state_check.go
internal/provider/reflect/diags.go
internal/provider/reflect/doc.go
internal/provider/reflect/generic_attr_value.go
internal/provider/reflect/helpers.go
internal/provider/reflect/interfaces.go
internal/provider/reflect/into.go
internal/provider/reflect/map.go
internal/provider/reflect/number.go
internal/provider/reflect/options.go
internal/provider/reflect/outof.go
internal/provider/reflect/pointer.go
internal/provider/reflect/primitive.go
internal/provider/reflect/slice.go
internal/provider/reflect/struct.go
internal/provider/utils.go
internal/sdk/pkg/types/bigint.go
internal/sdk/pkg/types/date.go
internal/sdk/pkg/types/datetime.go
internal/sdk/pkg/utils/contenttype.go
internal/sdk/pkg/utils/form.go
internal/sdk/pkg/utils/headers.go
internal/sdk/pkg/utils/pathparams.go
internal/sdk/pkg/utils/queryparams.go
internal/sdk/pkg/utils/requestbody.go
internal/sdk/pkg/utils/retries.go
internal/sdk/pkg/utils/security.go
internal/sdk/pkg/utils/utils.go
internal/validators/DateValidator.go
internal/validators/ExactlyOneChild.go
internal/validators/JSONParseValidator.go
internal/validators/RFC3339Validator.go
main.go
terraform-registry-manifest.json
tools/tools.go
internal/sdk/pkg/models/operations/createconnection.go
internal/sdk/pkg/models/operations/deleteconnection.go
internal/sdk/pkg/models/operations/getconnection.go
internal/sdk/pkg/models/operations/listconnections.go
internal/sdk/pkg/models/operations/patchconnection.go
internal/sdk/pkg/models/operations/createdestination.go
internal/sdk/pkg/models/operations/createdestinationamazonsqs.go
internal/sdk/pkg/models/operations/createdestinationawsdatalake.go
internal/sdk/pkg/models/operations/createdestinationazureblobstorage.go
internal/sdk/pkg/models/operations/createdestinationbigquery.go
internal/sdk/pkg/models/operations/createdestinationbigquerydenormalized.go
internal/sdk/pkg/models/operations/createdestinationcassandra.go
internal/sdk/pkg/models/operations/createdestinationclickhouse.go
internal/sdk/pkg/models/operations/createdestinationconvex.go
internal/sdk/pkg/models/operations/createdestinationcumulio.go
internal/sdk/pkg/models/operations/createdestinationdatabend.go
internal/sdk/pkg/models/operations/createdestinationdatabricks.go
internal/sdk/pkg/models/operations/createdestinationdevnull.go
internal/sdk/pkg/models/operations/createdestinationdynamodb.go
internal/sdk/pkg/models/operations/createdestinationelasticsearch.go
internal/sdk/pkg/models/operations/createdestinationfirebolt.go
internal/sdk/pkg/models/operations/createdestinationfirestore.go
internal/sdk/pkg/models/operations/createdestinationgcs.go
internal/sdk/pkg/models/operations/createdestinationgooglesheets.go
internal/sdk/pkg/models/operations/createdestinationkeen.go
internal/sdk/pkg/models/operations/createdestinationkinesis.go
internal/sdk/pkg/models/operations/createdestinationmariadbcolumnstore.go
internal/sdk/pkg/models/operations/createdestinationmeilisearch.go
internal/sdk/pkg/models/operations/createdestinationmongodb.go
internal/sdk/pkg/models/operations/createdestinationmssql.go
internal/sdk/pkg/models/operations/createdestinationmysql.go
internal/sdk/pkg/models/operations/createdestinationoracle.go
internal/sdk/pkg/models/operations/createdestinationpostgres.go
internal/sdk/pkg/models/operations/createdestinationpubsub.go
internal/sdk/pkg/models/operations/createdestinationpulsar.go
internal/sdk/pkg/models/operations/createdestinationrabbitmq.go
internal/sdk/pkg/models/operations/createdestinationredis.go
internal/sdk/pkg/models/operations/createdestinationredshift.go
internal/sdk/pkg/models/operations/createdestinationrockset.go
internal/sdk/pkg/models/operations/createdestinations3.go
internal/sdk/pkg/models/operations/createdestinations3glue.go
internal/sdk/pkg/models/operations/createdestinationscylla.go
internal/sdk/pkg/models/operations/createdestinationsftpjson.go
internal/sdk/pkg/models/operations/createdestinationsnowflake.go
internal/sdk/pkg/models/operations/createdestinationtypesense.go
internal/sdk/pkg/models/operations/createdestinationvertica.go
internal/sdk/pkg/models/operations/deletedestination.go
internal/sdk/pkg/models/operations/deletedestinationamazonsqs.go
internal/sdk/pkg/models/operations/deletedestinationawsdatalake.go
internal/sdk/pkg/models/operations/deletedestinationazureblobstorage.go
internal/sdk/pkg/models/operations/deletedestinationbigquery.go
internal/sdk/pkg/models/operations/deletedestinationbigquerydenormalized.go
internal/sdk/pkg/models/operations/deletedestinationcassandra.go
internal/sdk/pkg/models/operations/deletedestinationclickhouse.go
internal/sdk/pkg/models/operations/deletedestinationconvex.go
internal/sdk/pkg/models/operations/deletedestinationcumulio.go
internal/sdk/pkg/models/operations/deletedestinationdatabend.go
internal/sdk/pkg/models/operations/deletedestinationdatabricks.go
internal/sdk/pkg/models/operations/deletedestinationdevnull.go
internal/sdk/pkg/models/operations/deletedestinationdynamodb.go
internal/sdk/pkg/models/operations/deletedestinationelasticsearch.go
internal/sdk/pkg/models/operations/deletedestinationfirebolt.go
internal/sdk/pkg/models/operations/deletedestinationfirestore.go
internal/sdk/pkg/models/operations/deletedestinationgcs.go
internal/sdk/pkg/models/operations/deletedestinationgooglesheets.go
internal/sdk/pkg/models/operations/deletedestinationkeen.go
internal/sdk/pkg/models/operations/deletedestinationkinesis.go
internal/sdk/pkg/models/operations/deletedestinationmariadbcolumnstore.go
internal/sdk/pkg/models/operations/deletedestinationmeilisearch.go
internal/sdk/pkg/models/operations/deletedestinationmongodb.go
internal/sdk/pkg/models/operations/deletedestinationmssql.go
internal/sdk/pkg/models/operations/deletedestinationmysql.go
internal/sdk/pkg/models/operations/deletedestinationoracle.go
internal/sdk/pkg/models/operations/deletedestinationpostgres.go
internal/sdk/pkg/models/operations/deletedestinationpubsub.go
internal/sdk/pkg/models/operations/deletedestinationpulsar.go
internal/sdk/pkg/models/operations/deletedestinationrabbitmq.go
internal/sdk/pkg/models/operations/deletedestinationredis.go
internal/sdk/pkg/models/operations/deletedestinationredshift.go
internal/sdk/pkg/models/operations/deletedestinationrockset.go
internal/sdk/pkg/models/operations/deletedestinations3.go
internal/sdk/pkg/models/operations/deletedestinations3glue.go
internal/sdk/pkg/models/operations/deletedestinationscylla.go
internal/sdk/pkg/models/operations/deletedestinationsftpjson.go
internal/sdk/pkg/models/operations/deletedestinationsnowflake.go
internal/sdk/pkg/models/operations/deletedestinationtypesense.go
internal/sdk/pkg/models/operations/deletedestinationvertica.go
internal/sdk/pkg/models/operations/getdestination.go
internal/sdk/pkg/models/operations/getdestinationamazonsqs.go
internal/sdk/pkg/models/operations/getdestinationawsdatalake.go
internal/sdk/pkg/models/operations/getdestinationazureblobstorage.go
internal/sdk/pkg/models/operations/getdestinationbigquery.go
internal/sdk/pkg/models/operations/getdestinationbigquerydenormalized.go
internal/sdk/pkg/models/operations/getdestinationcassandra.go
internal/sdk/pkg/models/operations/getdestinationclickhouse.go
internal/sdk/pkg/models/operations/getdestinationconvex.go
internal/sdk/pkg/models/operations/getdestinationcumulio.go
internal/sdk/pkg/models/operations/getdestinationdatabend.go
internal/sdk/pkg/models/operations/getdestinationdatabricks.go
internal/sdk/pkg/models/operations/getdestinationdevnull.go
internal/sdk/pkg/models/operations/getdestinationdynamodb.go
internal/sdk/pkg/models/operations/getdestinationelasticsearch.go
internal/sdk/pkg/models/operations/getdestinationfirebolt.go
internal/sdk/pkg/models/operations/getdestinationfirestore.go
internal/sdk/pkg/models/operations/getdestinationgcs.go
internal/sdk/pkg/models/operations/getdestinationgooglesheets.go
internal/sdk/pkg/models/operations/getdestinationkeen.go
internal/sdk/pkg/models/operations/getdestinationkinesis.go
internal/sdk/pkg/models/operations/getdestinationmariadbcolumnstore.go
internal/sdk/pkg/models/operations/getdestinationmeilisearch.go
internal/sdk/pkg/models/operations/getdestinationmongodb.go
internal/sdk/pkg/models/operations/getdestinationmssql.go
internal/sdk/pkg/models/operations/getdestinationmysql.go
internal/sdk/pkg/models/operations/getdestinationoracle.go
internal/sdk/pkg/models/operations/getdestinationpostgres.go
internal/sdk/pkg/models/operations/getdestinationpubsub.go
internal/sdk/pkg/models/operations/getdestinationpulsar.go
internal/sdk/pkg/models/operations/getdestinationrabbitmq.go
internal/sdk/pkg/models/operations/getdestinationredis.go
internal/sdk/pkg/models/operations/getdestinationredshift.go
internal/sdk/pkg/models/operations/getdestinationrockset.go
internal/sdk/pkg/models/operations/getdestinations3.go
internal/sdk/pkg/models/operations/getdestinations3glue.go
internal/sdk/pkg/models/operations/getdestinationscylla.go
internal/sdk/pkg/models/operations/getdestinationsftpjson.go
internal/sdk/pkg/models/operations/getdestinationsnowflake.go
internal/sdk/pkg/models/operations/getdestinationtypesense.go
internal/sdk/pkg/models/operations/getdestinationvertica.go
internal/sdk/pkg/models/operations/listdestinations.go
internal/sdk/pkg/models/operations/patchdestination.go
internal/sdk/pkg/models/operations/putdestination.go
internal/sdk/pkg/models/operations/putdestinationamazonsqs.go
internal/sdk/pkg/models/operations/putdestinationawsdatalake.go
internal/sdk/pkg/models/operations/putdestinationazureblobstorage.go
internal/sdk/pkg/models/operations/putdestinationbigquery.go
internal/sdk/pkg/models/operations/putdestinationbigquerydenormalized.go
internal/sdk/pkg/models/operations/putdestinationcassandra.go
internal/sdk/pkg/models/operations/putdestinationclickhouse.go
internal/sdk/pkg/models/operations/putdestinationconvex.go
internal/sdk/pkg/models/operations/putdestinationcumulio.go
internal/sdk/pkg/models/operations/putdestinationdatabend.go
internal/sdk/pkg/models/operations/putdestinationdatabricks.go
internal/sdk/pkg/models/operations/putdestinationdevnull.go
internal/sdk/pkg/models/operations/putdestinationdynamodb.go
internal/sdk/pkg/models/operations/putdestinationelasticsearch.go
internal/sdk/pkg/models/operations/putdestinationfirebolt.go
internal/sdk/pkg/models/operations/putdestinationfirestore.go
internal/sdk/pkg/models/operations/putdestinationgcs.go
internal/sdk/pkg/models/operations/putdestinationgooglesheets.go
internal/sdk/pkg/models/operations/putdestinationkeen.go
internal/sdk/pkg/models/operations/putdestinationkinesis.go
internal/sdk/pkg/models/operations/putdestinationmariadbcolumnstore.go
internal/sdk/pkg/models/operations/putdestinationmeilisearch.go
internal/sdk/pkg/models/operations/putdestinationmongodb.go
internal/sdk/pkg/models/operations/putdestinationmssql.go
internal/sdk/pkg/models/operations/putdestinationmysql.go
internal/sdk/pkg/models/operations/putdestinationoracle.go
internal/sdk/pkg/models/operations/putdestinationpostgres.go
internal/sdk/pkg/models/operations/putdestinationpubsub.go
internal/sdk/pkg/models/operations/putdestinationpulsar.go
internal/sdk/pkg/models/operations/putdestinationrabbitmq.go
internal/sdk/pkg/models/operations/putdestinationredis.go
internal/sdk/pkg/models/operations/putdestinationredshift.go
internal/sdk/pkg/models/operations/putdestinationrockset.go
internal/sdk/pkg/models/operations/putdestinations3.go
internal/sdk/pkg/models/operations/putdestinations3glue.go
internal/sdk/pkg/models/operations/putdestinationscylla.go
internal/sdk/pkg/models/operations/putdestinationsftpjson.go
internal/sdk/pkg/models/operations/putdestinationsnowflake.go
internal/sdk/pkg/models/operations/putdestinationtypesense.go
internal/sdk/pkg/models/operations/putdestinationvertica.go
internal/sdk/pkg/models/operations/canceljob.go
internal/sdk/pkg/models/operations/createjob.go
internal/sdk/pkg/models/operations/getjob.go
internal/sdk/pkg/models/operations/listjobs.go
internal/sdk/pkg/models/operations/createsource.go
internal/sdk/pkg/models/operations/createsourceaircall.go
internal/sdk/pkg/models/operations/createsourceairtable.go
internal/sdk/pkg/models/operations/createsourcealloydb.go
internal/sdk/pkg/models/operations/createsourceamazonads.go
internal/sdk/pkg/models/operations/createsourceamazonsqs.go
internal/sdk/pkg/models/operations/createsourceamplitude.go
internal/sdk/pkg/models/operations/createsourceapifydataset.go
internal/sdk/pkg/models/operations/createsourceasana.go
internal/sdk/pkg/models/operations/createsourceauth0.go
internal/sdk/pkg/models/operations/createsourceawscloudtrail.go
internal/sdk/pkg/models/operations/createsourceazureblobstorage.go
internal/sdk/pkg/models/operations/createsourceazuretable.go
internal/sdk/pkg/models/operations/createsourcebamboohr.go
internal/sdk/pkg/models/operations/createsourcebigcommerce.go
internal/sdk/pkg/models/operations/createsourcebigquery.go
internal/sdk/pkg/models/operations/createsourcebingads.go
internal/sdk/pkg/models/operations/createsourcebraintree.go
internal/sdk/pkg/models/operations/createsourcebraze.go
internal/sdk/pkg/models/operations/createsourcechargebee.go
internal/sdk/pkg/models/operations/createsourcechartmogul.go
internal/sdk/pkg/models/operations/createsourceclickhouse.go
internal/sdk/pkg/models/operations/createsourceclickupapi.go
internal/sdk/pkg/models/operations/createsourceclosecom.go
internal/sdk/pkg/models/operations/createsourcecoda.go
internal/sdk/pkg/models/operations/createsourcecoinapi.go
internal/sdk/pkg/models/operations/createsourcecoinmarketcap.go
internal/sdk/pkg/models/operations/createsourceconfigcat.go
internal/sdk/pkg/models/operations/createsourceconfluence.go
internal/sdk/pkg/models/operations/createsourcedatascope.go
internal/sdk/pkg/models/operations/createsourcedelighted.go
internal/sdk/pkg/models/operations/createsourcedixa.go
internal/sdk/pkg/models/operations/createsourcedockerhub.go
internal/sdk/pkg/models/operations/createsourcedremio.go
internal/sdk/pkg/models/operations/createsourcedynamodb.go
internal/sdk/pkg/models/operations/createsourcee2etestcloud.go
internal/sdk/pkg/models/operations/createsourceemailoctopus.go
internal/sdk/pkg/models/operations/createsourceexchangerates.go
internal/sdk/pkg/models/operations/createsourcefacebookmarketing.go
internal/sdk/pkg/models/operations/createsourcefacebookpages.go
internal/sdk/pkg/models/operations/createsourcefaker.go
internal/sdk/pkg/models/operations/createsourcefauna.go
internal/sdk/pkg/models/operations/createsourcefilesecure.go
internal/sdk/pkg/models/operations/createsourcefirebolt.go
internal/sdk/pkg/models/operations/createsourcefreshcaller.go
internal/sdk/pkg/models/operations/createsourcefreshdesk.go
internal/sdk/pkg/models/operations/createsourcefreshsales.go
internal/sdk/pkg/models/operations/createsourcefreshservice.go
internal/sdk/pkg/models/operations/createsourcegcs.go
internal/sdk/pkg/models/operations/createsourcegetlago.go
internal/sdk/pkg/models/operations/createsourcegithub.go
internal/sdk/pkg/models/operations/createsourcegitlab.go
internal/sdk/pkg/models/operations/createsourceglassfrog.go
internal/sdk/pkg/models/operations/createsourcegnews.go
internal/sdk/pkg/models/operations/createsourcegoogleads.go
internal/sdk/pkg/models/operations/createsourcegoogleanalyticsdataapi.go
internal/sdk/pkg/models/operations/createsourcegoogleanalyticsv4.go
internal/sdk/pkg/models/operations/createsourcegoogledirectory.go
internal/sdk/pkg/models/operations/createsourcegooglepagespeedinsights.go
internal/sdk/pkg/models/operations/createsourcegooglesearchconsole.go
internal/sdk/pkg/models/operations/createsourcegooglesheets.go
internal/sdk/pkg/models/operations/createsourcegooglewebfonts.go
internal/sdk/pkg/models/operations/createsourcegoogleworkspaceadminreports.go
internal/sdk/pkg/models/operations/createsourcegreenhouse.go
internal/sdk/pkg/models/operations/createsourcegridly.go
internal/sdk/pkg/models/operations/createsourceharvest.go
internal/sdk/pkg/models/operations/createsourcehubplanner.go
internal/sdk/pkg/models/operations/createsourcehubspot.go
internal/sdk/pkg/models/operations/createsourceinsightly.go
internal/sdk/pkg/models/operations/createsourceinstagram.go
internal/sdk/pkg/models/operations/createsourceinstatus.go
internal/sdk/pkg/models/operations/createsourceintercom.go
internal/sdk/pkg/models/operations/createsourceip2whois.go
internal/sdk/pkg/models/operations/createsourceiterable.go
internal/sdk/pkg/models/operations/createsourcejira.go
internal/sdk/pkg/models/operations/createsourcek6cloud.go
internal/sdk/pkg/models/operations/createsourceklarna.go
internal/sdk/pkg/models/operations/createsourceklaviyo.go
internal/sdk/pkg/models/operations/createsourcekustomersinger.go
internal/sdk/pkg/models/operations/createsourcelaunchdarkly.go
internal/sdk/pkg/models/operations/createsourcelemlist.go
internal/sdk/pkg/models/operations/createsourcelinkedinads.go
internal/sdk/pkg/models/operations/createsourcelinkedinpages.go
internal/sdk/pkg/models/operations/createsourcelinnworks.go
internal/sdk/pkg/models/operations/createsourcelokalise.go
internal/sdk/pkg/models/operations/createsourcemailchimp.go
internal/sdk/pkg/models/operations/createsourcemailgun.go
internal/sdk/pkg/models/operations/createsourcemailjetsms.go
internal/sdk/pkg/models/operations/createsourcemarketo.go
internal/sdk/pkg/models/operations/createsourcemetabase.go
internal/sdk/pkg/models/operations/createsourcemicrosoftteams.go
internal/sdk/pkg/models/operations/createsourcemixpanel.go
internal/sdk/pkg/models/operations/createsourcemonday.go
internal/sdk/pkg/models/operations/createsourcemongodb.go
internal/sdk/pkg/models/operations/createsourcemssql.go
internal/sdk/pkg/models/operations/createsourcemyhours.go
internal/sdk/pkg/models/operations/createsourcemysql.go
internal/sdk/pkg/models/operations/createsourcenetsuite.go
internal/sdk/pkg/models/operations/createsourcenotion.go
internal/sdk/pkg/models/operations/createsourcenytimes.go
internal/sdk/pkg/models/operations/createsourceokta.go
internal/sdk/pkg/models/operations/createsourceomnisend.go
internal/sdk/pkg/models/operations/createsourceonesignal.go
internal/sdk/pkg/models/operations/createsourceopenweather.go
internal/sdk/pkg/models/operations/createsourceoracle.go
internal/sdk/pkg/models/operations/createsourceorb.go
internal/sdk/pkg/models/operations/createsourceorbit.go
internal/sdk/pkg/models/operations/createsourceoutreach.go
internal/sdk/pkg/models/operations/createsourcepaypaltransaction.go
internal/sdk/pkg/models/operations/createsourcepaystack.go
internal/sdk/pkg/models/operations/createsourcependo.go
internal/sdk/pkg/models/operations/createsourcepersistiq.go
internal/sdk/pkg/models/operations/createsourcepexelsapi.go
internal/sdk/pkg/models/operations/createsourcepinterest.go
internal/sdk/pkg/models/operations/createsourcepipedrive.go
internal/sdk/pkg/models/operations/createsourcepocket.go
internal/sdk/pkg/models/operations/createsourcepokeapi.go
internal/sdk/pkg/models/operations/createsourcepolygonstockapi.go
internal/sdk/pkg/models/operations/createsourcepostgres.go
internal/sdk/pkg/models/operations/createsourceposthog.go
internal/sdk/pkg/models/operations/createsourcepostmarkapp.go
internal/sdk/pkg/models/operations/createsourceprestashop.go
internal/sdk/pkg/models/operations/createsourcepublicapis.go
internal/sdk/pkg/models/operations/createsourcepunkapi.go
internal/sdk/pkg/models/operations/createsourcepypi.go
internal/sdk/pkg/models/operations/createsourcequalaroo.go
internal/sdk/pkg/models/operations/createsourcequickbooks.go
internal/sdk/pkg/models/operations/createsourcerailz.go
internal/sdk/pkg/models/operations/createsourcerecharge.go
internal/sdk/pkg/models/operations/createsourcerecreation.go
internal/sdk/pkg/models/operations/createsourcerecruitee.go
internal/sdk/pkg/models/operations/createsourcerecurly.go
internal/sdk/pkg/models/operations/createsourceredshift.go
internal/sdk/pkg/models/operations/createsourceretently.go
internal/sdk/pkg/models/operations/createsourcerkicovid.go
internal/sdk/pkg/models/operations/createsourcerss.go
internal/sdk/pkg/models/operations/createsources3.go
internal/sdk/pkg/models/operations/createsourcesalesforce.go
internal/sdk/pkg/models/operations/createsourcesalesforcesinger.go
internal/sdk/pkg/models/operations/createsourcesalesloft.go
internal/sdk/pkg/models/operations/createsourcesapfieldglass.go
internal/sdk/pkg/models/operations/createsourcesecoda.go
internal/sdk/pkg/models/operations/createsourcesendgrid.go
internal/sdk/pkg/models/operations/createsourcesendinblue.go
internal/sdk/pkg/models/operations/createsourcesenseforce.go
internal/sdk/pkg/models/operations/createsourcesentry.go
internal/sdk/pkg/models/operations/createsourcesftp.go
internal/sdk/pkg/models/operations/createsourcesftpbulk.go
internal/sdk/pkg/models/operations/createsourceshopify.go
internal/sdk/pkg/models/operations/createsourceshortio.go
internal/sdk/pkg/models/operations/createsourceslack.go
internal/sdk/pkg/models/operations/createsourcesmaily.go
internal/sdk/pkg/models/operations/createsourcesmartengage.go
internal/sdk/pkg/models/operations/createsourcesmartsheets.go
internal/sdk/pkg/models/operations/createsourcesnapchatmarketing.go
internal/sdk/pkg/models/operations/createsourcesnowflake.go
internal/sdk/pkg/models/operations/createsourcesonarcloud.go
internal/sdk/pkg/models/operations/createsourcespacexapi.go
internal/sdk/pkg/models/operations/createsourcesquare.go
internal/sdk/pkg/models/operations/createsourcestrava.go
internal/sdk/pkg/models/operations/createsourcestripe.go
internal/sdk/pkg/models/operations/createsourcesurveysparrow.go
internal/sdk/pkg/models/operations/createsourcesurveymonkey.go
internal/sdk/pkg/models/operations/createsourcetempo.go
internal/sdk/pkg/models/operations/createsourcetheguardianapi.go
internal/sdk/pkg/models/operations/createsourcetiktokmarketing.go
internal/sdk/pkg/models/operations/createsourcetodoist.go
internal/sdk/pkg/models/operations/createsourcetrello.go
internal/sdk/pkg/models/operations/createsourcetrustpilot.go
internal/sdk/pkg/models/operations/createsourcetvmazeschedule.go
internal/sdk/pkg/models/operations/createsourcetwilio.go
internal/sdk/pkg/models/operations/createsourcetwiliotaskrouter.go
internal/sdk/pkg/models/operations/createsourcetwitter.go
internal/sdk/pkg/models/operations/createsourcetypeform.go
internal/sdk/pkg/models/operations/createsourceuscensus.go
internal/sdk/pkg/models/operations/createsourcevantage.go
internal/sdk/pkg/models/operations/createsourcewebflow.go
internal/sdk/pkg/models/operations/createsourcewhiskyhunter.go
internal/sdk/pkg/models/operations/createsourcewikipediapageviews.go
internal/sdk/pkg/models/operations/createsourcewoocommerce.go
internal/sdk/pkg/models/operations/createsourcexero.go
internal/sdk/pkg/models/operations/createsourcexkcd.go
internal/sdk/pkg/models/operations/createsourceyandexmetrica.go
internal/sdk/pkg/models/operations/createsourceyotpo.go
internal/sdk/pkg/models/operations/createsourceyounium.go
internal/sdk/pkg/models/operations/createsourceyoutubeanalytics.go
internal/sdk/pkg/models/operations/createsourcezendeskchat.go
internal/sdk/pkg/models/operations/createsourcezendesksunshine.go
internal/sdk/pkg/models/operations/createsourcezendesksupport.go
internal/sdk/pkg/models/operations/createsourcezendesktalk.go
internal/sdk/pkg/models/operations/createsourcezenloop.go
internal/sdk/pkg/models/operations/createsourcezohocrm.go
internal/sdk/pkg/models/operations/createsourcezoom.go
internal/sdk/pkg/models/operations/createsourcezuora.go
internal/sdk/pkg/models/operations/deletesource.go
internal/sdk/pkg/models/operations/deletesourceaircall.go
internal/sdk/pkg/models/operations/deletesourceairtable.go
internal/sdk/pkg/models/operations/deletesourcealloydb.go
internal/sdk/pkg/models/operations/deletesourceamazonads.go
internal/sdk/pkg/models/operations/deletesourceamazonsqs.go
internal/sdk/pkg/models/operations/deletesourceamplitude.go
internal/sdk/pkg/models/operations/deletesourceapifydataset.go
internal/sdk/pkg/models/operations/deletesourceasana.go
internal/sdk/pkg/models/operations/deletesourceauth0.go
internal/sdk/pkg/models/operations/deletesourceawscloudtrail.go
internal/sdk/pkg/models/operations/deletesourceazureblobstorage.go
internal/sdk/pkg/models/operations/deletesourceazuretable.go
internal/sdk/pkg/models/operations/deletesourcebamboohr.go