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
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
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 accept_marketplace_registration =
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 marketplaceRegistrationToken =
flag "marketplace-registration-token" (required string)
~doc:"STRING String" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.accept_marketplace_registration
(Values.AcceptMarketplaceRegistrationInput.make
~marketplaceRegistrationToken ())
(Some Values.AcceptMarketplaceRegistrationOutput.to_json)
(Some Values.AcceptMarketplaceRegistrationOutput.error_to_json)])
let associate_iam_role_to_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 iamRoleArn =
flag "iam-role-arn" (required string) ~doc:"STRING RoleArn"
and awsIntegration =
flag "aws-integration" (required json_arg)
~doc:"JSON SupportedAwsIntegration"
and resourceArn =
flag "resource-arn" (required string)
~doc:"STRING AssociateIamRoleToResourceInputResourceArnString" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.associate_iam_role_to_resource
(Values.AssociateIamRoleToResourceInput.make ~iamRoleArn
~awsIntegration:(Values.SupportedAwsIntegration.of_json
awsIntegration) ~resourceArn ())
(Some Values.AssociateIamRoleToResourceOutput.to_json)
(Some Values.AssociateIamRoleToResourceOutput.error_to_json)])
let create_cloud_autonomous_vm_cluster =
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 clientToken =
flag "client-token" (optional string)
~doc:"STRING CreateCloudAutonomousVmClusterInputClientTokenString"
and dbServers =
flag "db-servers" (optional json_arg) ~doc:"JSON StringList"
and description =
flag "description" (optional string)
~doc:"STRING CreateCloudAutonomousVmClusterInputDescriptionString"
and isMtlsEnabledVmCluster =
flag "is-mtls-enabled-vm-cluster" (optional bool)
~doc:"BOOL Boolean"
and licenseModel =
flag "license-model" (optional json_arg) ~doc:"JSON LicenseModel"
and maintenanceWindow =
flag "maintenance-window" (optional json_arg)
~doc:"JSON MaintenanceWindow"
and scanListenerPortNonTls =
flag "scan-listener-port-non-tls" (optional int)
~doc:"INT CreateCloudAutonomousVmClusterInputScanListenerPortNonTlsInteger"
and scanListenerPortTls =
flag "scan-listener-port-tls" (optional int)
~doc:"INT CreateCloudAutonomousVmClusterInputScanListenerPortTlsInteger"
and tags = flag "tags" (optional json_arg) ~doc:"JSON RequestTagMap"
and timeZone =
flag "time-zone" (optional string)
~doc:"STRING CreateCloudAutonomousVmClusterInputTimeZoneString"
and cloudExadataInfrastructureId =
flag "cloud-exadata-infrastructure-id" (required string)
~doc:"STRING ResourceIdOrArn"
and odbNetworkId =
flag "odb-network-id" (required string)
~doc:"STRING ResourceIdOrArn"
and displayName =
flag "display-name" (required string)
~doc:"STRING ResourceDisplayName"
and autonomousDataStorageSizeInTBs =
flag "autonomous-data-storage-size-in-t-bs" (required float)
~doc:"FLOAT CreateCloudAutonomousVmClusterInputAutonomousDataStorageSizeInTBsDouble"
and cpuCoreCountPerNode =
flag "cpu-core-count-per-node" (required int)
~doc:"INT CreateCloudAutonomousVmClusterInputCpuCoreCountPerNodeInteger"
and memoryPerOracleComputeUnitInGBs =
flag "memory-per-oracle-compute-unit-in-g-bs" (required int)
~doc:"INT CreateCloudAutonomousVmClusterInputMemoryPerOracleComputeUnitInGBsInteger"
and totalContainerDatabases =
flag "total-container-databases" (required int)
~doc:"INT CreateCloudAutonomousVmClusterInputTotalContainerDatabasesInteger" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_cloud_autonomous_vm_cluster
(Values.CreateCloudAutonomousVmClusterInput.make ?clientToken
?dbServers:(Option.map ~f:Values.StringList.of_json dbServers)
?description ?isMtlsEnabledVmCluster
?licenseModel:(Option.map ~f:Values.LicenseModel.of_json
licenseModel)
?maintenanceWindow:(Option.map
~f:Values.MaintenanceWindow.of_json
maintenanceWindow)
?scanListenerPortNonTls ?scanListenerPortTls
?tags:(Option.map ~f:Values.RequestTagMap.of_json tags)
?timeZone ~cloudExadataInfrastructureId ~odbNetworkId
~displayName ~autonomousDataStorageSizeInTBs
~cpuCoreCountPerNode ~memoryPerOracleComputeUnitInGBs
~totalContainerDatabases ())
(Some Values.CreateCloudAutonomousVmClusterOutput.to_json)
(Some Values.CreateCloudAutonomousVmClusterOutput.error_to_json)])
let create_cloud_exadata_infrastructure =
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 availabilityZone =
flag "availability-zone" (optional string)
~doc:"STRING CreateCloudExadataInfrastructureInputAvailabilityZoneString"
and availabilityZoneId =
flag "availability-zone-id" (optional string)
~doc:"STRING CreateCloudExadataInfrastructureInputAvailabilityZoneIdString"
and tags = flag "tags" (optional json_arg) ~doc:"JSON RequestTagMap"
and customerContactsToSendToOCI =
flag "customer-contacts-to-send-to-o-c-i" (optional json_arg)
~doc:"JSON CustomerContacts"
and maintenanceWindow =
flag "maintenance-window" (optional json_arg)
~doc:"JSON MaintenanceWindow"
and clientToken =
flag "client-token" (optional string)
~doc:"STRING CreateCloudExadataInfrastructureInputClientTokenString"
and databaseServerType =
flag "database-server-type" (optional string)
~doc:"STRING CreateCloudExadataInfrastructureInputDatabaseServerTypeString"
and storageServerType =
flag "storage-server-type" (optional string)
~doc:"STRING CreateCloudExadataInfrastructureInputStorageServerTypeString"
and displayName =
flag "display-name" (required string)
~doc:"STRING ResourceDisplayName"
and shape =
flag "shape" (required string)
~doc:"STRING CreateCloudExadataInfrastructureInputShapeString"
and computeCount =
flag "compute-count" (required int) ~doc:"INT Integer"
and storageCount =
flag "storage-count" (required int) ~doc:"INT Integer" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_cloud_exadata_infrastructure
(Values.CreateCloudExadataInfrastructureInput.make
?availabilityZone ?availabilityZoneId
?tags:(Option.map ~f:Values.RequestTagMap.of_json tags)
?customerContactsToSendToOCI:(Option.map
~f:Values.CustomerContacts.of_json
customerContactsToSendToOCI)
?maintenanceWindow:(Option.map
~f:Values.MaintenanceWindow.of_json
maintenanceWindow) ?clientToken
?databaseServerType ?storageServerType ~displayName ~shape
~computeCount ~storageCount ())
(Some Values.CreateCloudExadataInfrastructureOutput.to_json)
(Some Values.CreateCloudExadataInfrastructureOutput.error_to_json)])
let create_cloud_vm_cluster =
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 clusterName =
flag "cluster-name" (optional string)
~doc:"STRING CreateCloudVmClusterInputClusterNameString"
and dataCollectionOptions =
flag "data-collection-options" (optional json_arg)
~doc:"JSON DataCollectionOptions"
and dataStorageSizeInTBs =
flag "data-storage-size-in-t-bs" (optional float)
~doc:"FLOAT Double"
and dbNodeStorageSizeInGBs =
flag "db-node-storage-size-in-g-bs" (optional int)
~doc:"INT Integer"
and dbServers =
flag "db-servers" (optional json_arg) ~doc:"JSON StringList"
and tags = flag "tags" (optional json_arg) ~doc:"JSON RequestTagMap"
and isLocalBackupEnabled =
flag "is-local-backup-enabled" (optional bool) ~doc:"BOOL Boolean"
and isSparseDiskgroupEnabled =
flag "is-sparse-diskgroup-enabled" (optional bool)
~doc:"BOOL Boolean"
and licenseModel =
flag "license-model" (optional json_arg) ~doc:"JSON LicenseModel"
and memorySizeInGBs =
flag "memory-size-in-g-bs" (optional int) ~doc:"INT Integer"
and systemVersion =
flag "system-version" (optional string)
~doc:"STRING CreateCloudVmClusterInputSystemVersionString"
and timeZone =
flag "time-zone" (optional string)
~doc:"STRING CreateCloudVmClusterInputTimeZoneString"
and clientToken =
flag "client-token" (optional string)
~doc:"STRING CreateCloudVmClusterInputClientTokenString"
and scanListenerPortTcp =
flag "scan-listener-port-tcp" (optional int)
~doc:"INT CreateCloudVmClusterInputScanListenerPortTcpInteger"
and cloudExadataInfrastructureId =
flag "cloud-exadata-infrastructure-id" (required string)
~doc:"STRING ResourceIdOrArn"
and cpuCoreCount =
flag "cpu-core-count" (required int)
~doc:"INT CreateCloudVmClusterInputCpuCoreCountInteger"
and displayName =
flag "display-name" (required string)
~doc:"STRING ResourceDisplayName"
and giVersion =
flag "gi-version" (required string)
~doc:"STRING CreateCloudVmClusterInputGiVersionString"
and hostname =
flag "hostname" (required string)
~doc:"STRING CreateCloudVmClusterInputHostnameString"
and sshPublicKeys =
flag "ssh-public-keys" (required json_arg) ~doc:"JSON StringList"
and odbNetworkId =
flag "odb-network-id" (required string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_cloud_vm_cluster
(Values.CreateCloudVmClusterInput.make ?clusterName
?dataCollectionOptions:(Option.map
~f:Values.DataCollectionOptions.of_json
dataCollectionOptions)
?dataStorageSizeInTBs ?dbNodeStorageSizeInGBs
?dbServers:(Option.map ~f:Values.StringList.of_json dbServers)
?tags:(Option.map ~f:Values.RequestTagMap.of_json tags)
?isLocalBackupEnabled ?isSparseDiskgroupEnabled
?licenseModel:(Option.map ~f:Values.LicenseModel.of_json
licenseModel) ?memorySizeInGBs ?systemVersion
?timeZone ?clientToken ?scanListenerPortTcp
~cloudExadataInfrastructureId ~cpuCoreCount ~displayName
~giVersion ~hostname
~sshPublicKeys:(Values.StringList.of_json sshPublicKeys)
~odbNetworkId ())
(Some Values.CreateCloudVmClusterOutput.to_json)
(Some Values.CreateCloudVmClusterOutput.error_to_json)])
let create_odb_network =
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 availabilityZone =
flag "availability-zone" (optional string)
~doc:"STRING CreateOdbNetworkInputAvailabilityZoneString"
and availabilityZoneId =
flag "availability-zone-id" (optional string)
~doc:"STRING CreateOdbNetworkInputAvailabilityZoneIdString"
and backupSubnetCidr =
flag "backup-subnet-cidr" (optional string)
~doc:"STRING CreateOdbNetworkInputBackupSubnetCidrString"
and customDomainName =
flag "custom-domain-name" (optional string)
~doc:"STRING CreateOdbNetworkInputCustomDomainNameString"
and defaultDnsPrefix =
flag "default-dns-prefix" (optional string)
~doc:"STRING CreateOdbNetworkInputDefaultDnsPrefixString"
and clientToken =
flag "client-token" (optional string)
~doc:"STRING CreateOdbNetworkInputClientTokenString"
and s3Access = flag "s3-access" (optional json_arg) ~doc:"JSON Access"
and zeroEtlAccess =
flag "zero-etl-access" (optional json_arg) ~doc:"JSON Access"
and stsAccess =
flag "sts-access" (optional json_arg) ~doc:"JSON Access"
and kmsAccess =
flag "kms-access" (optional json_arg) ~doc:"JSON Access"
and s3PolicyDocument =
flag "s3-policy-document" (optional string)
~doc:"STRING PolicyDocument"
and stsPolicyDocument =
flag "sts-policy-document" (optional string)
~doc:"STRING PolicyDocument"
and kmsPolicyDocument =
flag "kms-policy-document" (optional string)
~doc:"STRING PolicyDocument"
and crossRegionS3RestoreSourcesToEnable =
flag "cross-region-s3-restore-sources-to-enable" (optional json_arg)
~doc:"JSON StringList"
and tags = flag "tags" (optional json_arg) ~doc:"JSON RequestTagMap"
and displayName =
flag "display-name" (required string)
~doc:"STRING ResourceDisplayName"
and clientSubnetCidr =
flag "client-subnet-cidr" (required string)
~doc:"STRING CreateOdbNetworkInputClientSubnetCidrString" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_odb_network
(Values.CreateOdbNetworkInput.make ?availabilityZone
?availabilityZoneId ?backupSubnetCidr ?customDomainName
?defaultDnsPrefix ?clientToken
?s3Access:(Option.map ~f:Values.Access.of_json s3Access)
?zeroEtlAccess:(Option.map ~f:Values.Access.of_json
zeroEtlAccess)
?stsAccess:(Option.map ~f:Values.Access.of_json stsAccess)
?kmsAccess:(Option.map ~f:Values.Access.of_json kmsAccess)
?s3PolicyDocument ?stsPolicyDocument ?kmsPolicyDocument
?crossRegionS3RestoreSourcesToEnable:(Option.map
~f:Values.StringList.of_json
crossRegionS3RestoreSourcesToEnable)
?tags:(Option.map ~f:Values.RequestTagMap.of_json tags)
~displayName ~clientSubnetCidr ())
(Some Values.CreateOdbNetworkOutput.to_json)
(Some Values.CreateOdbNetworkOutput.error_to_json)])
let create_odb_peering_connection =
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 displayName =
flag "display-name" (optional string)
~doc:"STRING ResourceDisplayName"
and peerNetworkCidrsToBeAdded =
flag "peer-network-cidrs-to-be-added" (optional json_arg)
~doc:"JSON PeeredCidrList"
and peerNetworkRouteTableIds =
flag "peer-network-route-table-ids" (optional json_arg)
~doc:"JSON PeerNetworkRouteTableIdList"
and clientToken =
flag "client-token" (optional string)
~doc:"STRING CreateOdbPeeringConnectionInputClientTokenString"
and tags = flag "tags" (optional json_arg) ~doc:"JSON RequestTagMap"
and odbNetworkId =
flag "odb-network-id" (required string)
~doc:"STRING ResourceIdOrArn"
and peerNetworkId =
flag "peer-network-id" (required string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_odb_peering_connection
(Values.CreateOdbPeeringConnectionInput.make ?displayName
?peerNetworkCidrsToBeAdded:(Option.map
~f:Values.PeeredCidrList.of_json
peerNetworkCidrsToBeAdded)
?peerNetworkRouteTableIds:(Option.map
~f:Values.PeerNetworkRouteTableIdList.of_json
peerNetworkRouteTableIds)
?clientToken
?tags:(Option.map ~f:Values.RequestTagMap.of_json tags)
~odbNetworkId ~peerNetworkId ())
(Some Values.CreateOdbPeeringConnectionOutput.to_json)
(Some Values.CreateOdbPeeringConnectionOutput.error_to_json)])
let delete_cloud_autonomous_vm_cluster =
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 cloudAutonomousVmClusterId =
flag "cloud-autonomous-vm-cluster-id" (required string)
~doc:"STRING ResourceId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_cloud_autonomous_vm_cluster
(Values.DeleteCloudAutonomousVmClusterInput.make
~cloudAutonomousVmClusterId ())
(Some Values.DeleteCloudAutonomousVmClusterOutput.to_json)
(Some Values.DeleteCloudAutonomousVmClusterOutput.error_to_json)])
let delete_cloud_exadata_infrastructure =
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 cloudExadataInfrastructureId =
flag "cloud-exadata-infrastructure-id" (required string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_cloud_exadata_infrastructure
(Values.DeleteCloudExadataInfrastructureInput.make
~cloudExadataInfrastructureId ())
(Some Values.DeleteCloudExadataInfrastructureOutput.to_json)
(Some Values.DeleteCloudExadataInfrastructureOutput.error_to_json)])
let delete_cloud_vm_cluster =
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 cloudVmClusterId =
flag "cloud-vm-cluster-id" (required string)
~doc:"STRING ResourceId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_cloud_vm_cluster
(Values.DeleteCloudVmClusterInput.make ~cloudVmClusterId ())
(Some Values.DeleteCloudVmClusterOutput.to_json)
(Some Values.DeleteCloudVmClusterOutput.error_to_json)])
let delete_odb_network =
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 odbNetworkId =
flag "odb-network-id" (required string)
~doc:"STRING ResourceIdOrArn"
and deleteAssociatedResources =
flag "delete-associated-resources" (required bool)
~doc:"BOOL Boolean" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_odb_network
(Values.DeleteOdbNetworkInput.make ~odbNetworkId
~deleteAssociatedResources ())
(Some Values.DeleteOdbNetworkOutput.to_json)
(Some Values.DeleteOdbNetworkOutput.error_to_json)])
let delete_odb_peering_connection =
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 odbPeeringConnectionId =
flag "odb-peering-connection-id" (required string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_odb_peering_connection
(Values.DeleteOdbPeeringConnectionInput.make
~odbPeeringConnectionId ())
(Some Values.DeleteOdbPeeringConnectionOutput.to_json)
(Some Values.DeleteOdbPeeringConnectionOutput.error_to_json)])
let disassociate_iam_role_from_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 iamRoleArn =
flag "iam-role-arn" (required string) ~doc:"STRING RoleArn"
and awsIntegration =
flag "aws-integration" (required json_arg)
~doc:"JSON SupportedAwsIntegration"
and resourceArn =
flag "resource-arn" (required string)
~doc:"STRING DisassociateIamRoleFromResourceInputResourceArnString" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.disassociate_iam_role_from_resource
(Values.DisassociateIamRoleFromResourceInput.make ~iamRoleArn
~awsIntegration:(Values.SupportedAwsIntegration.of_json
awsIntegration) ~resourceArn ())
(Some Values.DisassociateIamRoleFromResourceOutput.to_json)
(Some Values.DisassociateIamRoleFromResourceOutput.error_to_json)])
let get_cloud_autonomous_vm_cluster =
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 cloudAutonomousVmClusterId =
flag "cloud-autonomous-vm-cluster-id" (required string)
~doc:"STRING ResourceId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_cloud_autonomous_vm_cluster
(Values.GetCloudAutonomousVmClusterInput.make
~cloudAutonomousVmClusterId ())
(Some Values.GetCloudAutonomousVmClusterOutput.to_json)
(Some Values.GetCloudAutonomousVmClusterOutput.error_to_json)])
let get_cloud_exadata_infrastructure =
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 cloudExadataInfrastructureId =
flag "cloud-exadata-infrastructure-id" (required string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_cloud_exadata_infrastructure
(Values.GetCloudExadataInfrastructureInput.make
~cloudExadataInfrastructureId ())
(Some Values.GetCloudExadataInfrastructureOutput.to_json)
(Some Values.GetCloudExadataInfrastructureOutput.error_to_json)])
let get_cloud_exadata_infrastructure_unallocated_resources =
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 dbServers =
flag "db-servers" (optional json_arg) ~doc:"JSON StringList"
and cloudExadataInfrastructureId =
flag "cloud-exadata-infrastructure-id" (required string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_cloud_exadata_infrastructure_unallocated_resources
(Values.GetCloudExadataInfrastructureUnallocatedResourcesInput.make
?dbServers:(Option.map ~f:Values.StringList.of_json dbServers)
~cloudExadataInfrastructureId ())
(Some
Values.GetCloudExadataInfrastructureUnallocatedResourcesOutput.to_json)
(Some
Values.GetCloudExadataInfrastructureUnallocatedResourcesOutput.error_to_json)])
let get_cloud_vm_cluster =
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 cloudVmClusterId =
flag "cloud-vm-cluster-id" (required string)
~doc:"STRING ResourceId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_cloud_vm_cluster
(Values.GetCloudVmClusterInput.make ~cloudVmClusterId ())
(Some Values.GetCloudVmClusterOutput.to_json)
(Some Values.GetCloudVmClusterOutput.error_to_json)])
let get_db_node =
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 cloudVmClusterId =
flag "cloud-vm-cluster-id" (required string)
~doc:"STRING ResourceId"
and dbNodeId =
flag "db-node-id" (required string) ~doc:"STRING ResourceId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_db_node
(Values.GetDbNodeInput.make ~cloudVmClusterId ~dbNodeId ())
(Some Values.GetDbNodeOutput.to_json)
(Some Values.GetDbNodeOutput.error_to_json)])
let get_db_server =
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 cloudExadataInfrastructureId =
flag "cloud-exadata-infrastructure-id" (required string)
~doc:"STRING ResourceIdOrArn"
and dbServerId =
flag "db-server-id" (required string) ~doc:"STRING ResourceId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_db_server
(Values.GetDbServerInput.make ~cloudExadataInfrastructureId
~dbServerId ()) (Some Values.GetDbServerOutput.to_json)
(Some Values.GetDbServerOutput.error_to_json)])
let get_oci_onboarding_status =
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_oci_onboarding_status
(Values.GetOciOnboardingStatusInput.make ())
(Some Values.GetOciOnboardingStatusOutput.to_json)
(Some Values.GetOciOnboardingStatusOutput.error_to_json)])
let get_odb_network =
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 odbNetworkId =
flag "odb-network-id" (required string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_odb_network
(Values.GetOdbNetworkInput.make ~odbNetworkId ())
(Some Values.GetOdbNetworkOutput.to_json)
(Some Values.GetOdbNetworkOutput.error_to_json)])
let get_odb_peering_connection =
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 odbPeeringConnectionId =
flag "odb-peering-connection-id" (required string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_odb_peering_connection
(Values.GetOdbPeeringConnectionInput.make ~odbPeeringConnectionId
()) (Some Values.GetOdbPeeringConnectionOutput.to_json)
(Some Values.GetOdbPeeringConnectionOutput.error_to_json)])
let initialize_service =
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 ociIdentityDomain =
flag "oci-identity-domain" (optional bool) ~doc:"BOOL Boolean" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.initialize_service
(Values.InitializeServiceInput.make ?ociIdentityDomain ())
(Some Values.InitializeServiceOutput.to_json)
(Some Values.InitializeServiceOutput.error_to_json)])
let list_autonomous_virtual_machines =
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 ListAutonomousVirtualMachinesInputMaxResultsInteger"
and nextToken =
flag "next-token" (optional string)
~doc:"STRING ListAutonomousVirtualMachinesInputNextTokenString"
and cloudAutonomousVmClusterId =
flag "cloud-autonomous-vm-cluster-id" (required string)
~doc:"STRING ResourceId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_autonomous_virtual_machines
(Values.ListAutonomousVirtualMachinesInput.make ?maxResults
?nextToken ~cloudAutonomousVmClusterId ())
(Some Values.ListAutonomousVirtualMachinesOutput.to_json)
(Some Values.ListAutonomousVirtualMachinesOutput.error_to_json)])
let list_cloud_autonomous_vm_clusters =
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 ListCloudAutonomousVmClustersInputMaxResultsInteger"
and nextToken =
flag "next-token" (optional string)
~doc:"STRING ListCloudAutonomousVmClustersInputNextTokenString"
and cloudExadataInfrastructureId =
flag "cloud-exadata-infrastructure-id" (optional string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_cloud_autonomous_vm_clusters
(Values.ListCloudAutonomousVmClustersInput.make ?maxResults
?nextToken ?cloudExadataInfrastructureId ())
(Some Values.ListCloudAutonomousVmClustersOutput.to_json)
(Some Values.ListCloudAutonomousVmClustersOutput.error_to_json)])
let list_cloud_exadata_infrastructures =
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 ListCloudExadataInfrastructuresInputMaxResultsInteger"
and nextToken =
flag "next-token" (optional string)
~doc:"STRING ListCloudExadataInfrastructuresInputNextTokenString" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_cloud_exadata_infrastructures
(Values.ListCloudExadataInfrastructuresInput.make ?maxResults
?nextToken ())
(Some Values.ListCloudExadataInfrastructuresOutput.to_json)
(Some Values.ListCloudExadataInfrastructuresOutput.error_to_json)])
let list_cloud_vm_clusters =
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 ListCloudVmClustersInputMaxResultsInteger"
and nextToken =
flag "next-token" (optional string)
~doc:"STRING ListCloudVmClustersInputNextTokenString"
and cloudExadataInfrastructureId =
flag "cloud-exadata-infrastructure-id" (optional string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_cloud_vm_clusters
(Values.ListCloudVmClustersInput.make ?maxResults ?nextToken
?cloudExadataInfrastructureId ())
(Some Values.ListCloudVmClustersOutput.to_json)
(Some Values.ListCloudVmClustersOutput.error_to_json)])
let list_db_nodes =
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 ListDbNodesInputMaxResultsInteger"
and nextToken =
flag "next-token" (optional string)
~doc:"STRING ListDbNodesInputNextTokenString"
and cloudVmClusterId =
flag "cloud-vm-cluster-id" (required string)
~doc:"STRING ResourceId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_db_nodes
(Values.ListDbNodesInput.make ?maxResults ?nextToken
~cloudVmClusterId ()) (Some Values.ListDbNodesOutput.to_json)
(Some Values.ListDbNodesOutput.error_to_json)])
let list_db_servers =
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 ListDbServersInputMaxResultsInteger"
and nextToken =
flag "next-token" (optional string)
~doc:"STRING ListDbServersInputNextTokenString"
and cloudExadataInfrastructureId =
flag "cloud-exadata-infrastructure-id" (required string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_db_servers
(Values.ListDbServersInput.make ?maxResults ?nextToken
~cloudExadataInfrastructureId ())
(Some Values.ListDbServersOutput.to_json)
(Some Values.ListDbServersOutput.error_to_json)])
let list_db_system_shapes =
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 ListDbSystemShapesInputMaxResultsInteger"
and nextToken =
flag "next-token" (optional string)
~doc:"STRING ListDbSystemShapesInputNextTokenString"
and availabilityZone =
flag "availability-zone" (optional string)
~doc:"STRING ListDbSystemShapesInputAvailabilityZoneString"
and availabilityZoneId =
flag "availability-zone-id" (optional string)
~doc:"STRING ListDbSystemShapesInputAvailabilityZoneIdString" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_db_system_shapes
(Values.ListDbSystemShapesInput.make ?maxResults ?nextToken
?availabilityZone ?availabilityZoneId ())
(Some Values.ListDbSystemShapesOutput.to_json)
(Some Values.ListDbSystemShapesOutput.error_to_json)])
let list_gi_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 ListGiVersionsInputMaxResultsInteger"
and nextToken =
flag "next-token" (optional string)
~doc:"STRING ListGiVersionsInputNextTokenString"
and shape =
flag "shape" (optional string)
~doc:"STRING ListGiVersionsInputShapeString" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_gi_versions
(Values.ListGiVersionsInput.make ?maxResults ?nextToken ?shape ())
(Some Values.ListGiVersionsOutput.to_json)
(Some Values.ListGiVersionsOutput.error_to_json)])
let list_odb_networks =
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 ListOdbNetworksInputMaxResultsInteger"
and nextToken =
flag "next-token" (optional string)
~doc:"STRING ListOdbNetworksInputNextTokenString" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_odb_networks
(Values.ListOdbNetworksInput.make ?maxResults ?nextToken ())
(Some Values.ListOdbNetworksOutput.to_json)
(Some Values.ListOdbNetworksOutput.error_to_json)])
let list_odb_peering_connections =
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 ListOdbPeeringConnectionsInputMaxResultsInteger"
and nextToken =
flag "next-token" (optional string)
~doc:"STRING ListOdbPeeringConnectionsInputNextTokenString"
and odbNetworkId =
flag "odb-network-id" (optional string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_odb_peering_connections
(Values.ListOdbPeeringConnectionsInput.make ?maxResults ?nextToken
?odbNetworkId ())
(Some Values.ListOdbPeeringConnectionsOutput.to_json)
(Some Values.ListOdbPeeringConnectionsOutput.error_to_json)])
let list_system_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 ListSystemVersionsInputMaxResultsInteger"
and nextToken =
flag "next-token" (optional string)
~doc:"STRING ListSystemVersionsInputNextTokenString"
and giVersion =
flag "gi-version" (required string)
~doc:"STRING ListSystemVersionsInputGiVersionString"
and shape =
flag "shape" (required string)
~doc:"STRING ListSystemVersionsInputShapeString" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_system_versions
(Values.ListSystemVersionsInput.make ?maxResults ?nextToken
~giVersion ~shape ())
(Some Values.ListSystemVersionsOutput.to_json)
(Some Values.ListSystemVersionsOutput.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 ResourceArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_tags_for_resource
(Values.ListTagsForResourceRequest.make ~resourceArn ())
(Some Values.ListTagsForResourceResponse.to_json)
(Some Values.ListTagsForResourceResponse.error_to_json)])
let reboot_db_node =
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 cloudVmClusterId =
flag "cloud-vm-cluster-id" (required string)
~doc:"STRING ResourceId"
and dbNodeId =
flag "db-node-id" (required string) ~doc:"STRING ResourceId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.reboot_db_node
(Values.RebootDbNodeInput.make ~cloudVmClusterId ~dbNodeId ())
(Some Values.RebootDbNodeOutput.to_json)
(Some Values.RebootDbNodeOutput.error_to_json)])
let start_db_node =
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 cloudVmClusterId =
flag "cloud-vm-cluster-id" (required string)
~doc:"STRING ResourceId"
and dbNodeId =
flag "db-node-id" (required string) ~doc:"STRING ResourceId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.start_db_node
(Values.StartDbNodeInput.make ~cloudVmClusterId ~dbNodeId ())
(Some Values.StartDbNodeOutput.to_json)
(Some Values.StartDbNodeOutput.error_to_json)])
let stop_db_node =
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 cloudVmClusterId =
flag "cloud-vm-cluster-id" (required string)
~doc:"STRING ResourceId"
and dbNodeId =
flag "db-node-id" (required string) ~doc:"STRING ResourceId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.stop_db_node
(Values.StopDbNodeInput.make ~cloudVmClusterId ~dbNodeId ())
(Some Values.StopDbNodeOutput.to_json)
(Some Values.StopDbNodeOutput.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 ResourceArn"
and tags = flag "tags" (required json_arg) ~doc:"JSON RequestTagMap" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.tag_resource
(Values.TagResourceRequest.make ~resourceArn
~tags:(Values.RequestTagMap.of_json tags) ())
(Some Values.TagResourceResponse.to_json)
(Some Values.TagResourceResponse.error_to_json)])
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 ResourceArn"
and tagKeys = flag "tag-keys" (required json_arg) ~doc:"JSON TagKeys" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.untag_resource
(Values.UntagResourceRequest.make ~resourceArn
~tagKeys:(Values.TagKeys.of_json tagKeys) ())
(Some Values.UntagResourceResponse.to_json)
(Some Values.UntagResourceResponse.error_to_json)])
let update_cloud_exadata_infrastructure =
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 maintenanceWindow =
flag "maintenance-window" (optional json_arg)
~doc:"JSON MaintenanceWindow"
and cloudExadataInfrastructureId =
flag "cloud-exadata-infrastructure-id" (required string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.update_cloud_exadata_infrastructure
(Values.UpdateCloudExadataInfrastructureInput.make
?maintenanceWindow:(Option.map
~f:Values.MaintenanceWindow.of_json
maintenanceWindow)
~cloudExadataInfrastructureId ())
(Some Values.UpdateCloudExadataInfrastructureOutput.to_json)
(Some Values.UpdateCloudExadataInfrastructureOutput.error_to_json)])
let update_odb_network =
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 displayName =
flag "display-name" (optional string)
~doc:"STRING ResourceDisplayName"
and peeredCidrsToBeAdded =
flag "peered-cidrs-to-be-added" (optional json_arg)
~doc:"JSON StringList"
and peeredCidrsToBeRemoved =
flag "peered-cidrs-to-be-removed" (optional json_arg)
~doc:"JSON StringList"
and s3Access = flag "s3-access" (optional json_arg) ~doc:"JSON Access"
and zeroEtlAccess =
flag "zero-etl-access" (optional json_arg) ~doc:"JSON Access"
and stsAccess =
flag "sts-access" (optional json_arg) ~doc:"JSON Access"
and kmsAccess =
flag "kms-access" (optional json_arg) ~doc:"JSON Access"
and s3PolicyDocument =
flag "s3-policy-document" (optional string)
~doc:"STRING PolicyDocument"
and stsPolicyDocument =
flag "sts-policy-document" (optional string)
~doc:"STRING PolicyDocument"
and kmsPolicyDocument =
flag "kms-policy-document" (optional string)
~doc:"STRING PolicyDocument"
and crossRegionS3RestoreSourcesToEnable =
flag "cross-region-s3-restore-sources-to-enable" (optional json_arg)
~doc:"JSON StringList"
and crossRegionS3RestoreSourcesToDisable =
flag "cross-region-s3-restore-sources-to-disable"
(optional json_arg) ~doc:"JSON StringList"
and odbNetworkId =
flag "odb-network-id" (required string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.update_odb_network
(Values.UpdateOdbNetworkInput.make ?displayName
?peeredCidrsToBeAdded:(Option.map ~f:Values.StringList.of_json
peeredCidrsToBeAdded)
?peeredCidrsToBeRemoved:(Option.map
~f:Values.StringList.of_json
peeredCidrsToBeRemoved)
?s3Access:(Option.map ~f:Values.Access.of_json s3Access)
?zeroEtlAccess:(Option.map ~f:Values.Access.of_json
zeroEtlAccess)
?stsAccess:(Option.map ~f:Values.Access.of_json stsAccess)
?kmsAccess:(Option.map ~f:Values.Access.of_json kmsAccess)
?s3PolicyDocument ?stsPolicyDocument ?kmsPolicyDocument
?crossRegionS3RestoreSourcesToEnable:(Option.map
~f:Values.StringList.of_json
crossRegionS3RestoreSourcesToEnable)
?crossRegionS3RestoreSourcesToDisable:(Option.map
~f:Values.StringList.of_json
crossRegionS3RestoreSourcesToDisable)
~odbNetworkId ()) (Some Values.UpdateOdbNetworkOutput.to_json)
(Some Values.UpdateOdbNetworkOutput.error_to_json)])
let update_odb_peering_connection =
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 displayName =
flag "display-name" (optional string)
~doc:"STRING ResourceDisplayName"
and peerNetworkCidrsToBeAdded =
flag "peer-network-cidrs-to-be-added" (optional json_arg)
~doc:"JSON PeeredCidrList"
and peerNetworkCidrsToBeRemoved =
flag "peer-network-cidrs-to-be-removed" (optional json_arg)
~doc:"JSON PeeredCidrList"
and odbPeeringConnectionId =
flag "odb-peering-connection-id" (required string)
~doc:"STRING ResourceIdOrArn" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.update_odb_peering_connection
(Values.UpdateOdbPeeringConnectionInput.make ?displayName
?peerNetworkCidrsToBeAdded:(Option.map
~f:Values.PeeredCidrList.of_json
peerNetworkCidrsToBeAdded)
?peerNetworkCidrsToBeRemoved:(Option.map
~f:Values.PeeredCidrList.of_json
peerNetworkCidrsToBeRemoved)
~odbPeeringConnectionId ())
(Some Values.UpdateOdbPeeringConnectionOutput.to_json)
(Some Values.UpdateOdbPeeringConnectionOutput.error_to_json)])
let main =
Command.group
~summary:((Awso.Service.to_string Values.service) ^ " commands")
[("accept-marketplace-registration", accept_marketplace_registration);
("associate-iam-role-to-resource", associate_iam_role_to_resource);
("create-cloud-autonomous-vm-cluster",
create_cloud_autonomous_vm_cluster);
("create-cloud-exadata-infrastructure",
create_cloud_exadata_infrastructure);
("create-cloud-vm-cluster", create_cloud_vm_cluster);
("create-odb-network", create_odb_network);
("create-odb-peering-connection", create_odb_peering_connection);
("delete-cloud-autonomous-vm-cluster",
delete_cloud_autonomous_vm_cluster);
("delete-cloud-exadata-infrastructure",
delete_cloud_exadata_infrastructure);
("delete-cloud-vm-cluster", delete_cloud_vm_cluster);
("delete-odb-network", delete_odb_network);
("delete-odb-peering-connection", delete_odb_peering_connection);
("disassociate-iam-role-from-resource",
disassociate_iam_role_from_resource);
("get-cloud-autonomous-vm-cluster", get_cloud_autonomous_vm_cluster);
("get-cloud-exadata-infrastructure", get_cloud_exadata_infrastructure);
("get-cloud-exadata-infrastructure-unallocated-resources",
get_cloud_exadata_infrastructure_unallocated_resources);
("get-cloud-vm-cluster", get_cloud_vm_cluster);
("get-db-node", get_db_node);
("get-db-server", get_db_server);
("get-oci-onboarding-status", get_oci_onboarding_status);
("get-odb-network", get_odb_network);
("get-odb-peering-connection", get_odb_peering_connection);
("initialize-service", initialize_service);
("list-autonomous-virtual-machines", list_autonomous_virtual_machines);
("list-cloud-autonomous-vm-clusters", list_cloud_autonomous_vm_clusters);
("list-cloud-exadata-infrastructures",
list_cloud_exadata_infrastructures);
("list-cloud-vm-clusters", list_cloud_vm_clusters);
("list-db-nodes", list_db_nodes);
("list-db-servers", list_db_servers);
("list-db-system-shapes", list_db_system_shapes);
("list-gi-versions", list_gi_versions);
("list-odb-networks", list_odb_networks);
("list-odb-peering-connections", list_odb_peering_connections);
("list-system-versions", list_system_versions);
("list-tags-for-resource", list_tags_for_resource);
("reboot-db-node", reboot_db_node);
("start-db-node", start_db_node);
("stop-db-node", stop_db_node);
("tag-resource", tag_resource);
("untag-resource", untag_resource);
("update-cloud-exadata-infrastructure",
update_cloud_exadata_infrastructure);
("update-odb-network", update_odb_network);
("update-odb-peering-connection", update_odb_peering_connection)]