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
open Awso_glue
open Awso_sync
module Io = Http.Io
let eval ?endpoint_url ?cfg endpoint input =
Io.bind (Io.resolve_cfg cfg)
(fun cfg ->
let meth = Endpoints.method_of_endpoint endpoint in
let uri = Endpoints.uri_of_endpoint endpoint input in
Io.map
(Io.call ?endpoint_url ~cfg ~service:Values.service meth
(Endpoints.to_request endpoint input) uri)
(fun resp_result -> Endpoints.of_response endpoint resp_result))
let batch_create_partition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchCreatePartition input
let batch_delete_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDeleteConnection input
let batch_delete_partition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDeletePartition input
let batch_delete_table ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDeleteTable input
let batch_delete_table_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDeleteTableVersion input
let batch_get_blueprints ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetBlueprints input
let batch_get_crawlers ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetCrawlers input
let batch_get_custom_entity_types ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetCustomEntityTypes input
let batch_get_data_quality_result ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetDataQualityResult input
let batch_get_dev_endpoints ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetDevEndpoints input
let batch_get_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetJobs input
let batch_get_partition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetPartition input
let batch_get_table_optimizer ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetTableOptimizer input
let batch_get_triggers ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetTriggers input
let batch_get_workflows ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetWorkflows input
let batch_put_data_quality_statistic_annotation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchPutDataQualityStatisticAnnotation
input
let batch_stop_job_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchStopJobRun input
let batch_update_partition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchUpdatePartition input
let cancel_data_quality_rule_recommendation_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelDataQualityRuleRecommendationRun
input
let cancel_data_quality_ruleset_evaluation_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelDataQualityRulesetEvaluationRun
input
let cancel_m_l_task_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelMLTaskRun input
let cancel_statement ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelStatement input
let check_schema_version_validity ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CheckSchemaVersionValidity input
let create_blueprint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateBlueprint input
let create_catalog ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateCatalog input
let create_classifier ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateClassifier input
let create_column_statistics_task_settings ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateColumnStatisticsTaskSettings input
let create_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateConnection input
let create_crawler ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateCrawler input
let create_custom_entity_type ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateCustomEntityType input
let create_data_quality_ruleset ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDataQualityRuleset input
let create_database ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDatabase input
let create_dev_endpoint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDevEndpoint input
let create_glue_identity_center_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateGlueIdentityCenterConfiguration
input
let create_integration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateIntegration input
let create_integration_resource_property ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateIntegrationResourceProperty input
let create_integration_table_properties ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateIntegrationTableProperties input
let create_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateJob input
let create_m_l_transform ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateMLTransform input
let create_partition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreatePartition input
let create_partition_index ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreatePartitionIndex input
let create_registry ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateRegistry input
let create_schema ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateSchema input
let create_script ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateScript input
let create_security_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateSecurityConfiguration input
let create_session ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateSession input
let create_table ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTable input
let create_table_optimizer ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTableOptimizer input
let create_trigger ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTrigger input
let create_usage_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateUsageProfile input
let create_user_defined_function ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateUserDefinedFunction input
let create_workflow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateWorkflow input
let delete_blueprint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteBlueprint input
let delete_catalog ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteCatalog input
let delete_classifier ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteClassifier input
let delete_column_statistics_for_partition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteColumnStatisticsForPartition input
let delete_column_statistics_for_table ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteColumnStatisticsForTable input
let delete_column_statistics_task_settings ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteColumnStatisticsTaskSettings input
let delete_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteConnection input
let delete_connection_type ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteConnectionType input
let delete_crawler ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteCrawler input
let delete_custom_entity_type ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteCustomEntityType input
let delete_data_quality_ruleset ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDataQualityRuleset input
let delete_database ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDatabase input
let delete_dev_endpoint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDevEndpoint input
let delete_glue_identity_center_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteGlueIdentityCenterConfiguration
input
let delete_integration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteIntegration input
let delete_integration_resource_property ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteIntegrationResourceProperty input
let delete_integration_table_properties ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteIntegrationTableProperties input
let delete_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteJob input
let delete_m_l_transform ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteMLTransform input
let delete_partition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeletePartition input
let delete_partition_index ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeletePartitionIndex input
let delete_registry ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteRegistry input
let delete_resource_policy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteResourcePolicy input
let delete_schema ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteSchema input
let delete_schema_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteSchemaVersions input
let delete_security_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteSecurityConfiguration input
let delete_session ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteSession input
let delete_table ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTable input
let delete_table_optimizer ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTableOptimizer input
let delete_table_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTableVersion input
let delete_trigger ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTrigger input
let delete_usage_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteUsageProfile input
let delete_user_defined_function ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteUserDefinedFunction input
let delete_workflow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteWorkflow input
let describe_connection_type ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeConnectionType input
let describe_entity ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeEntity input
let describe_inbound_integrations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeInboundIntegrations input
let describe_integrations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeIntegrations input
let get_blueprint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetBlueprint input
let get_blueprint_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetBlueprintRun input
let get_blueprint_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetBlueprintRuns input
let get_catalog ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCatalog input
let get_catalog_import_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCatalogImportStatus input
let get_catalogs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCatalogs input
let get_classifier ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetClassifier input
let get_classifiers ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetClassifiers input
let get_column_statistics_for_partition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetColumnStatisticsForPartition input
let get_column_statistics_for_table ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetColumnStatisticsForTable input
let get_column_statistics_task_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetColumnStatisticsTaskRun input
let get_column_statistics_task_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetColumnStatisticsTaskRuns input
let get_column_statistics_task_settings ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetColumnStatisticsTaskSettings input
let get_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetConnection input
let get_connections ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetConnections input
let get_crawler ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCrawler input
let get_crawler_metrics ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCrawlerMetrics input
let get_crawlers ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCrawlers input
let get_custom_entity_type ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCustomEntityType input
let get_data_catalog_encryption_settings ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataCatalogEncryptionSettings input
let get_data_quality_model ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataQualityModel input
let get_data_quality_model_result ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataQualityModelResult input
let get_data_quality_result ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataQualityResult input
let get_data_quality_rule_recommendation_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataQualityRuleRecommendationRun input
let get_data_quality_ruleset ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataQualityRuleset input
let get_data_quality_ruleset_evaluation_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataQualityRulesetEvaluationRun input
let get_database ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDatabase input
let get_databases ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDatabases input
let get_dataflow_graph ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataflowGraph input
let get_dev_endpoint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDevEndpoint input
let get_dev_endpoints ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDevEndpoints input
let get_entity_records ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetEntityRecords input
let get_glue_identity_center_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetGlueIdentityCenterConfiguration input
let get_integration_resource_property ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetIntegrationResourceProperty input
let get_integration_table_properties ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetIntegrationTableProperties input
let get_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetJob input
let get_job_bookmark ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetJobBookmark input
let get_job_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetJobRun input
let get_job_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetJobRuns input
let get_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetJobs input
let get_m_l_task_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetMLTaskRun input
let get_m_l_task_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetMLTaskRuns input
let get_m_l_transform ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetMLTransform input
let get_m_l_transforms ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetMLTransforms input
let get_mapping ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetMapping input
let get_materialized_view_refresh_task_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetMaterializedViewRefreshTaskRun input
let get_partition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetPartition input
let get_partition_indexes ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetPartitionIndexes input
let get_partitions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetPartitions input
let get_plan ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetPlan input
let get_registry ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetRegistry input
let get_resource_policies ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetResourcePolicies input
let get_resource_policy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetResourcePolicy input
let get_schema ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSchema input
let get_schema_by_definition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSchemaByDefinition input
let get_schema_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSchemaVersion input
let get_schema_versions_diff ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSchemaVersionsDiff input
let get_security_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSecurityConfiguration input
let get_security_configurations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSecurityConfigurations input
let get_session ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSession input
let get_statement ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetStatement input
let get_table ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTable input
let get_table_optimizer ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTableOptimizer input
let get_table_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTableVersion input
let get_table_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTableVersions input
let get_tables ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTables input
let get_tags ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTags input
let get_trigger ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTrigger input
let get_triggers ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTriggers input
let get_unfiltered_partition_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetUnfilteredPartitionMetadata input
let get_unfiltered_partitions_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetUnfilteredPartitionsMetadata input
let get_unfiltered_table_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetUnfilteredTableMetadata input
let get_usage_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetUsageProfile input
let get_user_defined_function ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetUserDefinedFunction input
let get_user_defined_functions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetUserDefinedFunctions input
let get_workflow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetWorkflow input
let get_workflow_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetWorkflowRun input
let get_workflow_run_properties ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetWorkflowRunProperties input
let get_workflow_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetWorkflowRuns input
let import_catalog_to_glue ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ImportCatalogToGlue input
let list_blueprints ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListBlueprints input
let list_column_statistics_task_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListColumnStatisticsTaskRuns input
let list_connection_types ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListConnectionTypes input
let list_crawlers ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListCrawlers input
let list_crawls ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListCrawls input
let list_custom_entity_types ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListCustomEntityTypes input
let list_data_quality_results ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataQualityResults input
let list_data_quality_rule_recommendation_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataQualityRuleRecommendationRuns
input
let list_data_quality_ruleset_evaluation_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataQualityRulesetEvaluationRuns
input
let list_data_quality_rulesets ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataQualityRulesets input
let list_data_quality_statistic_annotations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataQualityStatisticAnnotations input
let list_data_quality_statistics ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataQualityStatistics input
let list_dev_endpoints ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDevEndpoints input
let list_entities ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListEntities input
let list_integration_resource_properties ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListIntegrationResourceProperties input
let list_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListJobs input
let list_m_l_transforms ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListMLTransforms input
let list_materialized_view_refresh_task_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListMaterializedViewRefreshTaskRuns input
let list_registries ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRegistries input
let list_schema_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSchemaVersions input
let list_schemas ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSchemas input
let list_sessions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSessions input
let list_statements ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListStatements input
let list_table_optimizer_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTableOptimizerRuns input
let list_triggers ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTriggers input
let list_usage_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListUsageProfiles input
let list_workflows ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListWorkflows input
let modify_integration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ModifyIntegration input
let put_data_catalog_encryption_settings ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutDataCatalogEncryptionSettings input
let put_data_quality_profile_annotation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutDataQualityProfileAnnotation input
let put_resource_policy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutResourcePolicy input
let put_schema_version_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutSchemaVersionMetadata input
let put_workflow_run_properties ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutWorkflowRunProperties input
let query_schema_version_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.QuerySchemaVersionMetadata input
let register_connection_type ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RegisterConnectionType input
let register_schema_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RegisterSchemaVersion input
let remove_schema_version_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RemoveSchemaVersionMetadata input
let reset_job_bookmark ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ResetJobBookmark input
let resume_workflow_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ResumeWorkflowRun input
let run_statement ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RunStatement input
let search_tables ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchTables input
let start_blueprint_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartBlueprintRun input
let start_column_statistics_task_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartColumnStatisticsTaskRun input
let start_column_statistics_task_run_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartColumnStatisticsTaskRunSchedule
input
let start_crawler ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartCrawler input
let start_crawler_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartCrawlerSchedule input
let start_data_quality_rule_recommendation_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartDataQualityRuleRecommendationRun
input
let start_data_quality_ruleset_evaluation_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartDataQualityRulesetEvaluationRun
input
let start_export_labels_task_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartExportLabelsTaskRun input
let start_import_labels_task_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartImportLabelsTaskRun input
let start_job_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartJobRun input
let start_m_l_evaluation_task_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartMLEvaluationTaskRun input
let start_m_l_labeling_set_generation_task_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartMLLabelingSetGenerationTaskRun input
let start_materialized_view_refresh_task_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartMaterializedViewRefreshTaskRun input
let start_trigger ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartTrigger input
let start_workflow_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartWorkflowRun input
let stop_column_statistics_task_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopColumnStatisticsTaskRun input
let stop_column_statistics_task_run_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopColumnStatisticsTaskRunSchedule input
let stop_crawler ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopCrawler input
let stop_crawler_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopCrawlerSchedule input
let stop_materialized_view_refresh_task_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopMaterializedViewRefreshTaskRun input
let stop_session ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopSession input
let stop_trigger ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopTrigger input
let stop_workflow_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopWorkflowRun input
let tag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TagResource input
let test_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TestConnection input
let untag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UntagResource input
let update_blueprint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateBlueprint input
let update_catalog ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateCatalog input
let update_classifier ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateClassifier input
let update_column_statistics_for_partition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateColumnStatisticsForPartition input
let update_column_statistics_for_table ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateColumnStatisticsForTable input
let update_column_statistics_task_settings ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateColumnStatisticsTaskSettings input
let update_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateConnection input
let update_crawler ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateCrawler input
let update_crawler_schedule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateCrawlerSchedule input
let update_data_quality_ruleset ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDataQualityRuleset input
let update_database ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDatabase input
let update_dev_endpoint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDevEndpoint input
let update_glue_identity_center_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateGlueIdentityCenterConfiguration
input
let update_integration_resource_property ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateIntegrationResourceProperty input
let update_integration_table_properties ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateIntegrationTableProperties input
let update_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateJob input
let update_job_from_source_control ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateJobFromSourceControl input
let update_m_l_transform ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateMLTransform input
let update_partition ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdatePartition input
let update_registry ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRegistry input
let update_schema ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateSchema input
let update_source_control_from_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateSourceControlFromJob input
let update_table ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTable input
let update_table_optimizer ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTableOptimizer input
let update_trigger ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTrigger input
let update_usage_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUsageProfile input
let update_user_defined_function ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserDefinedFunction input
let update_workflow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateWorkflow input