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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
open Core
open Async
let json_arg = Command.Arg_type.create Yojson.Safe.from_string
let call ?endpoint_url ?profile ?region f m result_to_json error_to_json =
let region =
match region with
| Some region -> Some (Awso.Region.of_string region)
| None -> None in
(Awso_async.Cfg.get_exn ?profile ?region ()) >>=
(fun cfg ->
(f ?endpoint_url ?cfg:(Some cfg) m) >>=
(fun result ->
match result with
| Error err ->
(match error_to_json with
| None ->
failwithf
"endpoint error, but no error values defined in boto"
()
| Some to_json ->
let s = (err |> to_json) |> Yojson.Safe.to_string in
failwithf "AWS error: %s" s ())
| Ok result ->
((match result_to_json with
| None -> print_endline "ok response from endpoint"
| Some to_json ->
((result |> to_json) |> Yojson.Safe.to_string) |>
print_endline);
return ())))
let create_application =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and description =
flag "description" (optional string) ~doc:"STRING Description"
and tags = flag "tags" (optional json_arg) ~doc:"JSON TagMap"
and name = flag "name" (required string) ~doc:"STRING Name" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_application
(Values.CreateApplicationRequest.make ?description
?tags:(Option.map ~f:Values.TagMap.of_json tags) ~name ())
(Some Values.Application.to_json)
(Some Values.Application.error_to_json)])
let create_configuration_profile =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and description =
flag "description" (optional string) ~doc:"STRING Description"
and retrievalRoleArn =
flag "retrieval-role-arn" (optional string) ~doc:"STRING RoleArn"
and validators =
flag "validators" (optional json_arg) ~doc:"JSON ValidatorList"
and tags = flag "tags" (optional json_arg) ~doc:"JSON TagMap"
and type_ =
flag "type-" (optional string)
~doc:"STRING ConfigurationProfileType"
and kmsKeyIdentifier =
flag "kms-key-identifier" (optional string)
~doc:"STRING KmsKeyIdentifier"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and name = flag "name" (required string) ~doc:"STRING LongName"
and locationUri =
flag "location-uri" (required string) ~doc:"STRING Uri" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_configuration_profile
(Values.CreateConfigurationProfileRequest.make ?description
?retrievalRoleArn
?validators:(Option.map ~f:Values.ValidatorList.of_json
validators)
?tags:(Option.map ~f:Values.TagMap.of_json tags) ?type_
?kmsKeyIdentifier ~applicationId ~name ~locationUri ())
(Some Values.ConfigurationProfile.to_json)
(Some Values.ConfigurationProfile.error_to_json)])
let create_deployment_strategy =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and description =
flag "description" (optional string) ~doc:"STRING Description"
and finalBakeTimeInMinutes =
flag "final-bake-time-in-minutes" (optional int)
~doc:"INT MinutesBetween0And24Hours"
and growthType =
flag "growth-type" (optional json_arg) ~doc:"JSON GrowthType"
and replicateTo =
flag "replicate-to" (optional json_arg) ~doc:"JSON ReplicateTo"
and tags = flag "tags" (optional json_arg) ~doc:"JSON TagMap"
and name = flag "name" (required string) ~doc:"STRING Name"
and deploymentDurationInMinutes =
flag "deployment-duration-in-minutes" (required int)
~doc:"INT MinutesBetween0And24Hours"
and growthFactor =
flag "growth-factor" (required float) ~doc:"FLOAT GrowthFactor" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_deployment_strategy
(Values.CreateDeploymentStrategyRequest.make ?description
?finalBakeTimeInMinutes
?growthType:(Option.map ~f:Values.GrowthType.of_json growthType)
?replicateTo:(Option.map ~f:Values.ReplicateTo.of_json
replicateTo)
?tags:(Option.map ~f:Values.TagMap.of_json tags) ~name
~deploymentDurationInMinutes ~growthFactor ())
(Some Values.DeploymentStrategy.to_json)
(Some Values.DeploymentStrategy.error_to_json)])
let create_environment =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and description =
flag "description" (optional string) ~doc:"STRING Description"
and monitors =
flag "monitors" (optional json_arg) ~doc:"JSON MonitorList"
and tags = flag "tags" (optional json_arg) ~doc:"JSON TagMap"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and name = flag "name" (required string) ~doc:"STRING Name" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_environment
(Values.CreateEnvironmentRequest.make ?description
?monitors:(Option.map ~f:Values.MonitorList.of_json monitors)
?tags:(Option.map ~f:Values.TagMap.of_json tags) ~applicationId
~name ()) (Some Values.Environment.to_json)
(Some Values.Environment.error_to_json)])
let create_extension =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and description =
flag "description" (optional string) ~doc:"STRING Description"
and parameters =
flag "parameters" (optional json_arg) ~doc:"JSON ParameterMap"
and tags = flag "tags" (optional json_arg) ~doc:"JSON TagMap"
and latestVersionNumber =
flag "latest-version-number" (optional int) ~doc:"INT Integer"
and name =
flag "name" (required string) ~doc:"STRING ExtensionOrParameterName"
and actions =
flag "actions" (required json_arg) ~doc:"JSON ActionsMap" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_extension
(Values.CreateExtensionRequest.make ?description
?parameters:(Option.map ~f:Values.ParameterMap.of_json
parameters)
?tags:(Option.map ~f:Values.TagMap.of_json tags)
?latestVersionNumber ~name
~actions:(Values.ActionsMap.of_json actions) ())
(Some Values.Extension.to_json)
(Some Values.Extension.error_to_json)])
let create_extension_association =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and extensionVersionNumber =
flag "extension-version-number" (optional int) ~doc:"INT Integer"
and parameters =
flag "parameters" (optional json_arg) ~doc:"JSON ParameterValueMap"
and tags = flag "tags" (optional json_arg) ~doc:"JSON TagMap"
and extensionIdentifier =
flag "extension-identifier" (required string)
~doc:"STRING Identifier"
and resourceIdentifier =
flag "resource-identifier" (required string)
~doc:"STRING Identifier" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_extension_association
(Values.CreateExtensionAssociationRequest.make
?extensionVersionNumber
?parameters:(Option.map ~f:Values.ParameterValueMap.of_json
parameters)
?tags:(Option.map ~f:Values.TagMap.of_json tags)
~extensionIdentifier ~resourceIdentifier ())
(Some Values.ExtensionAssociation.to_json)
(Some Values.ExtensionAssociation.error_to_json)])
let create_hosted_configuration_version =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and description =
flag "description" (optional string) ~doc:"STRING Description"
and latestVersionNumber =
flag "latest-version-number" (optional int) ~doc:"INT Integer"
and versionLabel =
flag "version-label" (optional string) ~doc:"STRING VersionLabel"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and configurationProfileId =
flag "configuration-profile-id" (required string) ~doc:"STRING Id"
and content = flag "content" (required json_arg) ~doc:"JSON Blob"
and contentType =
flag "content-type" (required string)
~doc:"STRING StringWithLengthBetween1And255" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_hosted_configuration_version
(Values.CreateHostedConfigurationVersionRequest.make ?description
?latestVersionNumber ?versionLabel ~applicationId
~configurationProfileId ~content:(Values.Blob.of_json content)
~contentType ())
(Some Values.HostedConfigurationVersion.to_json)
(Some Values.HostedConfigurationVersion.error_to_json)])
let delete_application =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_application
(Values.DeleteApplicationRequest.make ~applicationId ()) None None])
let delete_configuration_profile =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and deletionProtectionCheck =
flag "deletion-protection-check" (optional json_arg)
~doc:"JSON DeletionProtectionCheck"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and configurationProfileId =
flag "configuration-profile-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_configuration_profile
(Values.DeleteConfigurationProfileRequest.make
?deletionProtectionCheck:(Option.map
~f:Values.DeletionProtectionCheck.of_json
deletionProtectionCheck)
~applicationId ~configurationProfileId ()) None None])
let delete_deployment_strategy =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and deploymentStrategyId =
flag "deployment-strategy-id" (required string)
~doc:"STRING DeploymentStrategyId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_deployment_strategy
(Values.DeleteDeploymentStrategyRequest.make ~deploymentStrategyId
()) None None])
let delete_environment =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and deletionProtectionCheck =
flag "deletion-protection-check" (optional json_arg)
~doc:"JSON DeletionProtectionCheck"
and environmentId =
flag "environment-id" (required string) ~doc:"STRING Id"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_environment
(Values.DeleteEnvironmentRequest.make
?deletionProtectionCheck:(Option.map
~f:Values.DeletionProtectionCheck.of_json
deletionProtectionCheck)
~environmentId ~applicationId ()) None None])
let delete_extension =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and versionNumber =
flag "version-number" (optional int) ~doc:"INT Integer"
and extensionIdentifier =
flag "extension-identifier" (required string)
~doc:"STRING Identifier" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_extension
(Values.DeleteExtensionRequest.make ?versionNumber
~extensionIdentifier ()) None None])
let delete_extension_association =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and extensionAssociationId =
flag "extension-association-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_extension_association
(Values.DeleteExtensionAssociationRequest.make
~extensionAssociationId ()) None None])
let delete_hosted_configuration_version =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and configurationProfileId =
flag "configuration-profile-id" (required string) ~doc:"STRING Id"
and versionNumber =
flag "version-number" (required int) ~doc:"INT Integer" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_hosted_configuration_version
(Values.DeleteHostedConfigurationVersionRequest.make
~applicationId ~configurationProfileId ~versionNumber ()) None
None])
let get_account_settings =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and () = return () in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_account_settings (Fn.id ())
(Some Values.AccountSettings.to_json)
(Some Values.AccountSettings.error_to_json)])
let get_application =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_application
(Values.GetApplicationRequest.make ~applicationId ())
(Some Values.Application.to_json)
(Some Values.Application.error_to_json)])
let get_configuration =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and clientConfigurationVersion =
flag "client-configuration-version" (optional string)
~doc:"STRING Version"
and application =
flag "application" (required string)
~doc:"STRING StringWithLengthBetween1And64"
and environment =
flag "environment" (required string)
~doc:"STRING StringWithLengthBetween1And64"
and configuration =
flag "configuration" (required string)
~doc:"STRING StringWithLengthBetween1And64"
and clientId =
flag "client-id" (required string)
~doc:"STRING StringWithLengthBetween1And64" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_configuration
(Values.GetConfigurationRequest.make ?clientConfigurationVersion
~application ~environment ~configuration ~clientId ())
(Some Values.Configuration.to_json)
(Some Values.Configuration.error_to_json)])
let get_configuration_profile =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and configurationProfileId =
flag "configuration-profile-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_configuration_profile
(Values.GetConfigurationProfileRequest.make ~applicationId
~configurationProfileId ())
(Some Values.ConfigurationProfile.to_json)
(Some Values.ConfigurationProfile.error_to_json)])
let get_deployment =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and environmentId =
flag "environment-id" (required string) ~doc:"STRING Id"
and deploymentNumber =
flag "deployment-number" (required int) ~doc:"INT Integer" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_deployment
(Values.GetDeploymentRequest.make ~applicationId ~environmentId
~deploymentNumber ()) (Some Values.Deployment.to_json)
(Some Values.Deployment.error_to_json)])
let get_deployment_strategy =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and deploymentStrategyId =
flag "deployment-strategy-id" (required string)
~doc:"STRING DeploymentStrategyId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_deployment_strategy
(Values.GetDeploymentStrategyRequest.make ~deploymentStrategyId ())
(Some Values.DeploymentStrategy.to_json)
(Some Values.DeploymentStrategy.error_to_json)])
let get_environment =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and environmentId =
flag "environment-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_environment
(Values.GetEnvironmentRequest.make ~applicationId ~environmentId
()) (Some Values.Environment.to_json)
(Some Values.Environment.error_to_json)])
let get_extension =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and versionNumber =
flag "version-number" (optional int) ~doc:"INT Integer"
and extensionIdentifier =
flag "extension-identifier" (required string)
~doc:"STRING Identifier" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_extension
(Values.GetExtensionRequest.make ?versionNumber
~extensionIdentifier ()) (Some Values.Extension.to_json)
(Some Values.Extension.error_to_json)])
let get_extension_association =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and extensionAssociationId =
flag "extension-association-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_extension_association
(Values.GetExtensionAssociationRequest.make
~extensionAssociationId ())
(Some Values.ExtensionAssociation.to_json)
(Some Values.ExtensionAssociation.error_to_json)])
let get_hosted_configuration_version =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and configurationProfileId =
flag "configuration-profile-id" (required string) ~doc:"STRING Id"
and versionNumber =
flag "version-number" (required int) ~doc:"INT Integer" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_hosted_configuration_version
(Values.GetHostedConfigurationVersionRequest.make ~applicationId
~configurationProfileId ~versionNumber ())
(Some Values.HostedConfigurationVersion.to_json)
(Some Values.HostedConfigurationVersion.error_to_json)])
let list_applications =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and maxResults =
flag "max-results" (optional int) ~doc:"INT MaxResults"
and nextToken =
flag "next-token" (optional string) ~doc:"STRING NextToken" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_applications
(Values.ListApplicationsRequest.make ?maxResults ?nextToken ())
(Some Values.Applications.to_json)
(Some Values.Applications.error_to_json)])
let list_configuration_profiles =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and maxResults =
flag "max-results" (optional int) ~doc:"INT MaxResults"
and nextToken =
flag "next-token" (optional string) ~doc:"STRING NextToken"
and type_ =
flag "type-" (optional string)
~doc:"STRING ConfigurationProfileType"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_configuration_profiles
(Values.ListConfigurationProfilesRequest.make ?maxResults
?nextToken ?type_ ~applicationId ())
(Some Values.ConfigurationProfiles.to_json)
(Some Values.ConfigurationProfiles.error_to_json)])
let list_deployment_strategies =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and maxResults =
flag "max-results" (optional int) ~doc:"INT MaxResults"
and nextToken =
flag "next-token" (optional string) ~doc:"STRING NextToken" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_deployment_strategies
(Values.ListDeploymentStrategiesRequest.make ?maxResults
?nextToken ()) (Some Values.DeploymentStrategies.to_json)
(Some Values.DeploymentStrategies.error_to_json)])
let list_deployments =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and maxResults =
flag "max-results" (optional int) ~doc:"INT MaxResults"
and nextToken =
flag "next-token" (optional string) ~doc:"STRING NextToken"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and environmentId =
flag "environment-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_deployments
(Values.ListDeploymentsRequest.make ?maxResults ?nextToken
~applicationId ~environmentId ())
(Some Values.Deployments.to_json)
(Some Values.Deployments.error_to_json)])
let list_environments =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and maxResults =
flag "max-results" (optional int) ~doc:"INT MaxResults"
and nextToken =
flag "next-token" (optional string) ~doc:"STRING NextToken"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_environments
(Values.ListEnvironmentsRequest.make ?maxResults ?nextToken
~applicationId ()) (Some Values.Environments.to_json)
(Some Values.Environments.error_to_json)])
let list_extension_associations =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and resourceIdentifier =
flag "resource-identifier" (optional string) ~doc:"STRING Arn"
and extensionIdentifier =
flag "extension-identifier" (optional string)
~doc:"STRING Identifier"
and extensionVersionNumber =
flag "extension-version-number" (optional int) ~doc:"INT Integer"
and maxResults =
flag "max-results" (optional int) ~doc:"INT MaxResults"
and nextToken =
flag "next-token" (optional string) ~doc:"STRING NextToken" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_extension_associations
(Values.ListExtensionAssociationsRequest.make ?resourceIdentifier
?extensionIdentifier ?extensionVersionNumber ?maxResults
?nextToken ()) (Some Values.ExtensionAssociations.to_json)
(Some Values.ExtensionAssociations.error_to_json)])
let list_extensions =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and maxResults =
flag "max-results" (optional int) ~doc:"INT MaxResults"
and nextToken =
flag "next-token" (optional string) ~doc:"STRING NextToken"
and name = flag "name" (optional string) ~doc:"STRING QueryName" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_extensions
(Values.ListExtensionsRequest.make ?maxResults ?nextToken ?name ())
(Some Values.Extensions.to_json)
(Some Values.Extensions.error_to_json)])
let list_hosted_configuration_versions =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and maxResults =
flag "max-results" (optional int) ~doc:"INT MaxResults"
and nextToken =
flag "next-token" (optional string) ~doc:"STRING NextToken"
and versionLabel =
flag "version-label" (optional string) ~doc:"STRING QueryName"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and configurationProfileId =
flag "configuration-profile-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_hosted_configuration_versions
(Values.ListHostedConfigurationVersionsRequest.make ?maxResults
?nextToken ?versionLabel ~applicationId ~configurationProfileId
()) (Some Values.HostedConfigurationVersions.to_json)
(Some Values.HostedConfigurationVersions.error_to_json)])
let list_tags_for_resource =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and resourceArn =
flag "resource-arn" (required string) ~doc:"STRING Arn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_tags_for_resource
(Values.ListTagsForResourceRequest.make ~resourceArn ())
(Some Values.ResourceTags.to_json)
(Some Values.ResourceTags.error_to_json)])
let start_deployment =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and description =
flag "description" (optional string) ~doc:"STRING Description"
and tags = flag "tags" (optional json_arg) ~doc:"JSON TagMap"
and kmsKeyIdentifier =
flag "kms-key-identifier" (optional string)
~doc:"STRING KmsKeyIdentifier"
and dynamicExtensionParameters =
flag "dynamic-extension-parameters" (optional json_arg)
~doc:"JSON DynamicParameterMap"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and environmentId =
flag "environment-id" (required string) ~doc:"STRING Id"
and deploymentStrategyId =
flag "deployment-strategy-id" (required string)
~doc:"STRING DeploymentStrategyId"
and configurationProfileId =
flag "configuration-profile-id" (required string) ~doc:"STRING Id"
and configurationVersion =
flag "configuration-version" (required string) ~doc:"STRING Version" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.start_deployment
(Values.StartDeploymentRequest.make ?description
?tags:(Option.map ~f:Values.TagMap.of_json tags)
?kmsKeyIdentifier
?dynamicExtensionParameters:(Option.map
~f:Values.DynamicParameterMap.of_json
dynamicExtensionParameters)
~applicationId ~environmentId ~deploymentStrategyId
~configurationProfileId ~configurationVersion ())
(Some Values.Deployment.to_json)
(Some Values.Deployment.error_to_json)])
let stop_deployment =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and allowRevert =
flag "allow-revert" (optional bool) ~doc:"BOOL Boolean"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and environmentId =
flag "environment-id" (required string) ~doc:"STRING Id"
and deploymentNumber =
flag "deployment-number" (required int) ~doc:"INT Integer" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.stop_deployment
(Values.StopDeploymentRequest.make ?allowRevert ~applicationId
~environmentId ~deploymentNumber ())
(Some Values.Deployment.to_json)
(Some Values.Deployment.error_to_json)])
let tag_resource =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and resourceArn =
flag "resource-arn" (required string) ~doc:"STRING Arn"
and tags = flag "tags" (required json_arg) ~doc:"JSON TagMap" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.tag_resource
(Values.TagResourceRequest.make ~resourceArn
~tags:(Values.TagMap.of_json tags) ()) None None])
let untag_resource =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and resourceArn =
flag "resource-arn" (required string) ~doc:"STRING Arn"
and tagKeys =
flag "tag-keys" (required json_arg) ~doc:"JSON TagKeyList" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.untag_resource
(Values.UntagResourceRequest.make ~resourceArn
~tagKeys:(Values.TagKeyList.of_json tagKeys) ()) None None])
let update_account_settings =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and deletionProtection =
flag "deletion-protection" (optional json_arg)
~doc:"JSON DeletionProtectionSettings" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.update_account_settings
(Values.UpdateAccountSettingsRequest.make
?deletionProtection:(Option.map
~f:Values.DeletionProtectionSettings.of_json
deletionProtection) ())
(Some Values.AccountSettings.to_json)
(Some Values.AccountSettings.error_to_json)])
let update_application =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and name = flag "name" (optional string) ~doc:"STRING Name"
and description =
flag "description" (optional string) ~doc:"STRING Description"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.update_application
(Values.UpdateApplicationRequest.make ?name ?description
~applicationId ()) (Some Values.Application.to_json)
(Some Values.Application.error_to_json)])
let update_configuration_profile =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and name = flag "name" (optional string) ~doc:"STRING LongName"
and description =
flag "description" (optional string) ~doc:"STRING Description"
and retrievalRoleArn =
flag "retrieval-role-arn" (optional string) ~doc:"STRING RoleArn"
and validators =
flag "validators" (optional json_arg) ~doc:"JSON ValidatorList"
and kmsKeyIdentifier =
flag "kms-key-identifier" (optional string)
~doc:"STRING KmsKeyIdentifierOrEmpty"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and configurationProfileId =
flag "configuration-profile-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.update_configuration_profile
(Values.UpdateConfigurationProfileRequest.make ?name ?description
?retrievalRoleArn
?validators:(Option.map ~f:Values.ValidatorList.of_json
validators) ?kmsKeyIdentifier ~applicationId
~configurationProfileId ())
(Some Values.ConfigurationProfile.to_json)
(Some Values.ConfigurationProfile.error_to_json)])
let update_deployment_strategy =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and description =
flag "description" (optional string) ~doc:"STRING Description"
and deploymentDurationInMinutes =
flag "deployment-duration-in-minutes" (optional int)
~doc:"INT MinutesBetween0And24Hours"
and finalBakeTimeInMinutes =
flag "final-bake-time-in-minutes" (optional int)
~doc:"INT MinutesBetween0And24Hours"
and growthFactor =
flag "growth-factor" (optional float) ~doc:"FLOAT GrowthFactor"
and growthType =
flag "growth-type" (optional json_arg) ~doc:"JSON GrowthType"
and deploymentStrategyId =
flag "deployment-strategy-id" (required string)
~doc:"STRING DeploymentStrategyId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.update_deployment_strategy
(Values.UpdateDeploymentStrategyRequest.make ?description
?deploymentDurationInMinutes ?finalBakeTimeInMinutes
?growthFactor
?growthType:(Option.map ~f:Values.GrowthType.of_json growthType)
~deploymentStrategyId ())
(Some Values.DeploymentStrategy.to_json)
(Some Values.DeploymentStrategy.error_to_json)])
let update_environment =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and name = flag "name" (optional string) ~doc:"STRING Name"
and description =
flag "description" (optional string) ~doc:"STRING Description"
and monitors =
flag "monitors" (optional json_arg) ~doc:"JSON MonitorList"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and environmentId =
flag "environment-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.update_environment
(Values.UpdateEnvironmentRequest.make ?name ?description
?monitors:(Option.map ~f:Values.MonitorList.of_json monitors)
~applicationId ~environmentId ())
(Some Values.Environment.to_json)
(Some Values.Environment.error_to_json)])
let update_extension =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and description =
flag "description" (optional string) ~doc:"STRING Description"
and actions =
flag "actions" (optional json_arg) ~doc:"JSON ActionsMap"
and parameters =
flag "parameters" (optional json_arg) ~doc:"JSON ParameterMap"
and versionNumber =
flag "version-number" (optional int) ~doc:"INT Integer"
and extensionIdentifier =
flag "extension-identifier" (required string)
~doc:"STRING Identifier" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.update_extension
(Values.UpdateExtensionRequest.make ?description
?actions:(Option.map ~f:Values.ActionsMap.of_json actions)
?parameters:(Option.map ~f:Values.ParameterMap.of_json
parameters) ?versionNumber ~extensionIdentifier
()) (Some Values.Extension.to_json)
(Some Values.Extension.error_to_json)])
let update_extension_association =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and parameters =
flag "parameters" (optional json_arg) ~doc:"JSON ParameterValueMap"
and extensionAssociationId =
flag "extension-association-id" (required string) ~doc:"STRING Id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.update_extension_association
(Values.UpdateExtensionAssociationRequest.make
?parameters:(Option.map ~f:Values.ParameterValueMap.of_json
parameters) ~extensionAssociationId ())
(Some Values.ExtensionAssociation.to_json)
(Some Values.ExtensionAssociation.error_to_json)])
let validate_configuration =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and applicationId =
flag "application-id" (required string) ~doc:"STRING Id"
and configurationProfileId =
flag "configuration-profile-id" (required string) ~doc:"STRING Id"
and configurationVersion =
flag "configuration-version" (required string) ~doc:"STRING Version" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.validate_configuration
(Values.ValidateConfigurationRequest.make ~applicationId
~configurationProfileId ~configurationVersion ()) None None])
let main =
Command.group
~summary:((Awso.Service.to_string Values.service) ^ " commands")
[("create-application", create_application);
("create-configuration-profile", create_configuration_profile);
("create-deployment-strategy", create_deployment_strategy);
("create-environment", create_environment);
("create-extension", create_extension);
("create-extension-association", create_extension_association);
("create-hosted-configuration-version",
create_hosted_configuration_version);
("delete-application", delete_application);
("delete-configuration-profile", delete_configuration_profile);
("delete-deployment-strategy", delete_deployment_strategy);
("delete-environment", delete_environment);
("delete-extension", delete_extension);
("delete-extension-association", delete_extension_association);
("delete-hosted-configuration-version",
delete_hosted_configuration_version);
("get-account-settings", get_account_settings);
("get-application", get_application);
("get-configuration", get_configuration);
("get-configuration-profile", get_configuration_profile);
("get-deployment", get_deployment);
("get-deployment-strategy", get_deployment_strategy);
("get-environment", get_environment);
("get-extension", get_extension);
("get-extension-association", get_extension_association);
("get-hosted-configuration-version", get_hosted_configuration_version);
("list-applications", list_applications);
("list-configuration-profiles", list_configuration_profiles);
("list-deployment-strategies", list_deployment_strategies);
("list-deployments", list_deployments);
("list-environments", list_environments);
("list-extension-associations", list_extension_associations);
("list-extensions", list_extensions);
("list-hosted-configuration-versions",
list_hosted_configuration_versions);
("list-tags-for-resource", list_tags_for_resource);
("start-deployment", start_deployment);
("stop-deployment", stop_deployment);
("tag-resource", tag_resource);
("untag-resource", untag_resource);
("update-account-settings", update_account_settings);
("update-application", update_application);
("update-configuration-profile", update_configuration_profile);
("update-deployment-strategy", update_deployment_strategy);
("update-environment", update_environment);
("update-extension", update_extension);
("update-extension-association", update_extension_association);
("validate-configuration", validate_configuration)]