Source file io.ml

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
(* generated by: awso-codegen generate-all --botocore-data vendor/botocore/botocore/data -o aws --runtime-dir lib/runtime/awso --cli-dir awso-cli *)
open Awso_sagemaker
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 add_association ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AddAssociation input
let add_tags ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AddTags input
let associate_trial_component ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateTrialComponent input
let attach_cluster_node_volume ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AttachClusterNodeVolume input
let batch_add_cluster_nodes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.BatchAddClusterNodes input
let batch_delete_cluster_nodes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.BatchDeleteClusterNodes input
let batch_describe_model_package ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.BatchDescribeModelPackage input
let batch_reboot_cluster_nodes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.BatchRebootClusterNodes input
let batch_replace_cluster_nodes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.BatchReplaceClusterNodes input
let create_a_i_benchmark_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateAIBenchmarkJob input
let create_a_i_recommendation_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateAIRecommendationJob input
let create_a_i_workload_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateAIWorkloadConfig input
let create_action ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateAction input
let create_algorithm ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateAlgorithm input
let create_app ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateApp input
let create_app_image_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateAppImageConfig input
let create_artifact ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateArtifact input
let create_auto_m_l_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateAutoMLJob input
let create_auto_m_l_job_v2 ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateAutoMLJobV2 input
let create_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateCluster input
let create_cluster_scheduler_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateClusterSchedulerConfig input
let create_code_repository ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateCodeRepository input
let create_compilation_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateCompilationJob input
let create_compute_quota ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateComputeQuota input
let create_context ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateContext input
let create_data_quality_job_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDataQualityJobDefinition input
let create_device_fleet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDeviceFleet input
let create_domain ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateDomain input
let create_edge_deployment_plan ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateEdgeDeploymentPlan input
let create_edge_deployment_stage ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateEdgeDeploymentStage input
let create_edge_packaging_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateEdgePackagingJob input
let create_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateEndpoint input
let create_endpoint_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateEndpointConfig input
let create_experiment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateExperiment input
let create_feature_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateFeatureGroup input
let create_flow_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateFlowDefinition input
let create_hub ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateHub input
let create_hub_content_presigned_urls ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateHubContentPresignedUrls input
let create_hub_content_reference ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateHubContentReference input
let create_human_task_ui ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateHumanTaskUi input
let create_hyper_parameter_tuning_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateHyperParameterTuningJob input
let create_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateImage input
let create_image_version ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateImageVersion input
let create_inference_component ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateInferenceComponent input
let create_inference_experiment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateInferenceExperiment input
let create_inference_recommendations_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateInferenceRecommendationsJob input
let create_labeling_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateLabelingJob input
let create_mlflow_app ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateMlflowApp input
let create_mlflow_tracking_server ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateMlflowTrackingServer input
let create_model ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateModel input
let create_model_bias_job_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateModelBiasJobDefinition input
let create_model_card ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateModelCard input
let create_model_card_export_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateModelCardExportJob input
let create_model_explainability_job_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateModelExplainabilityJobDefinition
    input
let create_model_package ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateModelPackage input
let create_model_package_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateModelPackageGroup input
let create_model_quality_job_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateModelQualityJobDefinition input
let create_monitoring_schedule ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateMonitoringSchedule input
let create_notebook_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateNotebookInstance input
let create_notebook_instance_lifecycle_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateNotebookInstanceLifecycleConfig
    input
let create_optimization_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateOptimizationJob input
let create_partner_app ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreatePartnerApp input
let create_partner_app_presigned_url ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreatePartnerAppPresignedUrl input
let create_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreatePipeline input
let create_presigned_domain_url ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreatePresignedDomainUrl input
let create_presigned_mlflow_app_url ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreatePresignedMlflowAppUrl input
let create_presigned_mlflow_tracking_server_url ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreatePresignedMlflowTrackingServerUrl
    input
let create_presigned_notebook_instance_url ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreatePresignedNotebookInstanceUrl input
let create_processing_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateProcessingJob input
let create_project ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateProject input
let create_space ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateSpace input
let create_studio_lifecycle_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateStudioLifecycleConfig input
let create_training_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTrainingJob input
let create_training_plan ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTrainingPlan input
let create_transform_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTransformJob input
let create_trial ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTrial input
let create_trial_component ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateTrialComponent input
let create_user_profile ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateUserProfile input
let create_workforce ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateWorkforce input
let create_workteam ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateWorkteam input
let delete_a_i_benchmark_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteAIBenchmarkJob input
let delete_a_i_recommendation_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteAIRecommendationJob input
let delete_a_i_workload_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteAIWorkloadConfig input
let delete_action ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteAction input
let delete_algorithm ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteAlgorithm input
let delete_app ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteApp input
let delete_app_image_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteAppImageConfig input
let delete_artifact ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteArtifact input
let delete_association ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteAssociation input
let delete_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteCluster input
let delete_cluster_scheduler_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteClusterSchedulerConfig input
let delete_code_repository ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteCodeRepository input
let delete_compilation_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteCompilationJob input
let delete_compute_quota ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteComputeQuota input
let delete_context ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteContext input
let delete_data_quality_job_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDataQualityJobDefinition input
let delete_device_fleet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDeviceFleet input
let delete_domain ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteDomain input
let delete_edge_deployment_plan ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteEdgeDeploymentPlan input
let delete_edge_deployment_stage ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteEdgeDeploymentStage input
let delete_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteEndpoint input
let delete_endpoint_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteEndpointConfig input
let delete_experiment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteExperiment input
let delete_feature_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteFeatureGroup input
let delete_flow_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteFlowDefinition input
let delete_hub ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteHub input
let delete_hub_content ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteHubContent input
let delete_hub_content_reference ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteHubContentReference input
let delete_human_task_ui ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteHumanTaskUi input
let delete_hyper_parameter_tuning_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteHyperParameterTuningJob input
let delete_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteImage input
let delete_image_version ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteImageVersion input
let delete_inference_component ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteInferenceComponent input
let delete_inference_experiment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteInferenceExperiment input
let delete_mlflow_app ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteMlflowApp input
let delete_mlflow_tracking_server ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteMlflowTrackingServer input
let delete_model ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteModel input
let delete_model_bias_job_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteModelBiasJobDefinition input
let delete_model_card ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteModelCard input
let delete_model_explainability_job_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteModelExplainabilityJobDefinition
    input
let delete_model_package ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteModelPackage input
let delete_model_package_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteModelPackageGroup input
let delete_model_package_group_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteModelPackageGroupPolicy input
let delete_model_quality_job_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteModelQualityJobDefinition input
let delete_monitoring_schedule ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteMonitoringSchedule input
let delete_notebook_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteNotebookInstance input
let delete_notebook_instance_lifecycle_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteNotebookInstanceLifecycleConfig
    input
let delete_optimization_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteOptimizationJob input
let delete_partner_app ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeletePartnerApp input
let delete_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeletePipeline input
let delete_processing_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteProcessingJob input
let delete_project ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteProject input
let delete_space ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteSpace input
let delete_studio_lifecycle_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteStudioLifecycleConfig input
let delete_tags ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTags input
let delete_training_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTrainingJob input
let delete_trial ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTrial input
let delete_trial_component ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteTrialComponent input
let delete_user_profile ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteUserProfile input
let delete_workforce ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteWorkforce input
let delete_workteam ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteWorkteam input
let deregister_devices ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeregisterDevices input
let describe_a_i_benchmark_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAIBenchmarkJob input
let describe_a_i_recommendation_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAIRecommendationJob input
let describe_a_i_workload_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAIWorkloadConfig input
let describe_action ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAction input
let describe_algorithm ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAlgorithm input
let describe_app ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeApp input
let describe_app_image_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAppImageConfig input
let describe_artifact ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeArtifact input
let describe_auto_m_l_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAutoMLJob input
let describe_auto_m_l_job_v2 ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeAutoMLJobV2 input
let describe_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCluster input
let describe_cluster_event ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeClusterEvent input
let describe_cluster_node ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeClusterNode input
let describe_cluster_scheduler_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeClusterSchedulerConfig input
let describe_code_repository ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCodeRepository input
let describe_compilation_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeCompilationJob input
let describe_compute_quota ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeComputeQuota input
let describe_context ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeContext input
let describe_data_quality_job_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDataQualityJobDefinition input
let describe_device ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDevice input
let describe_device_fleet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDeviceFleet input
let describe_domain ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeDomain input
let describe_edge_deployment_plan ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeEdgeDeploymentPlan input
let describe_edge_packaging_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeEdgePackagingJob input
let describe_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeEndpoint input
let describe_endpoint_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeEndpointConfig input
let describe_experiment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeExperiment input
let describe_feature_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeFeatureGroup input
let describe_feature_metadata ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeFeatureMetadata input
let describe_flow_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeFlowDefinition input
let describe_hub ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeHub input
let describe_hub_content ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeHubContent input
let describe_human_task_ui ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeHumanTaskUi input
let describe_hyper_parameter_tuning_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeHyperParameterTuningJob input
let describe_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeImage input
let describe_image_version ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeImageVersion input
let describe_inference_component ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInferenceComponent input
let describe_inference_experiment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInferenceExperiment input
let describe_inference_recommendations_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeInferenceRecommendationsJob input
let describe_labeling_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeLabelingJob input
let describe_lineage_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeLineageGroup input
let describe_mlflow_app ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeMlflowApp input
let describe_mlflow_tracking_server ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeMlflowTrackingServer input
let describe_model ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeModel input
let describe_model_bias_job_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeModelBiasJobDefinition input
let describe_model_card ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeModelCard input
let describe_model_card_export_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeModelCardExportJob input
let describe_model_explainability_job_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeModelExplainabilityJobDefinition
    input
let describe_model_package ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeModelPackage input
let describe_model_package_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeModelPackageGroup input
let describe_model_quality_job_definition ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeModelQualityJobDefinition input
let describe_monitoring_schedule ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeMonitoringSchedule input
let describe_notebook_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeNotebookInstance input
let describe_notebook_instance_lifecycle_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeNotebookInstanceLifecycleConfig
    input
let describe_optimization_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeOptimizationJob input
let describe_partner_app ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribePartnerApp input
let describe_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribePipeline input
let describe_pipeline_definition_for_execution ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribePipelineDefinitionForExecution
    input
let describe_pipeline_execution ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribePipelineExecution input
let describe_processing_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeProcessingJob input
let describe_project ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeProject input
let describe_reserved_capacity ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeReservedCapacity input
let describe_space ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSpace input
let describe_studio_lifecycle_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeStudioLifecycleConfig input
let describe_subscribed_workteam ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeSubscribedWorkteam input
let describe_training_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTrainingJob input
let describe_training_plan ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTrainingPlan input
let describe_training_plan_extension_history ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTrainingPlanExtensionHistory
    input
let describe_transform_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTransformJob input
let describe_trial ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTrial input
let describe_trial_component ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeTrialComponent input
let describe_user_profile ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeUserProfile input
let describe_workforce ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeWorkforce input
let describe_workteam ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeWorkteam input
let detach_cluster_node_volume ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DetachClusterNodeVolume input
let disable_sagemaker_servicecatalog_portfolio ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisableSagemakerServicecatalogPortfolio
    input
let disassociate_trial_component ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateTrialComponent input
let enable_sagemaker_servicecatalog_portfolio ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.EnableSagemakerServicecatalogPortfolio
    input
let extend_training_plan ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ExtendTrainingPlan input
let get_device_fleet_report ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetDeviceFleetReport input
let get_lineage_group_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetLineageGroupPolicy input
let get_model_package_group_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetModelPackageGroupPolicy input
let get_sagemaker_servicecatalog_portfolio_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetSagemakerServicecatalogPortfolioStatus
    input
let get_scaling_configuration_recommendation ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetScalingConfigurationRecommendation
    input
let get_search_suggestions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetSearchSuggestions input
let import_hub_content ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ImportHubContent input
let list_a_i_benchmark_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListAIBenchmarkJobs input
let list_a_i_recommendation_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListAIRecommendationJobs input
let list_a_i_workload_configs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListAIWorkloadConfigs input
let list_actions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListActions input
let list_algorithms ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListAlgorithms input
let list_aliases ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListAliases input
let list_app_image_configs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListAppImageConfigs input
let list_apps ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListApps input
let list_artifacts ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListArtifacts input
let list_associations ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListAssociations input
let list_auto_m_l_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListAutoMLJobs input
let list_candidates_for_auto_m_l_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListCandidatesForAutoMLJob input
let list_cluster_events ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListClusterEvents input
let list_cluster_nodes ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListClusterNodes input
let list_cluster_scheduler_configs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListClusterSchedulerConfigs input
let list_clusters ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListClusters input
let list_code_repositories ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListCodeRepositories input
let list_compilation_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListCompilationJobs input
let list_compute_quotas ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListComputeQuotas input
let list_contexts ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListContexts input
let list_data_quality_job_definitions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListDataQualityJobDefinitions input
let list_device_fleets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListDeviceFleets input
let list_devices ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListDevices input
let list_domains ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListDomains input
let list_edge_deployment_plans ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListEdgeDeploymentPlans input
let list_edge_packaging_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListEdgePackagingJobs input
let list_endpoint_configs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListEndpointConfigs input
let list_endpoints ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListEndpoints input
let list_experiments ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListExperiments input
let list_feature_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListFeatureGroups input
let list_flow_definitions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListFlowDefinitions input
let list_hub_content_versions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListHubContentVersions input
let list_hub_contents ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListHubContents input
let list_hubs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListHubs input
let list_human_task_uis ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListHumanTaskUis input
let list_hyper_parameter_tuning_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListHyperParameterTuningJobs input
let list_image_versions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListImageVersions input
let list_images ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListImages input
let list_inference_components ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListInferenceComponents input
let list_inference_experiments ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListInferenceExperiments input
let list_inference_recommendations_job_steps ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListInferenceRecommendationsJobSteps
    input
let list_inference_recommendations_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListInferenceRecommendationsJobs input
let list_labeling_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListLabelingJobs input
let list_labeling_jobs_for_workteam ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListLabelingJobsForWorkteam input
let list_lineage_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListLineageGroups input
let list_mlflow_apps ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMlflowApps input
let list_mlflow_tracking_servers ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMlflowTrackingServers input
let list_model_bias_job_definitions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListModelBiasJobDefinitions input
let list_model_card_export_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListModelCardExportJobs input
let list_model_card_versions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListModelCardVersions input
let list_model_cards ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListModelCards input
let list_model_explainability_job_definitions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListModelExplainabilityJobDefinitions
    input
let list_model_metadata ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListModelMetadata input
let list_model_package_groups ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListModelPackageGroups input
let list_model_packages ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListModelPackages input
let list_model_quality_job_definitions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListModelQualityJobDefinitions input
let list_models ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListModels input
let list_monitoring_alert_history ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMonitoringAlertHistory input
let list_monitoring_alerts ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMonitoringAlerts input
let list_monitoring_executions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMonitoringExecutions input
let list_monitoring_schedules ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMonitoringSchedules input
let list_notebook_instance_lifecycle_configs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListNotebookInstanceLifecycleConfigs
    input
let list_notebook_instances ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListNotebookInstances input
let list_optimization_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListOptimizationJobs input
let list_partner_apps ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListPartnerApps input
let list_pipeline_execution_steps ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListPipelineExecutionSteps input
let list_pipeline_executions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListPipelineExecutions input
let list_pipeline_parameters_for_execution ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListPipelineParametersForExecution input
let list_pipeline_versions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListPipelineVersions input
let list_pipelines ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListPipelines input
let list_processing_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListProcessingJobs input
let list_projects ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListProjects input
let list_resource_catalogs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListResourceCatalogs input
let list_spaces ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListSpaces input
let list_stage_devices ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListStageDevices input
let list_studio_lifecycle_configs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListStudioLifecycleConfigs input
let list_subscribed_workteams ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListSubscribedWorkteams input
let list_tags ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListTags input
let list_training_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListTrainingJobs input
let list_training_jobs_for_hyper_parameter_tuning_job ?endpoint_url ?cfg
  input =
  eval ?endpoint_url ?cfg
    Endpoints.ListTrainingJobsForHyperParameterTuningJob input
let list_training_plans ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListTrainingPlans input
let list_transform_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListTransformJobs input
let list_trial_components ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListTrialComponents input
let list_trials ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListTrials input
let list_ultra_servers_by_reserved_capacity ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListUltraServersByReservedCapacity input
let list_user_profiles ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListUserProfiles input
let list_workforces ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListWorkforces input
let list_workteams ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListWorkteams input
let put_model_package_group_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.PutModelPackageGroupPolicy input
let query_lineage ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.QueryLineage input
let register_devices ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RegisterDevices input
let render_ui_template ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RenderUiTemplate input
let retry_pipeline_execution ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.RetryPipelineExecution input
let search ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.Search input
let search_training_plan_offerings ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.SearchTrainingPlanOfferings input
let send_pipeline_execution_step_failure ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.SendPipelineExecutionStepFailure input
let send_pipeline_execution_step_success ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.SendPipelineExecutionStepSuccess input
let start_cluster_health_check ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartClusterHealthCheck input
let start_edge_deployment_stage ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartEdgeDeploymentStage input
let start_inference_experiment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartInferenceExperiment input
let start_mlflow_tracking_server ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartMlflowTrackingServer input
let start_monitoring_schedule ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartMonitoringSchedule input
let start_notebook_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartNotebookInstance input
let start_pipeline_execution ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartPipelineExecution input
let start_session ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartSession input
let stop_a_i_benchmark_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopAIBenchmarkJob input
let stop_a_i_recommendation_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopAIRecommendationJob input
let stop_auto_m_l_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopAutoMLJob input
let stop_compilation_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopCompilationJob input
let stop_edge_deployment_stage ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopEdgeDeploymentStage input
let stop_edge_packaging_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopEdgePackagingJob input
let stop_hyper_parameter_tuning_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopHyperParameterTuningJob input
let stop_inference_experiment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopInferenceExperiment input
let stop_inference_recommendations_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopInferenceRecommendationsJob input
let stop_labeling_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopLabelingJob input
let stop_mlflow_tracking_server ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopMlflowTrackingServer input
let stop_monitoring_schedule ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopMonitoringSchedule input
let stop_notebook_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopNotebookInstance input
let stop_optimization_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopOptimizationJob input
let stop_pipeline_execution ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopPipelineExecution input
let stop_processing_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopProcessingJob input
let stop_training_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopTrainingJob input
let stop_transform_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StopTransformJob input
let update_action ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateAction input
let update_app_image_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateAppImageConfig input
let update_artifact ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateArtifact input
let update_cluster ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateCluster input
let update_cluster_scheduler_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateClusterSchedulerConfig input
let update_cluster_software ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateClusterSoftware input
let update_code_repository ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateCodeRepository input
let update_compute_quota ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateComputeQuota input
let update_context ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateContext input
let update_device_fleet ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateDeviceFleet input
let update_devices ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateDevices input
let update_domain ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateDomain input
let update_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateEndpoint input
let update_endpoint_weights_and_capacities ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateEndpointWeightsAndCapacities input
let update_experiment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateExperiment input
let update_feature_group ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateFeatureGroup input
let update_feature_metadata ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateFeatureMetadata input
let update_hub ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateHub input
let update_hub_content ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateHubContent input
let update_hub_content_reference ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateHubContentReference input
let update_image ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateImage input
let update_image_version ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateImageVersion input
let update_inference_component ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateInferenceComponent input
let update_inference_component_runtime_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateInferenceComponentRuntimeConfig
    input
let update_inference_experiment ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateInferenceExperiment input
let update_mlflow_app ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateMlflowApp input
let update_mlflow_tracking_server ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateMlflowTrackingServer input
let update_model_card ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateModelCard input
let update_model_package ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateModelPackage input
let update_monitoring_alert ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateMonitoringAlert input
let update_monitoring_schedule ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateMonitoringSchedule input
let update_notebook_instance ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateNotebookInstance input
let update_notebook_instance_lifecycle_config ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateNotebookInstanceLifecycleConfig
    input
let update_partner_app ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdatePartnerApp input
let update_pipeline ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdatePipeline input
let update_pipeline_execution ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdatePipelineExecution input
let update_pipeline_version ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdatePipelineVersion input
let update_project ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateProject input
let update_space ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateSpace input
let update_training_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateTrainingJob input
let update_trial ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateTrial input
let update_trial_component ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateTrialComponent input
let update_user_profile ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateUserProfile input
let update_workforce ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateWorkforce input
let update_workteam ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateWorkteam input