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
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
open Awso
open! Import
[@@@warning "-32"]
let service = Service.iotdeviceadvisor
let apiVersion = "2020-09-18"
let endpointPrefix = "api.iotdeviceadvisor"
let serviceFullName = "AWS IoT Core Device Advisor"
let signatureVersion = "v4"
let protocol = "rest_json"
let globalEndpoint = endpointPrefix ^ ".amazonaws.com"
let serviceAbbreviation = "AWSIoTDeviceAdvisor"
let simple_to_json to_value x =
Botodata.Json.value_to_json_scalar (to_value x)
let composed_to_json to_value x = Botodata.Json.value_to_json (to_value x)
let to_query to_value x = Client.Query.of_value (to_value x)
let structure_to_value_aux st ~f =
let filter = function | (k, Some v) -> Some (k, v) | _ -> None in
let pair k v = (k, v) in
let defer_value (k, dv) = pair k dv in
((List.filter_map st ~f:filter) |> (List.map ~f:defer_value)) |>
(fun x -> `Structure (f x))
let structure_to_value = structure_to_value_aux ~f:Fn.id
let structure_to_wrapped_value ~wrapper ~response =
structure_to_value_aux
~f:(fun x -> [(wrapper, (`Structure x)); (response, (`Structure []))])
module Failure =
struct
type nonrec t = string
let context_ = "Failure"
let make i = i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"Failure" j
let to_json = simple_to_json to_value
end
module SystemMessage =
struct
type nonrec t = string
let context_ = "SystemMessage"
let make i = i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"SystemMessage" j
let to_json = simple_to_json to_value
end
module TestCaseScenarioId =
struct
type nonrec t = string
let context_ = "TestCaseScenarioId"
let make i = i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"TestCaseScenarioId" j
let to_json = simple_to_json to_value
end
module TestCaseScenarioStatus =
struct
type nonrec t =
| PASS
| FAIL
| CANCELED
| PENDING
| RUNNING
| STOPPING
| STOPPED
| PASS_WITH_WARNINGS
| ERROR
| Non_static_id of string
let make i = i
let to_string =
function
| PASS -> "PASS"
| FAIL -> "FAIL"
| CANCELED -> "CANCELED"
| PENDING -> "PENDING"
| RUNNING -> "RUNNING"
| STOPPING -> "STOPPING"
| STOPPED -> "STOPPED"
| PASS_WITH_WARNINGS -> "PASS_WITH_WARNINGS"
| ERROR -> "ERROR"
| Non_static_id s -> s
let of_string =
function
| "PASS" -> PASS
| "FAIL" -> FAIL
| "CANCELED" -> CANCELED
| "PENDING" -> PENDING
| "RUNNING" -> RUNNING
| "STOPPING" -> STOPPING
| "STOPPED" -> STOPPED
| "PASS_WITH_WARNINGS" -> PASS_WITH_WARNINGS
| "ERROR" -> ERROR
| x -> Non_static_id x
let to_value x = `Enum (to_string x)
let to_query v = to_query to_value v
let x = to_string x
let of_xml xml_arg0 =
of_string
(string_of_xml ~kind:"enumeration TestCaseScenarioStatus" xml_arg0)
let of_json j =
of_string (string_of_json ~kind:"TestCaseScenarioStatus" j)
let to_json = simple_to_json to_value
end
module TestCaseScenarioType =
struct
type nonrec t =
| Advanced
| Basic
| Non_static_id of string
let make i = i
let to_string =
function
| Advanced -> "Advanced"
| Basic -> "Basic"
| Non_static_id s -> s
let of_string =
function
| "Advanced" -> Advanced
| "Basic" -> Basic
| x -> Non_static_id x
let to_value x = `Enum (to_string x)
let to_query v = to_query to_value v
let x = to_string x
let of_xml xml_arg0 =
of_string
(string_of_xml ~kind:"enumeration TestCaseScenarioType" xml_arg0)
let of_json j = of_string (string_of_json ~kind:"TestCaseScenarioType" j)
let to_json = simple_to_json to_value
end
module TestCaseScenario =
struct
type nonrec t =
{
testCaseScenarioId: TestCaseScenarioId.t option
[@ocaml.doc "Provides test case scenario ID."];
testCaseScenarioType: TestCaseScenarioType.t option
[@ocaml.doc
"Provides test case scenario type. Type is one of the following: Advanced Basic"];
status: TestCaseScenarioStatus.t option
[@ocaml.doc
"Provides the test case scenario status. Status is one of the following: PASS: Test passed. FAIL: Test failed. PENDING: Test has not started running but is scheduled. RUNNING: Test is running. STOPPING: Test is performing cleanup steps. You will see this status only if you stop a suite run. STOPPED Test is stopped. You will see this status only if you stop a suite run. PASS_WITH_WARNINGS: Test passed with warnings. ERORR: Test faced an error when running due to an internal issue."];
failure: Failure.t option
[@ocaml.doc "Provides test case scenario failure result."];
systemMessage: SystemMessage.t option
[@ocaml.doc "Provides test case scenario system messages if any."]}
let make ?testCaseScenarioId =
fun ?testCaseScenarioType ->
fun ?status ->
fun ?failure ->
fun ?systemMessage ->
fun () ->
{
testCaseScenarioId;
testCaseScenarioType;
status;
failure;
systemMessage
}
let to_value x =
structure_to_value
[("testCaseScenarioId",
(Option.map x.testCaseScenarioId ~f:TestCaseScenarioId.to_value));
("testCaseScenarioType",
(Option.map x.testCaseScenarioType ~f:TestCaseScenarioType.to_value));
("status", (Option.map x.status ~f:TestCaseScenarioStatus.to_value));
("failure", (Option.map x.failure ~f:Failure.to_value));
("systemMessage",
(Option.map x.systemMessage ~f:SystemMessage.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let systemMessage =
(Option.map ~f:SystemMessage.of_xml)
(Xml.child xml_arg0 "systemMessage") in
let failure =
(Option.map ~f:Failure.of_xml) (Xml.child xml_arg0 "failure") in
let status =
(Option.map ~f:TestCaseScenarioStatus.of_xml)
(Xml.child xml_arg0 "status") in
let testCaseScenarioType =
(Option.map ~f:TestCaseScenarioType.of_xml)
(Xml.child xml_arg0 "testCaseScenarioType") in
let testCaseScenarioId =
(Option.map ~f:TestCaseScenarioId.of_xml)
(Xml.child xml_arg0 "testCaseScenarioId") in
make ?systemMessage ?failure ?status ?testCaseScenarioType
?testCaseScenarioId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let systemMessage =
field_map json__ "systemMessage" SystemMessage.of_json in
let failure = field_map json__ "failure" Failure.of_json in
let status = field_map json__ "status" TestCaseScenarioStatus.of_json in
let testCaseScenarioType =
field_map json__ "testCaseScenarioType" TestCaseScenarioType.of_json in
let testCaseScenarioId =
field_map json__ "testCaseScenarioId" TestCaseScenarioId.of_json in
make ?systemMessage ?failure ?status ?testCaseScenarioType
?testCaseScenarioId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Provides test case scenario."]
module LogUrl =
struct
type nonrec t = string
let context_ = "LogUrl"
let make i = i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"LogUrl" j
let to_json = simple_to_json to_value
end
module Status =
struct
type nonrec t =
| PASS
| FAIL
| CANCELED
| PENDING
| RUNNING
| STOPPING
| STOPPED
| PASS_WITH_WARNINGS
| ERROR
| Non_static_id of string
let make i = i
let to_string =
function
| PASS -> "PASS"
| FAIL -> "FAIL"
| CANCELED -> "CANCELED"
| PENDING -> "PENDING"
| RUNNING -> "RUNNING"
| STOPPING -> "STOPPING"
| STOPPED -> "STOPPED"
| PASS_WITH_WARNINGS -> "PASS_WITH_WARNINGS"
| ERROR -> "ERROR"
| Non_static_id s -> s
let of_string =
function
| "PASS" -> PASS
| "FAIL" -> FAIL
| "CANCELED" -> CANCELED
| "PENDING" -> PENDING
| "RUNNING" -> RUNNING
| "STOPPING" -> STOPPING
| "STOPPED" -> STOPPED
| "PASS_WITH_WARNINGS" -> PASS_WITH_WARNINGS
| "ERROR" -> ERROR
| x -> Non_static_id x
let to_value x = `Enum (to_string x)
let to_query v = to_query to_value v
let x = to_string x
let of_xml xml_arg0 =
of_string (string_of_xml ~kind:"enumeration Status" xml_arg0)
let of_json j = of_string (string_of_json ~kind:"Status" j)
let to_json = simple_to_json to_value
end
module TestCaseDefinitionName =
struct
type nonrec t = string
let context_ = "TestCaseDefinitionName"
let make i = i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"TestCaseDefinitionName" j
let to_json = simple_to_json to_value
end
module TestCaseScenariosList =
struct
type nonrec t = TestCaseScenario.t list
let make i = i
let of_string _ =
failwithf "of_string is not implemented for List_shape objects" ()
[@@warning "-32"]
let to_value xs =
(xs |> (List.map ~f:TestCaseScenario.to_value)) |> (fun x -> `List x)
let to_query v = to_query to_value v
let _ =
failwithf "to_header is not implemented for List_shape objects" ()
let of_xml x =
make
(List.map
((Xml.all_children x) |>
(List.filter
~f:(function
| `Data s ->
(match Stdlib.String.trim s with
| "" -> false
| _ -> true)
| _ -> true))) ~f:TestCaseScenario.of_xml)
let of_json j =
list_of_json ~kind:"TestCaseScenariosList"
~of_json:TestCaseScenario.of_json j
let to_json v = composed_to_json to_value v
end
module Timestamp =
struct
type nonrec t = string
let make i = i
let of_string x = x
let to_value x = `Timestamp x
let to_query v = to_query to_value v
let x = x
let of_xml = string_of_xml ~kind:"a timestamp"
let of_json = timestamp_of_json
let to_json = simple_to_json to_value
end
module UUID =
struct
type nonrec t = string
let context_ = "UUID"
let make i =
let open Result in
ok_or_failwith
((check_string_max i ~max:36) >>=
(fun () -> check_string_min i ~min:12));
i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"UUID" j
let to_json = simple_to_json to_value
end
module Warnings =
struct
type nonrec t = string
let context_ = "Warnings"
let make i = i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"Warnings" j
let to_json = simple_to_json to_value
end
module AmazonResourceName =
struct
type nonrec t = string
let context_ = "AmazonResourceName"
let make i =
let open Result in
ok_or_failwith
((check_string_max i ~max:2048) >>=
(fun () -> check_string_min i ~min:20));
i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"AmazonResourceName" j
let to_json = simple_to_json to_value
end
module TestCaseRun =
struct
type nonrec t =
{
testCaseRunId: UUID.t option
[@ocaml.doc "Provides the test case run ID."];
testCaseDefinitionId: UUID.t option
[@ocaml.doc "Provides the test case run definition ID."];
testCaseDefinitionName: TestCaseDefinitionName.t option
[@ocaml.doc "Provides the test case run definition name."];
status: Status.t option
[@ocaml.doc
"Provides the test case run status. Status is one of the following: PASS: Test passed. FAIL: Test failed. PENDING: Test has not started running but is scheduled. RUNNING: Test is running. STOPPING: Test is performing cleanup steps. You will see this status only if you stop a suite run. STOPPED Test is stopped. You will see this status only if you stop a suite run. PASS_WITH_WARNINGS: Test passed with warnings. ERORR: Test faced an error when running due to an internal issue."];
startTime: Timestamp.t option
[@ocaml.doc "Provides test case run start time."];
endTime: Timestamp.t option
[@ocaml.doc "Provides test case run end time."];
logUrl: LogUrl.t option [@ocaml.doc "Provides test case run log URL."];
warnings: Warnings.t option
[@ocaml.doc "Provides test case run warnings."];
failure: Failure.t option
[@ocaml.doc "Provides test case run failure result."];
testScenarios: TestCaseScenariosList.t option
[@ocaml.doc "Provides the test scenarios for the test case run."]}
let make ?testCaseRunId =
fun ?testCaseDefinitionId ->
fun ?testCaseDefinitionName ->
fun ?status ->
fun ?startTime ->
fun ?endTime ->
fun ?logUrl ->
fun ?warnings ->
fun ?failure ->
fun ?testScenarios ->
fun () ->
{
testCaseRunId;
testCaseDefinitionId;
testCaseDefinitionName;
status;
startTime;
endTime;
logUrl;
warnings;
failure;
testScenarios
}
let to_value x =
structure_to_value
[("testCaseRunId", (Option.map x.testCaseRunId ~f:UUID.to_value));
("testCaseDefinitionId",
(Option.map x.testCaseDefinitionId ~f:UUID.to_value));
("testCaseDefinitionName",
(Option.map x.testCaseDefinitionName
~f:TestCaseDefinitionName.to_value));
("status", (Option.map x.status ~f:Status.to_value));
("startTime", (Option.map x.startTime ~f:Timestamp.to_value));
("endTime", (Option.map x.endTime ~f:Timestamp.to_value));
("logUrl", (Option.map x.logUrl ~f:LogUrl.to_value));
("warnings", (Option.map x.warnings ~f:Warnings.to_value));
("failure", (Option.map x.failure ~f:Failure.to_value));
("testScenarios",
(Option.map x.testScenarios ~f:TestCaseScenariosList.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let testScenarios =
(Option.map ~f:TestCaseScenariosList.of_xml)
(Xml.child xml_arg0 "testScenarios") in
let failure =
(Option.map ~f:Failure.of_xml) (Xml.child xml_arg0 "failure") in
let warnings =
(Option.map ~f:Warnings.of_xml) (Xml.child xml_arg0 "warnings") in
let logUrl =
(Option.map ~f:LogUrl.of_xml) (Xml.child xml_arg0 "logUrl") in
let endTime =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "endTime") in
let startTime =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "startTime") in
let status =
(Option.map ~f:Status.of_xml) (Xml.child xml_arg0 "status") in
let testCaseDefinitionName =
(Option.map ~f:TestCaseDefinitionName.of_xml)
(Xml.child xml_arg0 "testCaseDefinitionName") in
let testCaseDefinitionId =
(Option.map ~f:UUID.of_xml)
(Xml.child xml_arg0 "testCaseDefinitionId") in
let testCaseRunId =
(Option.map ~f:UUID.of_xml) (Xml.child xml_arg0 "testCaseRunId") in
make ?testScenarios ?failure ?warnings ?logUrl ?endTime ?startTime
?status ?testCaseDefinitionName ?testCaseDefinitionId ?testCaseRunId
()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let testScenarios =
field_map json__ "testScenarios" TestCaseScenariosList.of_json in
let failure = field_map json__ "failure" Failure.of_json in
let warnings = field_map json__ "warnings" Warnings.of_json in
let logUrl = field_map json__ "logUrl" LogUrl.of_json in
let endTime = field_map json__ "endTime" Timestamp.of_json in
let startTime = field_map json__ "startTime" Timestamp.of_json in
let status = field_map json__ "status" Status.of_json in
let testCaseDefinitionName =
field_map json__ "testCaseDefinitionName"
TestCaseDefinitionName.of_json in
let testCaseDefinitionId =
field_map json__ "testCaseDefinitionId" UUID.of_json in
let testCaseRunId = field_map json__ "testCaseRunId" UUID.of_json in
make ?testScenarios ?failure ?warnings ?logUrl ?endTime ?startTime
?status ?testCaseDefinitionName ?testCaseDefinitionId ?testCaseRunId
()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Provides the test case run."]
module DeviceUnderTest =
struct
type nonrec t =
{
thingArn: AmazonResourceName.t option
[@ocaml.doc "Lists device's thing ARN."];
certificateArn: AmazonResourceName.t option
[@ocaml.doc "Lists device's certificate ARN."];
deviceRoleArn: AmazonResourceName.t option
[@ocaml.doc "Lists device's role ARN."]}
let make ?thingArn =
fun ?certificateArn ->
fun ?deviceRoleArn ->
fun () -> { thingArn; certificateArn; deviceRoleArn }
let to_value x =
structure_to_value
[("thingArn", (Option.map x.thingArn ~f:AmazonResourceName.to_value));
("certificateArn",
(Option.map x.certificateArn ~f:AmazonResourceName.to_value));
("deviceRoleArn",
(Option.map x.deviceRoleArn ~f:AmazonResourceName.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let deviceRoleArn =
(Option.map ~f:AmazonResourceName.of_xml)
(Xml.child xml_arg0 "deviceRoleArn") in
let certificateArn =
(Option.map ~f:AmazonResourceName.of_xml)
(Xml.child xml_arg0 "certificateArn") in
let thingArn =
(Option.map ~f:AmazonResourceName.of_xml)
(Xml.child xml_arg0 "thingArn") in
make ?deviceRoleArn ?certificateArn ?thingArn ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let deviceRoleArn =
field_map json__ "deviceRoleArn" AmazonResourceName.of_json in
let certificateArn =
field_map json__ "certificateArn" AmazonResourceName.of_json in
let thingArn = field_map json__ "thingArn" AmazonResourceName.of_json in
make ?deviceRoleArn ?certificateArn ?thingArn ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Information of a test device. A thing ARN, certificate ARN or device role ARN is required."]
module GroupName =
struct
type nonrec t = string
let context_ = "GroupName"
let make i = i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"GroupName" j
let to_json = simple_to_json to_value
end
module TestCaseRuns =
struct
type nonrec t = TestCaseRun.t list
let make i = i
let of_string _ =
failwithf "of_string is not implemented for List_shape objects" ()
[@@warning "-32"]
let to_value xs =
(xs |> (List.map ~f:TestCaseRun.to_value)) |> (fun x -> `List x)
let to_query v = to_query to_value v
let _ =
failwithf "to_header is not implemented for List_shape objects" ()
let of_xml x =
make
(List.map
((Xml.all_children x) |>
(List.filter
~f:(function
| `Data s ->
(match Stdlib.String.trim s with
| "" -> false
| _ -> true)
| _ -> true))) ~f:TestCaseRun.of_xml)
let of_json j =
list_of_json ~kind:"TestCaseRuns" ~of_json:TestCaseRun.of_json j
let to_json v = composed_to_json to_value v
end
module SuiteDefinitionName =
struct
type nonrec t = string
let context_ = "SuiteDefinitionName"
let make i =
let open Result in
ok_or_failwith
((check_string_max i ~max:256) >>=
(fun () -> check_string_min i ~min:1));
i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"SuiteDefinitionName" j
let to_json = simple_to_json to_value
end
module SuiteDefinitionVersion =
struct
type nonrec t = string
let context_ = "SuiteDefinitionVersion"
let make i =
let open Result in
ok_or_failwith
((check_string_max i ~max:255) >>=
(fun () -> check_string_min i ~min:2));
i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"SuiteDefinitionVersion" j
let to_json = simple_to_json to_value
end
module SuiteRunResultCount =
struct
type nonrec t = int
let make i =
let open Result in
ok_or_failwith
((check_int_max i ~max:500) >>= (fun () -> check_int_min i ~min:0));
i
let of_string = Int.of_string
let to_value x = `Integer x
let to_query v = to_query to_value v
let x = Int.to_string x
let of_xml xml_arg0 =
Int.of_string
(string_of_xml ~kind:"an integer for SuiteRunResultCount" xml_arg0)
let of_json j = Int.of_float (float_of_json ~kind:"an integer" j)
let to_json = simple_to_json to_value
end
module SuiteRunStatus =
struct
type nonrec t =
| PASS
| FAIL
| CANCELED
| PENDING
| RUNNING
| STOPPING
| STOPPED
| PASS_WITH_WARNINGS
| ERROR
| Non_static_id of string
let make i = i
let to_string =
function
| PASS -> "PASS"
| FAIL -> "FAIL"
| CANCELED -> "CANCELED"
| PENDING -> "PENDING"
| RUNNING -> "RUNNING"
| STOPPING -> "STOPPING"
| STOPPED -> "STOPPED"
| PASS_WITH_WARNINGS -> "PASS_WITH_WARNINGS"
| ERROR -> "ERROR"
| Non_static_id s -> s
let of_string =
function
| "PASS" -> PASS
| "FAIL" -> FAIL
| "CANCELED" -> CANCELED
| "PENDING" -> PENDING
| "RUNNING" -> RUNNING
| "STOPPING" -> STOPPING
| "STOPPED" -> STOPPED
| "PASS_WITH_WARNINGS" -> PASS_WITH_WARNINGS
| "ERROR" -> ERROR
| x -> Non_static_id x
let to_value x = `Enum (to_string x)
let to_query v = to_query to_value v
let x = to_string x
let of_xml xml_arg0 =
of_string (string_of_xml ~kind:"enumeration SuiteRunStatus" xml_arg0)
let of_json j = of_string (string_of_json ~kind:"SuiteRunStatus" j)
let to_json = simple_to_json to_value
end
module DeviceUnderTestList =
struct
type nonrec t = DeviceUnderTest.t list
let make i =
let open Result in
ok_or_failwith
((check_list_max i ~max:2) >>= (fun () -> check_list_min i ~min:0));
i
let of_string _ =
failwithf "of_string is not implemented for List_shape objects" ()
[@@warning "-32"]
let to_value xs =
(xs |> (List.map ~f:DeviceUnderTest.to_value)) |> (fun x -> `List x)
let to_query v = to_query to_value v
let _ =
failwithf "to_header is not implemented for List_shape objects" ()
let of_xml x =
make
(List.map
((Xml.all_children x) |>
(List.filter
~f:(function
| `Data s ->
(match Stdlib.String.trim s with
| "" -> false
| _ -> true)
| _ -> true))) ~f:DeviceUnderTest.of_xml)
let of_json j =
list_of_json ~kind:"DeviceUnderTestList"
~of_json:DeviceUnderTest.of_json j
let to_json v = composed_to_json to_value v
end
module IntendedForQualificationBoolean =
struct
type nonrec t = bool
let make i = i
let of_string = Bool.of_string
let to_value x = `Boolean x
let to_query v = to_query to_value v
let x = Bool.to_string x
let of_xml xml_arg0 =
Bool.of_string (string_of_xml ~kind:"a boolean" xml_arg0)
let of_json = bool_of_json
let to_json = simple_to_json to_value
end
module IsLongDurationTestBoolean =
struct
type nonrec t = bool
let make i = i
let of_string = Bool.of_string
let to_value x = `Boolean x
let to_query v = to_query to_value v
let x = Bool.to_string x
let of_xml xml_arg0 =
Bool.of_string (string_of_xml ~kind:"a boolean" xml_arg0)
let of_json = bool_of_json
let to_json = simple_to_json to_value
end
module Protocol =
struct
type nonrec t =
| MqttV3_1_1
| MqttV5
| MqttV3_1_1_OverWebSocket
| MqttV5_OverWebSocket
| Non_static_id of string
let make i = i
let to_string =
function
| MqttV3_1_1 -> "MqttV3_1_1"
| MqttV5 -> "MqttV5"
| MqttV3_1_1_OverWebSocket -> "MqttV3_1_1_OverWebSocket"
| MqttV5_OverWebSocket -> "MqttV5_OverWebSocket"
| Non_static_id s -> s
let of_string =
function
| "MqttV3_1_1" -> MqttV3_1_1
| "MqttV5" -> MqttV5
| "MqttV3_1_1_OverWebSocket" -> MqttV3_1_1_OverWebSocket
| "MqttV5_OverWebSocket" -> MqttV5_OverWebSocket
| x -> Non_static_id x
let to_value x = `Enum (to_string x)
let to_query v = to_query to_value v
let x = to_string x
let of_xml xml_arg0 =
of_string (string_of_xml ~kind:"enumeration Protocol" xml_arg0)
let of_json j = of_string (string_of_json ~kind:"Protocol" j)
let to_json = simple_to_json to_value
end
module GroupResult =
struct
type nonrec t =
{
groupId: UUID.t option [@ocaml.doc "Group result ID."];
groupName: GroupName.t option [@ocaml.doc "Group Result Name."];
tests: TestCaseRuns.t option [@ocaml.doc "Tests under Group Result."]}
let make ?groupId =
fun ?groupName -> fun ?tests -> fun () -> { groupId; groupName; tests }
let to_value x =
structure_to_value
[("groupId", (Option.map x.groupId ~f:UUID.to_value));
("groupName", (Option.map x.groupName ~f:GroupName.to_value));
("tests", (Option.map x.tests ~f:TestCaseRuns.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let tests =
(Option.map ~f:TestCaseRuns.of_xml) (Xml.child xml_arg0 "tests") in
let groupName =
(Option.map ~f:GroupName.of_xml) (Xml.child xml_arg0 "groupName") in
let groupId =
(Option.map ~f:UUID.of_xml) (Xml.child xml_arg0 "groupId") in
make ?tests ?groupName ?groupId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let tests = field_map json__ "tests" TestCaseRuns.of_json in
let groupName = field_map json__ "groupName" GroupName.of_json in
let groupId = field_map json__ "groupId" UUID.of_json in
make ?tests ?groupName ?groupId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Show Group Result."]
module Message =
struct
type nonrec t = string
let context_ = "Message"
let make i =
let open Result in
ok_or_failwith
((check_string_max i ~max:2048) >>=
(fun () -> check_string_min i ~min:1));
i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"Message" j
let to_json = simple_to_json to_value
end
module RootGroup =
struct
type nonrec t = string
let context_ = "RootGroup"
let make i =
let open Result in
ok_or_failwith
((check_string_max i ~max:2048) >>=
(fun () -> check_string_min i ~min:0));
i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"RootGroup" j
let to_json = simple_to_json to_value
end
module String128 =
struct
type nonrec t = string
let context_ = "String128"
let make i =
let open Result in
ok_or_failwith
((check_string_max i ~max:128) >>=
(fun () -> check_string_min i ~min:1));
i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"String128" j
let to_json = simple_to_json to_value
end
module String256 =
struct
type nonrec t = string
let context_ = "String256"
let make i =
let open Result in
ok_or_failwith
((check_string_max i ~max:256) >>=
(fun () -> check_string_min i ~min:1));
i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"String256" j
let to_json = simple_to_json to_value
end
module ParallelRun =
struct
type nonrec t = bool
let make i = i
let of_string = Bool.of_string
let to_value x = `Boolean x
let to_query v = to_query to_value v
let x = Bool.to_string x
let of_xml xml_arg0 =
Bool.of_string (string_of_xml ~kind:"a boolean" xml_arg0)
let of_json = bool_of_json
let to_json = simple_to_json to_value
end
module SelectedTestList =
struct
type nonrec t = UUID.t list
let make i =
let open Result in
ok_or_failwith
((check_list_max i ~max:100) >>=
(fun () -> check_list_min i ~min:0));
i
let of_string _ =
failwithf "of_string is not implemented for List_shape objects" ()
[@@warning "-32"]
let to_value xs =
(xs |> (List.map ~f:UUID.to_value)) |> (fun x -> `List x)
let to_query v = to_query to_value v
let _ =
failwithf "to_header is not implemented for List_shape objects" ()
let of_xml x =
make
(List.map
((Xml.all_children x) |>
(List.filter
~f:(function
| `Data s ->
(match Stdlib.String.trim s with
| "" -> false
| _ -> true)
| _ -> true))) ~f:UUID.of_xml)
let of_json j =
list_of_json ~kind:"SelectedTestList" ~of_json:UUID.of_json j
let to_json v = composed_to_json to_value v
end
module SuiteRunInformation =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t option
[@ocaml.doc "Suite definition ID of the suite run."];
suiteDefinitionVersion: SuiteDefinitionVersion.t option
[@ocaml.doc "Suite definition version of the suite run."];
suiteDefinitionName: SuiteDefinitionName.t option
[@ocaml.doc "Suite definition name of the suite run."];
suiteRunId: UUID.t option [@ocaml.doc "Suite run ID of the suite run."];
createdAt: Timestamp.t option
[@ocaml.doc
"Date (in Unix epoch time) when the suite run was created."];
startedAt: Timestamp.t option
[@ocaml.doc
"Date (in Unix epoch time) when the suite run was started."];
endAt: Timestamp.t option
[@ocaml.doc "Date (in Unix epoch time) when the suite run ended."];
status: SuiteRunStatus.t option [@ocaml.doc "Status of the suite run."];
passed: SuiteRunResultCount.t option
[@ocaml.doc "Number of test cases that passed in the suite run."];
failed: SuiteRunResultCount.t option
[@ocaml.doc "Number of test cases that failed in the suite run."]}
let make ?suiteDefinitionId =
fun ?suiteDefinitionVersion ->
fun ?suiteDefinitionName ->
fun ?suiteRunId ->
fun ?createdAt ->
fun ?startedAt ->
fun ?endAt ->
fun ?status ->
fun ?passed ->
fun ?failed ->
fun () ->
{
suiteDefinitionId;
suiteDefinitionVersion;
suiteDefinitionName;
suiteRunId;
createdAt;
startedAt;
endAt;
status;
passed;
failed
}
let to_value x =
structure_to_value
[("suiteDefinitionId",
(Option.map x.suiteDefinitionId ~f:UUID.to_value));
("suiteDefinitionVersion",
(Option.map x.suiteDefinitionVersion
~f:SuiteDefinitionVersion.to_value));
("suiteDefinitionName",
(Option.map x.suiteDefinitionName ~f:SuiteDefinitionName.to_value));
("suiteRunId", (Option.map x.suiteRunId ~f:UUID.to_value));
("createdAt", (Option.map x.createdAt ~f:Timestamp.to_value));
("startedAt", (Option.map x.startedAt ~f:Timestamp.to_value));
("endAt", (Option.map x.endAt ~f:Timestamp.to_value));
("status", (Option.map x.status ~f:SuiteRunStatus.to_value));
("passed", (Option.map x.passed ~f:SuiteRunResultCount.to_value));
("failed", (Option.map x.failed ~f:SuiteRunResultCount.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let failed =
(Option.map ~f:SuiteRunResultCount.of_xml)
(Xml.child xml_arg0 "failed") in
let passed =
(Option.map ~f:SuiteRunResultCount.of_xml)
(Xml.child xml_arg0 "passed") in
let status =
(Option.map ~f:SuiteRunStatus.of_xml) (Xml.child xml_arg0 "status") in
let endAt =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "endAt") in
let startedAt =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "startedAt") in
let createdAt =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "createdAt") in
let suiteRunId =
(Option.map ~f:UUID.of_xml) (Xml.child xml_arg0 "suiteRunId") in
let suiteDefinitionName =
(Option.map ~f:SuiteDefinitionName.of_xml)
(Xml.child xml_arg0 "suiteDefinitionName") in
let suiteDefinitionVersion =
(Option.map ~f:SuiteDefinitionVersion.of_xml)
(Xml.child xml_arg0 "suiteDefinitionVersion") in
let suiteDefinitionId =
(Option.map ~f:UUID.of_xml) (Xml.child xml_arg0 "suiteDefinitionId") in
make ?failed ?passed ?status ?endAt ?startedAt ?createdAt ?suiteRunId
?suiteDefinitionName ?suiteDefinitionVersion ?suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let failed = field_map json__ "failed" SuiteRunResultCount.of_json in
let passed = field_map json__ "passed" SuiteRunResultCount.of_json in
let status = field_map json__ "status" SuiteRunStatus.of_json in
let endAt = field_map json__ "endAt" Timestamp.of_json in
let startedAt = field_map json__ "startedAt" Timestamp.of_json in
let createdAt = field_map json__ "createdAt" Timestamp.of_json in
let suiteRunId = field_map json__ "suiteRunId" UUID.of_json in
let suiteDefinitionName =
field_map json__ "suiteDefinitionName" SuiteDefinitionName.of_json in
let suiteDefinitionVersion =
field_map json__ "suiteDefinitionVersion"
SuiteDefinitionVersion.of_json in
let suiteDefinitionId =
field_map json__ "suiteDefinitionId" UUID.of_json in
make ?failed ?passed ?status ?endAt ?startedAt ?createdAt ?suiteRunId
?suiteDefinitionName ?suiteDefinitionVersion ?suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Information about the suite run. Requires permission to access the SuiteRunInformation action."]
module SuiteDefinitionInformation =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t option
[@ocaml.doc "Suite definition ID of the test suite."];
suiteDefinitionName: SuiteDefinitionName.t option
[@ocaml.doc "Suite name of the test suite."];
defaultDevices: DeviceUnderTestList.t option
[@ocaml.doc
"Specifies the devices that are under test for the test suite."];
intendedForQualification: IntendedForQualificationBoolean.t option
[@ocaml.doc
"Specifies if the test suite is intended for qualification."];
isLongDurationTest: IsLongDurationTestBoolean.t option
[@ocaml.doc "Verifies if the test suite is a long duration test."];
protocol: Protocol.t option
[@ocaml.doc
"Gets the MQTT protocol that is configured in the suite definition."];
createdAt: Timestamp.t option
[@ocaml.doc
"Date (in Unix epoch time) when the test suite was created."]}
let make ?suiteDefinitionId =
fun ?suiteDefinitionName ->
fun ?defaultDevices ->
fun ?intendedForQualification ->
fun ?isLongDurationTest ->
fun ?protocol ->
fun ?createdAt ->
fun () ->
{
suiteDefinitionId;
suiteDefinitionName;
defaultDevices;
intendedForQualification;
isLongDurationTest;
protocol;
createdAt
}
let to_value x =
structure_to_value
[("suiteDefinitionId",
(Option.map x.suiteDefinitionId ~f:UUID.to_value));
("suiteDefinitionName",
(Option.map x.suiteDefinitionName ~f:SuiteDefinitionName.to_value));
("defaultDevices",
(Option.map x.defaultDevices ~f:DeviceUnderTestList.to_value));
("intendedForQualification",
(Option.map x.intendedForQualification
~f:IntendedForQualificationBoolean.to_value));
("isLongDurationTest",
(Option.map x.isLongDurationTest
~f:IsLongDurationTestBoolean.to_value));
("protocol", (Option.map x.protocol ~f:Protocol.to_value));
("createdAt", (Option.map x.createdAt ~f:Timestamp.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let createdAt =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "createdAt") in
let protocol =
(Option.map ~f:Protocol.of_xml) (Xml.child xml_arg0 "protocol") in
let isLongDurationTest =
(Option.map ~f:IsLongDurationTestBoolean.of_xml)
(Xml.child xml_arg0 "isLongDurationTest") in
let intendedForQualification =
(Option.map ~f:IntendedForQualificationBoolean.of_xml)
(Xml.child xml_arg0 "intendedForQualification") in
let defaultDevices =
(Option.map ~f:DeviceUnderTestList.of_xml)
(Xml.child xml_arg0 "defaultDevices") in
let suiteDefinitionName =
(Option.map ~f:SuiteDefinitionName.of_xml)
(Xml.child xml_arg0 "suiteDefinitionName") in
let suiteDefinitionId =
(Option.map ~f:UUID.of_xml) (Xml.child xml_arg0 "suiteDefinitionId") in
make ?createdAt ?protocol ?isLongDurationTest ?intendedForQualification
?defaultDevices ?suiteDefinitionName ?suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let createdAt = field_map json__ "createdAt" Timestamp.of_json in
let protocol = field_map json__ "protocol" Protocol.of_json in
let isLongDurationTest =
field_map json__ "isLongDurationTest"
IsLongDurationTestBoolean.of_json in
let intendedForQualification =
field_map json__ "intendedForQualification"
IntendedForQualificationBoolean.of_json in
let defaultDevices =
field_map json__ "defaultDevices" DeviceUnderTestList.of_json in
let suiteDefinitionName =
field_map json__ "suiteDefinitionName" SuiteDefinitionName.of_json in
let suiteDefinitionId =
field_map json__ "suiteDefinitionId" UUID.of_json in
make ?createdAt ?protocol ?isLongDurationTest ?intendedForQualification
?defaultDevices ?suiteDefinitionName ?suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Information about the suite definition."]
module GroupResultList =
struct
type nonrec t = GroupResult.t list
let make i = i
let of_string _ =
failwithf "of_string is not implemented for List_shape objects" ()
[@@warning "-32"]
let to_value xs =
(xs |> (List.map ~f:GroupResult.to_value)) |> (fun x -> `List x)
let to_query v = to_query to_value v
let _ =
failwithf "to_header is not implemented for List_shape objects" ()
let of_xml x =
make
(List.map
((Xml.all_children x) |>
(List.filter
~f:(function
| `Data s ->
(match Stdlib.String.trim s with
| "" -> false
| _ -> true)
| _ -> true))) ~f:GroupResult.of_xml)
let of_json j =
list_of_json ~kind:"GroupResultList" ~of_json:GroupResult.of_json j
let to_json v = composed_to_json to_value v
end
module InternalServerException =
struct
type nonrec t =
{
message: Message.t option
[@ocaml.doc "Sends an Internal Failure Exception message."]}
let make ?message = fun () -> { message }
let to_value x =
structure_to_value
[("message", (Option.map x.message ~f:Message.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let message =
(Option.map ~f:Message.of_xml) (Xml.child xml_arg0 "message") in
make ?message ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let message = field_map json__ "message" Message.of_json in
make ?message ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Sends an Internal Failure exception."]
module ValidationException =
struct
type nonrec t =
{
message: Message.t option
[@ocaml.doc "Sends a Validation Exception message."]}
let make ?message = fun () -> { message }
let to_value x =
structure_to_value
[("message", (Option.map x.message ~f:Message.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let message =
(Option.map ~f:Message.of_xml) (Xml.child xml_arg0 "message") in
make ?message ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let message = field_map json__ "message" Message.of_json in
make ?message ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Sends a validation exception."]
module SuiteDefinitionConfiguration =
struct
type nonrec t =
{
suiteDefinitionName: SuiteDefinitionName.t
[@ocaml.doc
"Gets the suite definition name. This is a required parameter."];
devices: DeviceUnderTestList.t option
[@ocaml.doc "Gets the devices configured."];
intendedForQualification: IntendedForQualificationBoolean.t option
[@ocaml.doc "Gets the tests intended for qualification in a suite."];
isLongDurationTest: IsLongDurationTestBoolean.t option
[@ocaml.doc "Verifies if the test suite is a long duration test."];
rootGroup: RootGroup.t
[@ocaml.doc
"Gets the test suite root group. This is a required parameter. For updating or creating the latest qualification suite, if intendedForQualification is set to true, rootGroup can be an empty string. If intendedForQualification is false, rootGroup cannot be an empty string. If rootGroup is empty, and intendedForQualification is set to true, all the qualification tests are included, and the configuration is default. For a qualification suite, the minimum length is 0, and the maximum is 2048. For a non-qualification suite, the minimum length is 1, and the maximum is 2048."];
devicePermissionRoleArn: AmazonResourceName.t
[@ocaml.doc
"Gets the device permission ARN. This is a required parameter."];
protocol: Protocol.t option
[@ocaml.doc
"Sets the MQTT protocol that is configured in the suite definition."]}
let context_ = "SuiteDefinitionConfiguration"
let make ?devices =
fun ?intendedForQualification ->
fun ?isLongDurationTest ->
fun ?protocol ->
fun ~suiteDefinitionName ->
fun ~rootGroup ->
fun ~devicePermissionRoleArn ->
fun () ->
{
devices;
intendedForQualification;
isLongDurationTest;
protocol;
suiteDefinitionName;
rootGroup;
devicePermissionRoleArn
}
let to_value x =
structure_to_value
[("suiteDefinitionName",
(Some (SuiteDefinitionName.to_value x.suiteDefinitionName)));
("devices", (Option.map x.devices ~f:DeviceUnderTestList.to_value));
("intendedForQualification",
(Option.map x.intendedForQualification
~f:IntendedForQualificationBoolean.to_value));
("isLongDurationTest",
(Option.map x.isLongDurationTest
~f:IsLongDurationTestBoolean.to_value));
("rootGroup", (Some (RootGroup.to_value x.rootGroup)));
("devicePermissionRoleArn",
(Some (AmazonResourceName.to_value x.devicePermissionRoleArn)));
("protocol", (Option.map x.protocol ~f:Protocol.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let protocol =
(Option.map ~f:Protocol.of_xml) (Xml.child xml_arg0 "protocol") in
let devicePermissionRoleArn =
AmazonResourceName.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "devicePermissionRoleArn") in
let rootGroup =
RootGroup.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "rootGroup") in
let isLongDurationTest =
(Option.map ~f:IsLongDurationTestBoolean.of_xml)
(Xml.child xml_arg0 "isLongDurationTest") in
let intendedForQualification =
(Option.map ~f:IntendedForQualificationBoolean.of_xml)
(Xml.child xml_arg0 "intendedForQualification") in
let devices =
(Option.map ~f:DeviceUnderTestList.of_xml)
(Xml.child xml_arg0 "devices") in
let suiteDefinitionName =
SuiteDefinitionName.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "suiteDefinitionName") in
make ?protocol ~devicePermissionRoleArn ~rootGroup ?isLongDurationTest
?intendedForQualification ?devices ~suiteDefinitionName ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let protocol = field_map json__ "protocol" Protocol.of_json in
let devicePermissionRoleArn =
field_map_exn json__ "devicePermissionRoleArn"
AmazonResourceName.of_json in
let rootGroup = field_map_exn json__ "rootGroup" RootGroup.of_json in
let isLongDurationTest =
field_map json__ "isLongDurationTest"
IsLongDurationTestBoolean.of_json in
let intendedForQualification =
field_map json__ "intendedForQualification"
IntendedForQualificationBoolean.of_json in
let devices = field_map json__ "devices" DeviceUnderTestList.of_json in
let suiteDefinitionName =
field_map_exn json__ "suiteDefinitionName"
SuiteDefinitionName.of_json in
make ?protocol ~devicePermissionRoleArn ~rootGroup ?isLongDurationTest
?intendedForQualification ?devices ~suiteDefinitionName ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Gets the suite definition configuration."]
module ResourceNotFoundException =
struct
type nonrec t =
{
message: Message.t option
[@ocaml.doc "Sends a Resource Not Found Exception message."]}
let make ?message = fun () -> { message }
let to_value x =
structure_to_value
[("message", (Option.map x.message ~f:Message.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let message =
(Option.map ~f:Message.of_xml) (Xml.child xml_arg0 "message") in
make ?message ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let message = field_map json__ "message" Message.of_json in
make ?message ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Sends a Resource Not Found exception."]
module TagKeyList =
struct
type nonrec t = String128.t list
let make i =
let open Result in
ok_or_failwith
((check_list_max i ~max:50) >>= (fun () -> check_list_min i ~min:0));
i
let of_string _ =
failwithf "of_string is not implemented for List_shape objects" ()
[@@warning "-32"]
let to_value xs =
(xs |> (List.map ~f:String128.to_value)) |> (fun x -> `List x)
let to_query v = to_query to_value v
let _ =
failwithf "to_header is not implemented for List_shape objects" ()
let of_xml x =
make
(List.map
((Xml.all_children x) |>
(List.filter
~f:(function
| `Data s ->
(match Stdlib.String.trim s with
| "" -> false
| _ -> true)
| _ -> true))) ~f:String128.of_xml)
let of_json j =
list_of_json ~kind:"TagKeyList" ~of_json:String128.of_json j
let to_json v = composed_to_json to_value v
end
module TagMap =
struct
type nonrec t = (String128.t * String256.t) list
let make i =
let open Result in
ok_or_failwith
((check_list_max i ~max:50) >>= (fun () -> check_list_min i ~min:0));
i
let xs =
make
(List.filter_map xs
~f:(fun (k, v) ->
(Base.String.chop_prefix k ~prefix:"x-amz-meta-") |>
(Option.map
~f:(fun chopped ->
((String128.of_string chopped),
(String256.of_string v))))))
let to_value xs =
(xs |>
(List.map
~f:(fun (x, y) ->
(String128.to_value x) |>
(fun x -> (String256.to_value y) |> (fun y -> (x, y))))))
|> (fun x -> `Map x)
let to_query v = to_query to_value v
let _ =
failwithf "to_header is not implemented for Map_shape objects" ()
let of_xml _ =
failwith "of_xml_converter_of_shape: Map_shape case not implemented"
let of_json j =
object_of_json ~key_of_string:String128.of_string
~of_json:String256.of_json j
let to_json v = composed_to_json to_value v
end
module ConflictException =
struct
type nonrec t =
{
message: Message.t option
[@ocaml.doc "Sends a Conflict Exception message."]}
let make ?message = fun () -> { message }
let to_value x =
structure_to_value
[("message", (Option.map x.message ~f:Message.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let message =
(Option.map ~f:Message.of_xml) (Xml.child xml_arg0 "message") in
make ?message ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let message = field_map json__ "message" Message.of_json in
make ?message ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Sends a Conflict Exception."]
module Endpoint =
struct
type nonrec t = string
let context_ = "Endpoint"
let make i =
let open Result in
ok_or_failwith
((check_string_max i ~max:75) >>=
(fun () -> check_string_min i ~min:45));
i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"Endpoint" j
let to_json = simple_to_json to_value
end
module SuiteRunConfiguration =
struct
type nonrec t =
{
primaryDevice: DeviceUnderTest.t
[@ocaml.doc
"Sets the primary device for the test suite run. This requires a thing ARN or a certificate ARN."];
selectedTestList: SelectedTestList.t option
[@ocaml.doc "Sets test case list."];
parallelRun: ParallelRun.t option
[@ocaml.doc "TRUE if multiple test suites run in parallel."]}
let context_ = "SuiteRunConfiguration"
let make ?selectedTestList =
fun ?parallelRun ->
fun ~primaryDevice ->
fun () -> { selectedTestList; parallelRun; primaryDevice }
let to_value x =
structure_to_value
[("primaryDevice", (Some (DeviceUnderTest.to_value x.primaryDevice)));
("selectedTestList",
(Option.map x.selectedTestList ~f:SelectedTestList.to_value));
("parallelRun", (Option.map x.parallelRun ~f:ParallelRun.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let parallelRun =
(Option.map ~f:ParallelRun.of_xml) (Xml.child xml_arg0 "parallelRun") in
let selectedTestList =
(Option.map ~f:SelectedTestList.of_xml)
(Xml.child xml_arg0 "selectedTestList") in
let primaryDevice =
DeviceUnderTest.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "primaryDevice") in
make ?parallelRun ?selectedTestList ~primaryDevice ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let parallelRun = field_map json__ "parallelRun" ParallelRun.of_json in
let selectedTestList =
field_map json__ "selectedTestList" SelectedTestList.of_json in
let primaryDevice =
field_map_exn json__ "primaryDevice" DeviceUnderTest.of_json in
make ?parallelRun ?selectedTestList ~primaryDevice ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Gets suite run configuration."]
module SuiteRunsList =
struct
type nonrec t = SuiteRunInformation.t list
let make i = i
let of_string _ =
failwithf "of_string is not implemented for List_shape objects" ()
[@@warning "-32"]
let to_value xs =
(xs |> (List.map ~f:SuiteRunInformation.to_value)) |>
(fun x -> `List x)
let to_query v = to_query to_value v
let _ =
failwithf "to_header is not implemented for List_shape objects" ()
let of_xml x =
make
(List.map
((Xml.all_children x) |>
(List.filter
~f:(function
| `Data s ->
(match Stdlib.String.trim s with
| "" -> false
| _ -> true)
| _ -> true))) ~f:SuiteRunInformation.of_xml)
let of_json j =
list_of_json ~kind:"SuiteRunsList" ~of_json:SuiteRunInformation.of_json
j
let to_json v = composed_to_json to_value v
end
module Token =
struct
type nonrec t = string
let context_ = "Token"
let make i =
let open Result in ok_or_failwith (check_string_max i ~max:2000); i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"Token" j
let to_json = simple_to_json to_value
end
module MaxResults =
struct
type nonrec t = int
let make i =
let open Result in
ok_or_failwith
((check_int_max i ~max:50) >>= (fun () -> check_int_min i ~min:1));
i
let of_string = Int.of_string
let to_value x = `Integer x
let to_query v = to_query to_value v
let x = Int.to_string x
let of_xml xml_arg0 =
Int.of_string
(string_of_xml ~kind:"an integer for MaxResults" xml_arg0)
let of_json j = Int.of_float (float_of_json ~kind:"an integer" j)
let to_json = simple_to_json to_value
end
module SuiteDefinitionInformationList =
struct
type nonrec t = SuiteDefinitionInformation.t list
let make i = i
let of_string _ =
failwithf "of_string is not implemented for List_shape objects" ()
[@@warning "-32"]
let to_value xs =
(xs |> (List.map ~f:SuiteDefinitionInformation.to_value)) |>
(fun x -> `List x)
let to_query v = to_query to_value v
let _ =
failwithf "to_header is not implemented for List_shape objects" ()
let of_xml x =
make
(List.map
((Xml.all_children x) |>
(List.filter
~f:(function
| `Data s ->
(match Stdlib.String.trim s with
| "" -> false
| _ -> true)
| _ -> true))) ~f:SuiteDefinitionInformation.of_xml)
let of_json j =
list_of_json ~kind:"SuiteDefinitionInformationList"
~of_json:SuiteDefinitionInformation.of_json j
let to_json v = composed_to_json to_value v
end
module ErrorReason =
struct
type nonrec t = string
let context_ = "ErrorReason"
let make i = i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"ErrorReason" j
let to_json = simple_to_json to_value
end
module TestResult =
struct
type nonrec t =
{
groups: GroupResultList.t option
[@ocaml.doc "Show each group of test results."]}
let make ?groups = fun () -> { groups }
let to_value x =
structure_to_value
[("groups", (Option.map x.groups ~f:GroupResultList.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let groups =
(Option.map ~f:GroupResultList.of_xml) (Xml.child xml_arg0 "groups") in
make ?groups ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let groups = field_map json__ "groups" GroupResultList.of_json in
make ?groups ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Show each group result."]
module QualificationReportDownloadUrl =
struct
type nonrec t = string
let context_ = "QualificationReportDownloadUrl"
let make i = i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"QualificationReportDownloadUrl" j
let to_json = simple_to_json to_value
end
module AuthenticationMethod =
struct
type nonrec t =
| X509ClientCertificate
| SignatureVersion4
| Non_static_id of string
let make i = i
let to_string =
function
| X509ClientCertificate -> "X509ClientCertificate"
| SignatureVersion4 -> "SignatureVersion4"
| Non_static_id s -> s
let of_string =
function
| "X509ClientCertificate" -> X509ClientCertificate
| "SignatureVersion4" -> SignatureVersion4
| x -> Non_static_id x
let to_value x = `Enum (to_string x)
let to_query v = to_query to_value v
let x = to_string x
let of_xml xml_arg0 =
of_string
(string_of_xml ~kind:"enumeration AuthenticationMethod" xml_arg0)
let of_json j = of_string (string_of_json ~kind:"AuthenticationMethod" j)
let to_json = simple_to_json to_value
end
module ClientToken =
struct
type nonrec t = string
let context_ = "ClientToken"
let make i =
let open Result in
ok_or_failwith
((check_string_min i ~min:1) >>=
(fun () ->
(check_string_max i ~max:64) >>=
(fun () -> check_pattern i ~pattern:"^[\\u0021-\\u007E]+$")));
i
let of_string x = x
let to_value x = `String x
let to_query v = to_query to_value v
let x = x
let of_xml = Xml.string_data_exn ~context:context_
let of_json j = string_of_json ~kind:"ClientToken" j
let to_json = simple_to_json to_value
end
module UpdateSuiteDefinitionResponse =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t option
[@ocaml.doc "Suite definition ID of the updated test suite."];
suiteDefinitionArn: AmazonResourceName.t option
[@ocaml.doc "Amazon Resource Name (ARN) of the updated test suite."];
suiteDefinitionName: SuiteDefinitionName.t option
[@ocaml.doc
"Updates the suite definition name. This is a required parameter."];
suiteDefinitionVersion: SuiteDefinitionVersion.t option
[@ocaml.doc "Suite definition version of the updated test suite."];
createdAt: Timestamp.t option
[@ocaml.doc "Timestamp of when the test suite was created."];
lastUpdatedAt: Timestamp.t option
[@ocaml.doc "Timestamp of when the test suite was updated."]}
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make ?suiteDefinitionId =
fun ?suiteDefinitionArn ->
fun ?suiteDefinitionName ->
fun ?suiteDefinitionVersion ->
fun ?createdAt ->
fun ?lastUpdatedAt ->
fun () ->
{
suiteDefinitionId;
suiteDefinitionArn;
suiteDefinitionName;
suiteDefinitionVersion;
createdAt;
lastUpdatedAt
}
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let to_value x =
structure_to_value
[("suiteDefinitionId",
(Option.map x.suiteDefinitionId ~f:UUID.to_value));
("suiteDefinitionArn",
(Option.map x.suiteDefinitionArn ~f:AmazonResourceName.to_value));
("suiteDefinitionName",
(Option.map x.suiteDefinitionName ~f:SuiteDefinitionName.to_value));
("suiteDefinitionVersion",
(Option.map x.suiteDefinitionVersion
~f:SuiteDefinitionVersion.to_value));
("createdAt", (Option.map x.createdAt ~f:Timestamp.to_value));
("lastUpdatedAt", (Option.map x.lastUpdatedAt ~f:Timestamp.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let lastUpdatedAt =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "lastUpdatedAt") in
let createdAt =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "createdAt") in
let suiteDefinitionVersion =
(Option.map ~f:SuiteDefinitionVersion.of_xml)
(Xml.child xml_arg0 "suiteDefinitionVersion") in
let suiteDefinitionName =
(Option.map ~f:SuiteDefinitionName.of_xml)
(Xml.child xml_arg0 "suiteDefinitionName") in
let suiteDefinitionArn =
(Option.map ~f:AmazonResourceName.of_xml)
(Xml.child xml_arg0 "suiteDefinitionArn") in
let suiteDefinitionId =
(Option.map ~f:UUID.of_xml) (Xml.child xml_arg0 "suiteDefinitionId") in
make ?lastUpdatedAt ?createdAt ?suiteDefinitionVersion
?suiteDefinitionName ?suiteDefinitionArn ?suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let lastUpdatedAt = field_map json__ "lastUpdatedAt" Timestamp.of_json in
let createdAt = field_map json__ "createdAt" Timestamp.of_json in
let suiteDefinitionVersion =
field_map json__ "suiteDefinitionVersion"
SuiteDefinitionVersion.of_json in
let suiteDefinitionName =
field_map json__ "suiteDefinitionName" SuiteDefinitionName.of_json in
let suiteDefinitionArn =
field_map json__ "suiteDefinitionArn" AmazonResourceName.of_json in
let suiteDefinitionId =
field_map json__ "suiteDefinitionId" UUID.of_json in
make ?lastUpdatedAt ?createdAt ?suiteDefinitionVersion
?suiteDefinitionName ?suiteDefinitionArn ?suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Updates a Device Advisor test suite. Requires permission to access the UpdateSuiteDefinition action."]
module UpdateSuiteDefinitionRequest =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t
[@ocaml.doc "Suite definition ID of the test suite to be updated."];
suiteDefinitionConfiguration: SuiteDefinitionConfiguration.t
[@ocaml.doc
"Updates a Device Advisor test suite with suite definition configuration."]}
let context_ = "UpdateSuiteDefinitionRequest"
let make ~suiteDefinitionId =
fun ~suiteDefinitionConfiguration ->
fun () -> { suiteDefinitionId; suiteDefinitionConfiguration }
let to_value x =
structure_to_value
[("suiteDefinitionId", (Some (UUID.to_value x.suiteDefinitionId)));
("suiteDefinitionConfiguration",
(Some
(SuiteDefinitionConfiguration.to_value
x.suiteDefinitionConfiguration)))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let suiteDefinitionConfiguration =
SuiteDefinitionConfiguration.of_xml
(Xml.child_exn ~context:context_ xml_arg0
"suiteDefinitionConfiguration") in
let suiteDefinitionId =
UUID.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "suiteDefinitionId") in
make ~suiteDefinitionConfiguration ~suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let suiteDefinitionConfiguration =
field_map_exn json__ "suiteDefinitionConfiguration"
SuiteDefinitionConfiguration.of_json in
let suiteDefinitionId =
field_map_exn json__ "suiteDefinitionId" UUID.of_json in
make ~suiteDefinitionConfiguration ~suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Updates a Device Advisor test suite. Requires permission to access the UpdateSuiteDefinition action."]
module UntagResourceResponse =
struct
type nonrec t = unit
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make () = ()
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ResourceNotFoundException e ->
`Assoc
[("error", (`String "ResourceNotFoundException"));
("details", (ResourceNotFoundException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let of_header_and_body = ((fun (xs, pipe) -> make ())[@warning "-27"])
let to_value _ = `Structure []
let to_query v = to_query to_value v
let of_xml _ = make ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json _ = make ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Removes tags from an IoT Device Advisor resource. Requires permission to access the UntagResource action."]
module UntagResourceRequest =
struct
type nonrec t =
{
resourceArn: AmazonResourceName.t
[@ocaml.doc
"The resource ARN of an IoT Device Advisor resource. This can be SuiteDefinition ARN or SuiteRun ARN."];
tagKeys: TagKeyList.t
[@ocaml.doc
"List of tag keys to remove from the IoT Device Advisor resource."]}
let context_ = "UntagResourceRequest"
let make ~resourceArn =
fun ~tagKeys -> fun () -> { resourceArn; tagKeys }
let to_value x =
structure_to_value
[("resourceArn", (Some (AmazonResourceName.to_value x.resourceArn)));
("tagKeys", (Some (TagKeyList.to_value x.tagKeys)))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let tagKeys =
TagKeyList.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "tagKeys") in
let resourceArn =
AmazonResourceName.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "resourceArn") in
make ~tagKeys ~resourceArn ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let tagKeys = field_map_exn json__ "tagKeys" TagKeyList.of_json in
let resourceArn =
field_map_exn json__ "resourceArn" AmazonResourceName.of_json in
make ~tagKeys ~resourceArn ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Removes tags from an IoT Device Advisor resource. Requires permission to access the UntagResource action."]
module TagResourceResponse =
struct
type nonrec t = unit
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make () = ()
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ResourceNotFoundException e ->
`Assoc
[("error", (`String "ResourceNotFoundException"));
("details", (ResourceNotFoundException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let of_header_and_body = ((fun (xs, pipe) -> make ())[@warning "-27"])
let to_value _ = `Structure []
let to_query v = to_query to_value v
let of_xml _ = make ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json _ = make ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Adds to and modifies existing tags of an IoT Device Advisor resource. Requires permission to access the TagResource action."]
module TagResourceRequest =
struct
type nonrec t =
{
resourceArn: AmazonResourceName.t
[@ocaml.doc
"The resource ARN of an IoT Device Advisor resource. This can be SuiteDefinition ARN or SuiteRun ARN."];
tags: TagMap.t
[@ocaml.doc
"The tags to be attached to the IoT Device Advisor resource."]}
let context_ = "TagResourceRequest"
let make ~resourceArn = fun ~tags -> fun () -> { resourceArn; tags }
let to_value x =
structure_to_value
[("resourceArn", (Some (AmazonResourceName.to_value x.resourceArn)));
("tags", (Some (TagMap.to_value x.tags)))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let tags =
TagMap.of_xml (Xml.child_exn ~context:context_ xml_arg0 "tags") in
let resourceArn =
AmazonResourceName.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "resourceArn") in
make ~tags ~resourceArn ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let tags = field_map_exn json__ "tags" TagMap.of_json in
let resourceArn =
field_map_exn json__ "resourceArn" AmazonResourceName.of_json in
make ~tags ~resourceArn ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Adds to and modifies existing tags of an IoT Device Advisor resource. Requires permission to access the TagResource action."]
module StopSuiteRunResponse =
struct
type nonrec t = unit
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make () = ()
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ResourceNotFoundException e ->
`Assoc
[("error", (`String "ResourceNotFoundException"));
("details", (ResourceNotFoundException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let of_header_and_body = ((fun (xs, pipe) -> make ())[@warning "-27"])
let to_value _ = `Structure []
let to_query v = to_query to_value v
let of_xml _ = make ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json _ = make ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Stops a Device Advisor test suite run that is currently running. Requires permission to access the StopSuiteRun action."]
module StopSuiteRunRequest =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t
[@ocaml.doc
"Suite definition ID of the test suite run to be stopped."];
suiteRunId: UUID.t
[@ocaml.doc "Suite run ID of the test suite run to be stopped."]}
let context_ = "StopSuiteRunRequest"
let make ~suiteDefinitionId =
fun ~suiteRunId -> fun () -> { suiteDefinitionId; suiteRunId }
let to_value x =
structure_to_value
[("suiteDefinitionId", (Some (UUID.to_value x.suiteDefinitionId)));
("suiteRunId", (Some (UUID.to_value x.suiteRunId)))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let suiteRunId =
UUID.of_xml (Xml.child_exn ~context:context_ xml_arg0 "suiteRunId") in
let suiteDefinitionId =
UUID.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "suiteDefinitionId") in
make ~suiteRunId ~suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let suiteRunId = field_map_exn json__ "suiteRunId" UUID.of_json in
let suiteDefinitionId =
field_map_exn json__ "suiteDefinitionId" UUID.of_json in
make ~suiteRunId ~suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Stops a Device Advisor test suite run that is currently running. Requires permission to access the StopSuiteRun action."]
module StartSuiteRunResponse =
struct
type nonrec t =
{
suiteRunId: UUID.t option
[@ocaml.doc "Suite Run ID of the started suite run."];
suiteRunArn: AmazonResourceName.t option
[@ocaml.doc "Amazon Resource Name (ARN) of the started suite run."];
createdAt: Timestamp.t option
[@ocaml.doc
"Starts a Device Advisor test suite run based on suite create time."];
endpoint: Endpoint.t option
[@ocaml.doc "The response of an Device Advisor test endpoint."]}
type nonrec error =
[ `ConflictException of ConflictException.t
| `InternalServerException of InternalServerException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make ?suiteRunId =
fun ?suiteRunArn ->
fun ?createdAt ->
fun ?endpoint ->
fun () -> { suiteRunId; suiteRunArn; createdAt; endpoint }
let error_of_json name json =
match name with
| "ConflictException" ->
`ConflictException (ConflictException.of_json json)
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "ConflictException" ->
`ConflictException (ConflictException.of_xml xml)
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `ConflictException e ->
`Assoc
[("error", (`String "ConflictException"));
("details", (ConflictException.to_json e))]
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let to_value x =
structure_to_value
[("suiteRunId", (Option.map x.suiteRunId ~f:UUID.to_value));
("suiteRunArn",
(Option.map x.suiteRunArn ~f:AmazonResourceName.to_value));
("createdAt", (Option.map x.createdAt ~f:Timestamp.to_value));
("endpoint", (Option.map x.endpoint ~f:Endpoint.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let endpoint =
(Option.map ~f:Endpoint.of_xml) (Xml.child xml_arg0 "endpoint") in
let createdAt =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "createdAt") in
let suiteRunArn =
(Option.map ~f:AmazonResourceName.of_xml)
(Xml.child xml_arg0 "suiteRunArn") in
let suiteRunId =
(Option.map ~f:UUID.of_xml) (Xml.child xml_arg0 "suiteRunId") in
make ?endpoint ?createdAt ?suiteRunArn ?suiteRunId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let endpoint = field_map json__ "endpoint" Endpoint.of_json in
let createdAt = field_map json__ "createdAt" Timestamp.of_json in
let suiteRunArn =
field_map json__ "suiteRunArn" AmazonResourceName.of_json in
let suiteRunId = field_map json__ "suiteRunId" UUID.of_json in
make ?endpoint ?createdAt ?suiteRunArn ?suiteRunId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Starts a Device Advisor test suite run. Requires permission to access the StartSuiteRun action."]
module StartSuiteRunRequest =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t
[@ocaml.doc "Suite definition ID of the test suite."];
suiteDefinitionVersion: SuiteDefinitionVersion.t option
[@ocaml.doc "Suite definition version of the test suite."];
suiteRunConfiguration: SuiteRunConfiguration.t
[@ocaml.doc "Suite run configuration."];
tags: TagMap.t option
[@ocaml.doc "The tags to be attached to the suite run."]}
let context_ = "StartSuiteRunRequest"
let make ?suiteDefinitionVersion =
fun ?tags ->
fun ~suiteDefinitionId ->
fun ~suiteRunConfiguration ->
fun () ->
{
suiteDefinitionVersion;
tags;
suiteDefinitionId;
suiteRunConfiguration
}
let to_value x =
structure_to_value
[("suiteDefinitionId", (Some (UUID.to_value x.suiteDefinitionId)));
("suiteDefinitionVersion",
(Option.map x.suiteDefinitionVersion
~f:SuiteDefinitionVersion.to_value));
("suiteRunConfiguration",
(Some (SuiteRunConfiguration.to_value x.suiteRunConfiguration)));
("tags", (Option.map x.tags ~f:TagMap.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let tags = (Option.map ~f:TagMap.of_xml) (Xml.child xml_arg0 "tags") in
let suiteRunConfiguration =
SuiteRunConfiguration.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "suiteRunConfiguration") in
let suiteDefinitionVersion =
(Option.map ~f:SuiteDefinitionVersion.of_xml)
(Xml.child xml_arg0 "suiteDefinitionVersion") in
let suiteDefinitionId =
UUID.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "suiteDefinitionId") in
make ?tags ~suiteRunConfiguration ?suiteDefinitionVersion
~suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let tags = field_map json__ "tags" TagMap.of_json in
let suiteRunConfiguration =
field_map_exn json__ "suiteRunConfiguration"
SuiteRunConfiguration.of_json in
let suiteDefinitionVersion =
field_map json__ "suiteDefinitionVersion"
SuiteDefinitionVersion.of_json in
let suiteDefinitionId =
field_map_exn json__ "suiteDefinitionId" UUID.of_json in
make ?tags ~suiteRunConfiguration ?suiteDefinitionVersion
~suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Starts a Device Advisor test suite run. Requires permission to access the StartSuiteRun action."]
module ListTagsForResourceResponse =
struct
type nonrec t =
{
tags: TagMap.t option
[@ocaml.doc "The tags attached to the IoT Device Advisor resource."]}
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make ?tags = fun () -> { tags }
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ResourceNotFoundException e ->
`Assoc
[("error", (`String "ResourceNotFoundException"));
("details", (ResourceNotFoundException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let to_value x =
structure_to_value [("tags", (Option.map x.tags ~f:TagMap.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let tags = (Option.map ~f:TagMap.of_xml) (Xml.child xml_arg0 "tags") in
make ?tags ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let tags = field_map json__ "tags" TagMap.of_json in make ?tags ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Lists the tags attached to an IoT Device Advisor resource. Requires permission to access the ListTagsForResource action."]
module ListTagsForResourceRequest =
struct
type nonrec t =
{
resourceArn: AmazonResourceName.t
[@ocaml.doc
"The resource ARN of the IoT Device Advisor resource. This can be SuiteDefinition ARN or SuiteRun ARN."]}
let context_ = "ListTagsForResourceRequest"
let make ~resourceArn = fun () -> { resourceArn }
let to_value x =
structure_to_value
[("resourceArn", (Some (AmazonResourceName.to_value x.resourceArn)))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let resourceArn =
AmazonResourceName.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "resourceArn") in
make ~resourceArn ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let resourceArn =
field_map_exn json__ "resourceArn" AmazonResourceName.of_json in
make ~resourceArn ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Lists the tags attached to an IoT Device Advisor resource. Requires permission to access the ListTagsForResource action."]
module ListSuiteRunsResponse =
struct
type nonrec t =
{
suiteRunsList: SuiteRunsList.t option
[@ocaml.doc
"An array of objects that provide summaries of information about the suite runs in the list."];
nextToken: Token.t option
[@ocaml.doc "A token to retrieve the next set of results."]}
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make ?suiteRunsList =
fun ?nextToken -> fun () -> { suiteRunsList; nextToken }
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let to_value x =
structure_to_value
[("suiteRunsList",
(Option.map x.suiteRunsList ~f:SuiteRunsList.to_value));
("nextToken", (Option.map x.nextToken ~f:Token.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let nextToken =
(Option.map ~f:Token.of_xml) (Xml.child xml_arg0 "nextToken") in
let suiteRunsList =
(Option.map ~f:SuiteRunsList.of_xml)
(Xml.child xml_arg0 "suiteRunsList") in
make ?nextToken ?suiteRunsList ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let nextToken = field_map json__ "nextToken" Token.of_json in
let suiteRunsList =
field_map json__ "suiteRunsList" SuiteRunsList.of_json in
make ?nextToken ?suiteRunsList ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Lists runs of the specified Device Advisor test suite. You can list all runs of the test suite, or the runs of a specific version of the test suite. Requires permission to access the ListSuiteRuns action."]
module ListSuiteRunsRequest =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t option
[@ocaml.doc
"Lists the test suite runs of the specified test suite based on suite definition ID."];
suiteDefinitionVersion: SuiteDefinitionVersion.t option
[@ocaml.doc
"Must be passed along with suiteDefinitionId. Lists the test suite runs of the specified test suite based on suite definition version."];
maxResults: MaxResults.t option
[@ocaml.doc "The maximum number of results to return at once."];
nextToken: Token.t option
[@ocaml.doc "A token to retrieve the next set of results."]}
let make ?suiteDefinitionId =
fun ?suiteDefinitionVersion ->
fun ?maxResults ->
fun ?nextToken ->
fun () ->
{
suiteDefinitionId;
suiteDefinitionVersion;
maxResults;
nextToken
}
let to_value x =
structure_to_value
[("suiteDefinitionId",
(Option.map x.suiteDefinitionId ~f:UUID.to_value));
("suiteDefinitionVersion",
(Option.map x.suiteDefinitionVersion
~f:SuiteDefinitionVersion.to_value));
("maxResults", (Option.map x.maxResults ~f:MaxResults.to_value));
("nextToken", (Option.map x.nextToken ~f:Token.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let nextToken =
(Option.map ~f:Token.of_xml) (Xml.child xml_arg0 "nextToken") in
let maxResults =
(Option.map ~f:MaxResults.of_xml) (Xml.child xml_arg0 "maxResults") in
let suiteDefinitionVersion =
(Option.map ~f:SuiteDefinitionVersion.of_xml)
(Xml.child xml_arg0 "suiteDefinitionVersion") in
let suiteDefinitionId =
(Option.map ~f:UUID.of_xml) (Xml.child xml_arg0 "suiteDefinitionId") in
make ?nextToken ?maxResults ?suiteDefinitionVersion ?suiteDefinitionId
()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let nextToken = field_map json__ "nextToken" Token.of_json in
let maxResults = field_map json__ "maxResults" MaxResults.of_json in
let suiteDefinitionVersion =
field_map json__ "suiteDefinitionVersion"
SuiteDefinitionVersion.of_json in
let suiteDefinitionId =
field_map json__ "suiteDefinitionId" UUID.of_json in
make ?nextToken ?maxResults ?suiteDefinitionVersion ?suiteDefinitionId
()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Lists runs of the specified Device Advisor test suite. You can list all runs of the test suite, or the runs of a specific version of the test suite. Requires permission to access the ListSuiteRuns action."]
module ListSuiteDefinitionsResponse =
struct
type nonrec t =
{
suiteDefinitionInformationList: SuiteDefinitionInformationList.t option
[@ocaml.doc
"An array of objects that provide summaries of information about the suite definitions in the list."];
nextToken: Token.t option
[@ocaml.doc "A token used to get the next set of results."]}
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make ?suiteDefinitionInformationList =
fun ?nextToken ->
fun () -> { suiteDefinitionInformationList; nextToken }
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let to_value x =
structure_to_value
[("suiteDefinitionInformationList",
(Option.map x.suiteDefinitionInformationList
~f:SuiteDefinitionInformationList.to_value));
("nextToken", (Option.map x.nextToken ~f:Token.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let nextToken =
(Option.map ~f:Token.of_xml) (Xml.child xml_arg0 "nextToken") in
let suiteDefinitionInformationList =
(Option.map ~f:SuiteDefinitionInformationList.of_xml)
(Xml.child xml_arg0 "suiteDefinitionInformationList") in
make ?nextToken ?suiteDefinitionInformationList ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let nextToken = field_map json__ "nextToken" Token.of_json in
let suiteDefinitionInformationList =
field_map json__ "suiteDefinitionInformationList"
SuiteDefinitionInformationList.of_json in
make ?nextToken ?suiteDefinitionInformationList ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Lists the Device Advisor test suites you have created. Requires permission to access the ListSuiteDefinitions action."]
module ListSuiteDefinitionsRequest =
struct
type nonrec t =
{
maxResults: MaxResults.t option
[@ocaml.doc "The maximum number of results to return at once."];
nextToken: Token.t option
[@ocaml.doc "A token used to get the next set of results."]}
let make ?maxResults =
fun ?nextToken -> fun () -> { maxResults; nextToken }
let to_value x =
structure_to_value
[("maxResults", (Option.map x.maxResults ~f:MaxResults.to_value));
("nextToken", (Option.map x.nextToken ~f:Token.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let nextToken =
(Option.map ~f:Token.of_xml) (Xml.child xml_arg0 "nextToken") in
let maxResults =
(Option.map ~f:MaxResults.of_xml) (Xml.child xml_arg0 "maxResults") in
make ?nextToken ?maxResults ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let nextToken = field_map json__ "nextToken" Token.of_json in
let maxResults = field_map json__ "maxResults" MaxResults.of_json in
make ?nextToken ?maxResults ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Lists the Device Advisor test suites you have created. Requires permission to access the ListSuiteDefinitions action."]
module GetSuiteRunResponse =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t option
[@ocaml.doc "Suite definition ID for the test suite run."];
suiteDefinitionVersion: SuiteDefinitionVersion.t option
[@ocaml.doc "Suite definition version for the test suite run."];
suiteRunId: UUID.t option
[@ocaml.doc "Suite run ID for the test suite run."];
suiteRunArn: AmazonResourceName.t option
[@ocaml.doc "The ARN of the suite run."];
suiteRunConfiguration: SuiteRunConfiguration.t option
[@ocaml.doc "Suite run configuration for the test suite run."];
testResult: TestResult.t option
[@ocaml.doc "Test results for the test suite run."];
startTime: Timestamp.t option
[@ocaml.doc
"Date (in Unix epoch time) when the test suite run started."];
endTime: Timestamp.t option
[@ocaml.doc
"Date (in Unix epoch time) when the test suite run ended."];
status: SuiteRunStatus.t option
[@ocaml.doc "Status for the test suite run."];
errorReason: ErrorReason.t option
[@ocaml.doc "Error reason for any test suite run failure."];
tags: TagMap.t option
[@ocaml.doc "The tags attached to the suite run."]}
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make ?suiteDefinitionId =
fun ?suiteDefinitionVersion ->
fun ?suiteRunId ->
fun ?suiteRunArn ->
fun ?suiteRunConfiguration ->
fun ?testResult ->
fun ?startTime ->
fun ?endTime ->
fun ?status ->
fun ?errorReason ->
fun ?tags ->
fun () ->
{
suiteDefinitionId;
suiteDefinitionVersion;
suiteRunId;
suiteRunArn;
suiteRunConfiguration;
testResult;
startTime;
endTime;
status;
errorReason;
tags
}
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ResourceNotFoundException e ->
`Assoc
[("error", (`String "ResourceNotFoundException"));
("details", (ResourceNotFoundException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let to_value x =
structure_to_value
[("suiteDefinitionId",
(Option.map x.suiteDefinitionId ~f:UUID.to_value));
("suiteDefinitionVersion",
(Option.map x.suiteDefinitionVersion
~f:SuiteDefinitionVersion.to_value));
("suiteRunId", (Option.map x.suiteRunId ~f:UUID.to_value));
("suiteRunArn",
(Option.map x.suiteRunArn ~f:AmazonResourceName.to_value));
("suiteRunConfiguration",
(Option.map x.suiteRunConfiguration
~f:SuiteRunConfiguration.to_value));
("testResult", (Option.map x.testResult ~f:TestResult.to_value));
("startTime", (Option.map x.startTime ~f:Timestamp.to_value));
("endTime", (Option.map x.endTime ~f:Timestamp.to_value));
("status", (Option.map x.status ~f:SuiteRunStatus.to_value));
("errorReason", (Option.map x.errorReason ~f:ErrorReason.to_value));
("tags", (Option.map x.tags ~f:TagMap.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let tags = (Option.map ~f:TagMap.of_xml) (Xml.child xml_arg0 "tags") in
let errorReason =
(Option.map ~f:ErrorReason.of_xml) (Xml.child xml_arg0 "errorReason") in
let status =
(Option.map ~f:SuiteRunStatus.of_xml) (Xml.child xml_arg0 "status") in
let endTime =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "endTime") in
let startTime =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "startTime") in
let testResult =
(Option.map ~f:TestResult.of_xml) (Xml.child xml_arg0 "testResult") in
let suiteRunConfiguration =
(Option.map ~f:SuiteRunConfiguration.of_xml)
(Xml.child xml_arg0 "suiteRunConfiguration") in
let suiteRunArn =
(Option.map ~f:AmazonResourceName.of_xml)
(Xml.child xml_arg0 "suiteRunArn") in
let suiteRunId =
(Option.map ~f:UUID.of_xml) (Xml.child xml_arg0 "suiteRunId") in
let suiteDefinitionVersion =
(Option.map ~f:SuiteDefinitionVersion.of_xml)
(Xml.child xml_arg0 "suiteDefinitionVersion") in
let suiteDefinitionId =
(Option.map ~f:UUID.of_xml) (Xml.child xml_arg0 "suiteDefinitionId") in
make ?tags ?errorReason ?status ?endTime ?startTime ?testResult
?suiteRunConfiguration ?suiteRunArn ?suiteRunId
?suiteDefinitionVersion ?suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let tags = field_map json__ "tags" TagMap.of_json in
let errorReason = field_map json__ "errorReason" ErrorReason.of_json in
let status = field_map json__ "status" SuiteRunStatus.of_json in
let endTime = field_map json__ "endTime" Timestamp.of_json in
let startTime = field_map json__ "startTime" Timestamp.of_json in
let testResult = field_map json__ "testResult" TestResult.of_json in
let suiteRunConfiguration =
field_map json__ "suiteRunConfiguration"
SuiteRunConfiguration.of_json in
let suiteRunArn =
field_map json__ "suiteRunArn" AmazonResourceName.of_json in
let suiteRunId = field_map json__ "suiteRunId" UUID.of_json in
let suiteDefinitionVersion =
field_map json__ "suiteDefinitionVersion"
SuiteDefinitionVersion.of_json in
let suiteDefinitionId =
field_map json__ "suiteDefinitionId" UUID.of_json in
make ?tags ?errorReason ?status ?endTime ?startTime ?testResult
?suiteRunConfiguration ?suiteRunArn ?suiteRunId
?suiteDefinitionVersion ?suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Gets information about a Device Advisor test suite run. Requires permission to access the GetSuiteRun action."]
module GetSuiteRunRequest =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t
[@ocaml.doc "Suite definition ID for the test suite run."];
suiteRunId: UUID.t [@ocaml.doc "Suite run ID for the test suite run."]}
let context_ = "GetSuiteRunRequest"
let make ~suiteDefinitionId =
fun ~suiteRunId -> fun () -> { suiteDefinitionId; suiteRunId }
let to_value x =
structure_to_value
[("suiteDefinitionId", (Some (UUID.to_value x.suiteDefinitionId)));
("suiteRunId", (Some (UUID.to_value x.suiteRunId)))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let suiteRunId =
UUID.of_xml (Xml.child_exn ~context:context_ xml_arg0 "suiteRunId") in
let suiteDefinitionId =
UUID.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "suiteDefinitionId") in
make ~suiteRunId ~suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let suiteRunId = field_map_exn json__ "suiteRunId" UUID.of_json in
let suiteDefinitionId =
field_map_exn json__ "suiteDefinitionId" UUID.of_json in
make ~suiteRunId ~suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Gets information about a Device Advisor test suite run. Requires permission to access the GetSuiteRun action."]
module GetSuiteRunReportResponse =
struct
type nonrec t =
{
qualificationReportDownloadUrl: QualificationReportDownloadUrl.t option
[@ocaml.doc "Download URL of the qualification report."]}
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make ?qualificationReportDownloadUrl =
fun () -> { qualificationReportDownloadUrl }
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ResourceNotFoundException e ->
`Assoc
[("error", (`String "ResourceNotFoundException"));
("details", (ResourceNotFoundException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let to_value x =
structure_to_value
[("qualificationReportDownloadUrl",
(Option.map x.qualificationReportDownloadUrl
~f:QualificationReportDownloadUrl.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let qualificationReportDownloadUrl =
(Option.map ~f:QualificationReportDownloadUrl.of_xml)
(Xml.child xml_arg0 "qualificationReportDownloadUrl") in
make ?qualificationReportDownloadUrl ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let qualificationReportDownloadUrl =
field_map json__ "qualificationReportDownloadUrl"
QualificationReportDownloadUrl.of_json in
make ?qualificationReportDownloadUrl ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Gets a report download link for a successful Device Advisor qualifying test suite run. Requires permission to access the GetSuiteRunReport action."]
module GetSuiteRunReportRequest =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t
[@ocaml.doc "Suite definition ID of the test suite."];
suiteRunId: UUID.t [@ocaml.doc "Suite run ID of the test suite run."]}
let context_ = "GetSuiteRunReportRequest"
let make ~suiteDefinitionId =
fun ~suiteRunId -> fun () -> { suiteDefinitionId; suiteRunId }
let to_value x =
structure_to_value
[("suiteDefinitionId", (Some (UUID.to_value x.suiteDefinitionId)));
("suiteRunId", (Some (UUID.to_value x.suiteRunId)))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let suiteRunId =
UUID.of_xml (Xml.child_exn ~context:context_ xml_arg0 "suiteRunId") in
let suiteDefinitionId =
UUID.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "suiteDefinitionId") in
make ~suiteRunId ~suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let suiteRunId = field_map_exn json__ "suiteRunId" UUID.of_json in
let suiteDefinitionId =
field_map_exn json__ "suiteDefinitionId" UUID.of_json in
make ~suiteRunId ~suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Gets a report download link for a successful Device Advisor qualifying test suite run. Requires permission to access the GetSuiteRunReport action."]
module GetSuiteDefinitionResponse =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t option
[@ocaml.doc "Suite definition ID of the suite definition."];
suiteDefinitionArn: AmazonResourceName.t option
[@ocaml.doc "The ARN of the suite definition."];
suiteDefinitionVersion: SuiteDefinitionVersion.t option
[@ocaml.doc "Suite definition version of the suite definition."];
latestVersion: SuiteDefinitionVersion.t option
[@ocaml.doc
"Latest suite definition version of the suite definition."];
suiteDefinitionConfiguration: SuiteDefinitionConfiguration.t option
[@ocaml.doc "Suite configuration of the suite definition."];
createdAt: Timestamp.t option
[@ocaml.doc
"Date (in Unix epoch time) when the suite definition was created."];
lastModifiedAt: Timestamp.t option
[@ocaml.doc
"Date (in Unix epoch time) when the suite definition was last modified."];
tags: TagMap.t option
[@ocaml.doc "Tags attached to the suite definition."]}
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make ?suiteDefinitionId =
fun ?suiteDefinitionArn ->
fun ?suiteDefinitionVersion ->
fun ?latestVersion ->
fun ?suiteDefinitionConfiguration ->
fun ?createdAt ->
fun ?lastModifiedAt ->
fun ?tags ->
fun () ->
{
suiteDefinitionId;
suiteDefinitionArn;
suiteDefinitionVersion;
latestVersion;
suiteDefinitionConfiguration;
createdAt;
lastModifiedAt;
tags
}
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ResourceNotFoundException e ->
`Assoc
[("error", (`String "ResourceNotFoundException"));
("details", (ResourceNotFoundException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let to_value x =
structure_to_value
[("suiteDefinitionId",
(Option.map x.suiteDefinitionId ~f:UUID.to_value));
("suiteDefinitionArn",
(Option.map x.suiteDefinitionArn ~f:AmazonResourceName.to_value));
("suiteDefinitionVersion",
(Option.map x.suiteDefinitionVersion
~f:SuiteDefinitionVersion.to_value));
("latestVersion",
(Option.map x.latestVersion ~f:SuiteDefinitionVersion.to_value));
("suiteDefinitionConfiguration",
(Option.map x.suiteDefinitionConfiguration
~f:SuiteDefinitionConfiguration.to_value));
("createdAt", (Option.map x.createdAt ~f:Timestamp.to_value));
("lastModifiedAt",
(Option.map x.lastModifiedAt ~f:Timestamp.to_value));
("tags", (Option.map x.tags ~f:TagMap.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let tags = (Option.map ~f:TagMap.of_xml) (Xml.child xml_arg0 "tags") in
let lastModifiedAt =
(Option.map ~f:Timestamp.of_xml)
(Xml.child xml_arg0 "lastModifiedAt") in
let createdAt =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "createdAt") in
let suiteDefinitionConfiguration =
(Option.map ~f:SuiteDefinitionConfiguration.of_xml)
(Xml.child xml_arg0 "suiteDefinitionConfiguration") in
let latestVersion =
(Option.map ~f:SuiteDefinitionVersion.of_xml)
(Xml.child xml_arg0 "latestVersion") in
let suiteDefinitionVersion =
(Option.map ~f:SuiteDefinitionVersion.of_xml)
(Xml.child xml_arg0 "suiteDefinitionVersion") in
let suiteDefinitionArn =
(Option.map ~f:AmazonResourceName.of_xml)
(Xml.child xml_arg0 "suiteDefinitionArn") in
let suiteDefinitionId =
(Option.map ~f:UUID.of_xml) (Xml.child xml_arg0 "suiteDefinitionId") in
make ?tags ?lastModifiedAt ?createdAt ?suiteDefinitionConfiguration
?latestVersion ?suiteDefinitionVersion ?suiteDefinitionArn
?suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let tags = field_map json__ "tags" TagMap.of_json in
let lastModifiedAt =
field_map json__ "lastModifiedAt" Timestamp.of_json in
let createdAt = field_map json__ "createdAt" Timestamp.of_json in
let suiteDefinitionConfiguration =
field_map json__ "suiteDefinitionConfiguration"
SuiteDefinitionConfiguration.of_json in
let latestVersion =
field_map json__ "latestVersion" SuiteDefinitionVersion.of_json in
let suiteDefinitionVersion =
field_map json__ "suiteDefinitionVersion"
SuiteDefinitionVersion.of_json in
let suiteDefinitionArn =
field_map json__ "suiteDefinitionArn" AmazonResourceName.of_json in
let suiteDefinitionId =
field_map json__ "suiteDefinitionId" UUID.of_json in
make ?tags ?lastModifiedAt ?createdAt ?suiteDefinitionConfiguration
?latestVersion ?suiteDefinitionVersion ?suiteDefinitionArn
?suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Gets information about a Device Advisor test suite. Requires permission to access the GetSuiteDefinition action."]
module GetSuiteDefinitionRequest =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t
[@ocaml.doc "Suite definition ID of the test suite to get."];
suiteDefinitionVersion: SuiteDefinitionVersion.t option
[@ocaml.doc "Suite definition version of the test suite to get."]}
let context_ = "GetSuiteDefinitionRequest"
let make ?suiteDefinitionVersion =
fun ~suiteDefinitionId ->
fun () -> { suiteDefinitionVersion; suiteDefinitionId }
let to_value x =
structure_to_value
[("suiteDefinitionId", (Some (UUID.to_value x.suiteDefinitionId)));
("suiteDefinitionVersion",
(Option.map x.suiteDefinitionVersion
~f:SuiteDefinitionVersion.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let suiteDefinitionVersion =
(Option.map ~f:SuiteDefinitionVersion.of_xml)
(Xml.child xml_arg0 "suiteDefinitionVersion") in
let suiteDefinitionId =
UUID.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "suiteDefinitionId") in
make ?suiteDefinitionVersion ~suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let suiteDefinitionVersion =
field_map json__ "suiteDefinitionVersion"
SuiteDefinitionVersion.of_json in
let suiteDefinitionId =
field_map_exn json__ "suiteDefinitionId" UUID.of_json in
make ?suiteDefinitionVersion ~suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Gets information about a Device Advisor test suite. Requires permission to access the GetSuiteDefinition action."]
module GetEndpointResponse =
struct
type nonrec t =
{
endpoint: Endpoint.t option
[@ocaml.doc "The response of an Device Advisor endpoint."]}
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make ?endpoint = fun () -> { endpoint }
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ResourceNotFoundException" ->
`ResourceNotFoundException (ResourceNotFoundException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ResourceNotFoundException e ->
`Assoc
[("error", (`String "ResourceNotFoundException"));
("details", (ResourceNotFoundException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let to_value x =
structure_to_value
[("endpoint", (Option.map x.endpoint ~f:Endpoint.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let endpoint =
(Option.map ~f:Endpoint.of_xml) (Xml.child xml_arg0 "endpoint") in
make ?endpoint ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let endpoint = field_map json__ "endpoint" Endpoint.of_json in
make ?endpoint ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Gets information about an Device Advisor endpoint."]
module GetEndpointRequest =
struct
type nonrec t =
{
thingArn: AmazonResourceName.t option
[@ocaml.doc
"The thing ARN of the device. This is an optional parameter."];
certificateArn: AmazonResourceName.t option
[@ocaml.doc
"The certificate ARN of the device. This is an optional parameter."];
deviceRoleArn: AmazonResourceName.t option
[@ocaml.doc
"The device role ARN of the device. This is an optional parameter."];
authenticationMethod: AuthenticationMethod.t option
[@ocaml.doc
"The authentication method used during the device connection."]}
let make ?thingArn =
fun ?certificateArn ->
fun ?deviceRoleArn ->
fun ?authenticationMethod ->
fun () ->
{ thingArn; certificateArn; deviceRoleArn; authenticationMethod
}
let to_value x =
structure_to_value
[("thingArn", (Option.map x.thingArn ~f:AmazonResourceName.to_value));
("certificateArn",
(Option.map x.certificateArn ~f:AmazonResourceName.to_value));
("deviceRoleArn",
(Option.map x.deviceRoleArn ~f:AmazonResourceName.to_value));
("authenticationMethod",
(Option.map x.authenticationMethod ~f:AuthenticationMethod.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let authenticationMethod =
(Option.map ~f:AuthenticationMethod.of_xml)
(Xml.child xml_arg0 "authenticationMethod") in
let deviceRoleArn =
(Option.map ~f:AmazonResourceName.of_xml)
(Xml.child xml_arg0 "deviceRoleArn") in
let certificateArn =
(Option.map ~f:AmazonResourceName.of_xml)
(Xml.child xml_arg0 "certificateArn") in
let thingArn =
(Option.map ~f:AmazonResourceName.of_xml)
(Xml.child xml_arg0 "thingArn") in
make ?authenticationMethod ?deviceRoleArn ?certificateArn ?thingArn ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let authenticationMethod =
field_map json__ "authenticationMethod" AuthenticationMethod.of_json in
let deviceRoleArn =
field_map json__ "deviceRoleArn" AmazonResourceName.of_json in
let certificateArn =
field_map json__ "certificateArn" AmazonResourceName.of_json in
let thingArn = field_map json__ "thingArn" AmazonResourceName.of_json in
make ?authenticationMethod ?deviceRoleArn ?certificateArn ?thingArn ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc "Gets information about an Device Advisor endpoint."]
module DeleteSuiteDefinitionResponse =
struct
type nonrec t = unit
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make () = ()
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let of_header_and_body = ((fun (xs, pipe) -> make ())[@warning "-27"])
let to_value _ = `Structure []
let to_query v = to_query to_value v
let of_xml _ = make ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json _ = make ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Deletes a Device Advisor test suite. Requires permission to access the DeleteSuiteDefinition action."]
module DeleteSuiteDefinitionRequest =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t
[@ocaml.doc "Suite definition ID of the test suite to be deleted."]}
let context_ = "DeleteSuiteDefinitionRequest"
let make ~suiteDefinitionId = fun () -> { suiteDefinitionId }
let to_value x =
structure_to_value
[("suiteDefinitionId", (Some (UUID.to_value x.suiteDefinitionId)))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let suiteDefinitionId =
UUID.of_xml
(Xml.child_exn ~context:context_ xml_arg0 "suiteDefinitionId") in
make ~suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let suiteDefinitionId =
field_map_exn json__ "suiteDefinitionId" UUID.of_json in
make ~suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Deletes a Device Advisor test suite. Requires permission to access the DeleteSuiteDefinition action."]
module CreateSuiteDefinitionResponse =
struct
type nonrec t =
{
suiteDefinitionId: UUID.t option
[@ocaml.doc "The UUID of the test suite created."];
suiteDefinitionArn: AmazonResourceName.t option
[@ocaml.doc "The Amazon Resource Name (ARN) of the test suite."];
suiteDefinitionName: SuiteDefinitionName.t option
[@ocaml.doc
"The suite definition name of the test suite. This is a required parameter."];
createdAt: Timestamp.t option
[@ocaml.doc "The timestamp of when the test suite was created."]}
type nonrec error =
[ `InternalServerException of InternalServerException.t
| `ValidationException of ValidationException.t
| `Unknown_operation_error of (string * string option) ]
let make ?suiteDefinitionId =
fun ?suiteDefinitionArn ->
fun ?suiteDefinitionName ->
fun ?createdAt ->
fun () ->
{
suiteDefinitionId;
suiteDefinitionArn;
suiteDefinitionName;
createdAt
}
let error_of_json name json =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_json json)
| "ValidationException" ->
`ValidationException (ValidationException.of_json json)
| name ->
`Unknown_operation_error
(name, (Some (Yojson.Safe.to_string json)))
let error_of_xml name xml =
match name with
| "InternalServerException" ->
`InternalServerException (InternalServerException.of_xml xml)
| "ValidationException" ->
`ValidationException (ValidationException.of_xml xml)
| name ->
`Unknown_operation_error (name, (Some (Awso.Xml.to_string xml)))
let error_to_json : error -> Yojson.Safe.t =
function
| `InternalServerException e ->
`Assoc
[("error", (`String "InternalServerException"));
("details", (InternalServerException.to_json e))]
| `ValidationException e ->
`Assoc
[("error", (`String "ValidationException"));
("details", (ValidationException.to_json e))]
| `Unknown_operation_error (code, msg) ->
`Assoc (("error", (`String code)) ::
((match msg with
| None -> []
| Some m -> [("message", (`String m))])))
let to_value x =
structure_to_value
[("suiteDefinitionId",
(Option.map x.suiteDefinitionId ~f:UUID.to_value));
("suiteDefinitionArn",
(Option.map x.suiteDefinitionArn ~f:AmazonResourceName.to_value));
("suiteDefinitionName",
(Option.map x.suiteDefinitionName ~f:SuiteDefinitionName.to_value));
("createdAt", (Option.map x.createdAt ~f:Timestamp.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let createdAt =
(Option.map ~f:Timestamp.of_xml) (Xml.child xml_arg0 "createdAt") in
let suiteDefinitionName =
(Option.map ~f:SuiteDefinitionName.of_xml)
(Xml.child xml_arg0 "suiteDefinitionName") in
let suiteDefinitionArn =
(Option.map ~f:AmazonResourceName.of_xml)
(Xml.child xml_arg0 "suiteDefinitionArn") in
let suiteDefinitionId =
(Option.map ~f:UUID.of_xml) (Xml.child xml_arg0 "suiteDefinitionId") in
make ?createdAt ?suiteDefinitionName ?suiteDefinitionArn
?suiteDefinitionId ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let createdAt = field_map json__ "createdAt" Timestamp.of_json in
let suiteDefinitionName =
field_map json__ "suiteDefinitionName" SuiteDefinitionName.of_json in
let suiteDefinitionArn =
field_map json__ "suiteDefinitionArn" AmazonResourceName.of_json in
let suiteDefinitionId =
field_map json__ "suiteDefinitionId" UUID.of_json in
make ?createdAt ?suiteDefinitionName ?suiteDefinitionArn
?suiteDefinitionId ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Creates a Device Advisor test suite. Requires permission to access the CreateSuiteDefinition action."]
module CreateSuiteDefinitionRequest =
struct
type nonrec t =
{
suiteDefinitionConfiguration: SuiteDefinitionConfiguration.t
[@ocaml.doc
"Creates a Device Advisor test suite with suite definition configuration."];
tags: TagMap.t option
[@ocaml.doc "The tags to be attached to the suite definition."];
clientToken: ClientToken.t option
[@ocaml.doc
"The client token for the test suite definition creation. This token is used for tracking test suite definition creation using retries and obtaining its status. This parameter is optional."]}
let context_ = "CreateSuiteDefinitionRequest"
let make ?tags =
fun ?clientToken ->
fun ~suiteDefinitionConfiguration ->
fun () -> { tags; clientToken; suiteDefinitionConfiguration }
let to_value x =
structure_to_value
[("suiteDefinitionConfiguration",
(Some
(SuiteDefinitionConfiguration.to_value
x.suiteDefinitionConfiguration)));
("tags", (Option.map x.tags ~f:TagMap.to_value));
("clientToken", (Option.map x.clientToken ~f:ClientToken.to_value))]
let to_query v = to_query to_value v
let of_xml xml_arg0 =
let clientToken =
(Option.map ~f:ClientToken.of_xml) (Xml.child xml_arg0 "clientToken") in
let tags = (Option.map ~f:TagMap.of_xml) (Xml.child xml_arg0 "tags") in
let suiteDefinitionConfiguration =
SuiteDefinitionConfiguration.of_xml
(Xml.child_exn ~context:context_ xml_arg0
"suiteDefinitionConfiguration") in
make ?clientToken ?tags ~suiteDefinitionConfiguration ()
let of_string s = of_xml (Awso.Xml.parse_response s)[@@warning "-32"]
let of_json json__ =
let clientToken = field_map json__ "clientToken" ClientToken.of_json in
let tags = field_map json__ "tags" TagMap.of_json in
let suiteDefinitionConfiguration =
field_map_exn json__ "suiteDefinitionConfiguration"
SuiteDefinitionConfiguration.of_json in
make ?clientToken ?tags ~suiteDefinitionConfiguration ()
let to_json v = composed_to_json to_value v
end[@@ocaml.doc
"Creates a Device Advisor test suite. Requires permission to access the CreateSuiteDefinition action."]