File: test_json_host_explode.yaml

package info (click to toggle)
python-pyvmomi 9.0.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,372 kB
  • sloc: python: 18,622; xml: 77; makefile: 3
file content (6337 lines) | stat: -rw-r--r-- 1,327,492 bytes parent folder | download
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
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
interactions:
- request:
    body: null
    headers: {}
    method: GET
    uri: https://vcenter/sdk/vimServiceVersions.xml
  response:
    body:
      string: '<?xml version="1.0" encoding="UTF-8" ?><namespaces version="1.0"><namespace><name>urn:vim25</name><version>uA046D008</version><priorVersions><version>8.0.2.0</version><version>8.0.1.0</version><version>8.0.0.2</version><version>8.0.0.1</version><version>8.0.0.0</version><version>7.0.3.2</version><version>7.0.3.1</version><version>7.0.3.0</version><version>7.0.2.1</version><version>7.0.2.0</version><version>7.0.1.1</version><version>7.0.1.0</version><version>7.0.0.2</version><version>7.0.0.0</version><version>6.9.1</version><version>6.8.7</version><version>6.7.3</version><version>6.7.2</version><version>6.7.1</version><version>6.7</version><version>6.5</version><version>6.0</version><version>5.5</version><version>5.1</version><version>5.0</version><version>4.1</version><version>4.0</version></priorVersions></namespace></namespaces>

        '
    headers:
      cache-control:
      - no-cache
      content-length:
      - '843'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:10 GMT
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '2'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><RetrieveServiceContent xmlns="urn:vim25"><_this versionId="8.0.2.0"
      type="ServiceInstance">ServiceInstance</_this></RetrieveServiceContent></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - ''
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<RetrieveServiceContentResponse
        xmlns=\"urn:vim25\"><returnval><rootFolder type=\"Folder\">group-d1</rootFolder><propertyCollector
        type=\"PropertyCollector\">propertyCollector</propertyCollector><viewManager
        type=\"ViewManager\">ViewManager</viewManager><about><name>VMware vCenter
        Server</name><fullName>VMware vCenter Server 8.0.3 build-69507950</fullName><vendor>VMware,
        Inc.</vendor><version>8.0.3</version><patchLevel>00000</patchLevel><build>69507950</build><localeVersion>INTL</localeVersion><localeBuild>000</localeBuild><osType>linux-x64</osType><productLineId>vpx</productLineId><apiType>VirtualCenter</apiType><apiVersion>8.0.2.0</apiVersion><instanceUuid>61f12cb6-9de0-40cb-9c47-61d494229f4f</instanceUuid><licenseProductName>VMware
        VirtualCenter Server</licenseProductName><licenseProductVersion>8.0</licenseProductVersion></about><setting
        type=\"OptionManager\">VpxSettings</setting><userDirectory type=\"UserDirectory\">UserDirectory</userDirectory><sessionManager
        type=\"SessionManager\">SessionManager</sessionManager><authorizationManager
        type=\"AuthorizationManager\">AuthorizationManager</authorizationManager><serviceManager
        type=\"ServiceManager\">ServiceMgr</serviceManager><perfManager type=\"PerformanceManager\">PerfMgr</perfManager><scheduledTaskManager
        type=\"ScheduledTaskManager\">ScheduledTaskManager</scheduledTaskManager><alarmManager
        type=\"AlarmManager\">AlarmManager</alarmManager><eventManager type=\"EventManager\">EventManager</eventManager><taskManager
        type=\"TaskManager\">TaskManager</taskManager><extensionManager type=\"ExtensionManager\">ExtensionManager</extensionManager><customizationSpecManager
        type=\"CustomizationSpecManager\">CustomizationSpecManager</customizationSpecManager><guestCustomizationManager
        type=\"VirtualMachineGuestCustomizationManager\">GuestCustomizationManager</guestCustomizationManager><customFieldsManager
        type=\"CustomFieldsManager\">CustomFieldsManager</customFieldsManager><diagnosticManager
        type=\"DiagnosticManager\">DiagMgr</diagnosticManager><licenseManager type=\"LicenseManager\">LicenseManager</licenseManager><searchIndex
        type=\"SearchIndex\">SearchIndex</searchIndex><fileManager type=\"FileManager\">FileManager</fileManager><datastoreNamespaceManager
        type=\"DatastoreNamespaceManager\">DatastoreNamespaceManager</datastoreNamespaceManager><virtualDiskManager
        type=\"VirtualDiskManager\">virtualDiskManager</virtualDiskManager><snmpSystem
        type=\"HostSnmpSystem\">SnmpSystem</snmpSystem><vmProvisioningChecker type=\"VirtualMachineProvisioningChecker\">ProvChecker</vmProvisioningChecker><vmCompatibilityChecker
        type=\"VirtualMachineCompatibilityChecker\">CompatChecker</vmCompatibilityChecker><ovfManager
        type=\"OvfManager\">OvfManager</ovfManager><ipPoolManager type=\"IpPoolManager\">IpPoolManager</ipPoolManager><dvSwitchManager
        type=\"DistributedVirtualSwitchManager\">DVSManager</dvSwitchManager><hostProfileManager
        type=\"HostProfileManager\">HostProfileManager</hostProfileManager><clusterProfileManager
        type=\"ClusterProfileManager\">ClusterProfileManager</clusterProfileManager><complianceManager
        type=\"ProfileComplianceManager\">MoComplianceManager</complianceManager><localizationManager
        type=\"LocalizationManager\">LocalizationManager</localizationManager><storageResourceManager
        type=\"StorageResourceManager\">StorageResourceManager</storageResourceManager><guestOperationsManager
        type=\"GuestOperationsManager\">guestOperationsManager</guestOperationsManager><overheadMemoryManager
        type=\"OverheadMemoryManager\">OverheadMemoryManager</overheadMemoryManager><certificateManager
        type=\"CertificateManager\">certificateManager</certificateManager><ioFilterManager
        type=\"IoFilterManager\">IoFilterManager</ioFilterManager><vStorageObjectManager
        type=\"VcenterVStorageObjectManager\">VStorageObjectManager</vStorageObjectManager><hostSpecManager
        type=\"HostSpecificationManager\">HostSpecificationManager</hostSpecManager><cryptoManager
        type=\"CryptoManagerKmip\">CryptoManager</cryptoManager><healthUpdateManager
        type=\"HealthUpdateManager\">HealthUpdateManager</healthUpdateManager><failoverClusterConfigurator
        type=\"FailoverClusterConfigurator\">FailoverClusterConfigurator</failoverClusterConfigurator><failoverClusterManager
        type=\"FailoverClusterManager\">FailoverClusterManager</failoverClusterManager><tenantManager
        type=\"TenantTenantManager\">TenantManager-69507950</tenantManager><siteInfoManager
        type=\"SiteInfoManager\">SiteInfoManager</siteInfoManager><storageQueryManager
        type=\"StorageQueryManager\">StorageQueryManager</storageQueryManager></returnval></RetrieveServiceContentResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '4834'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:10 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Login xmlns="urn:vim25"><_this versionId="8.0.2.0" type="SessionManager">SessionManager</_this><userName
      versionId="8.0.2.0">my_user</userName><password versionId="8.0.2.0">my_pass</password></Login></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - ''
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<LoginResponse
        xmlns=\"urn:vim25\"><returnval><key>5292d68f-be78-ab87-2994-ff5f1b3ce05d</key><userName>my_user</userName><fullName>my_user</fullName><loginTime>2023-12-14T10:38:11.28404Z</loginTime><lastActiveTime>2023-12-14T10:38:11.28404Z</lastActiveTime><locale>en</locale><messageLocale>en</messageLocale><extensionSession>false</extensionSession><ipAddress>10.234.46.97</ipAddress><userAgent>pyvmomi
        Python/3.9.8 (Darwin; 22.6.0; arm64)</userAgent><callCount>0</callCount></returnval></LoginResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '870'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:11 GMT
      set-cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '65'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">value</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfCustomFieldValue\"></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '434'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:11 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">availableField</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfCustomFieldDef\"><CustomFieldDef
        xsi:type=\"CustomFieldDef\"><key>5</key><name>AutoDeploy.MachineIdentity</name><type>string</type><managedObjectType>HostSystem</managedObjectType><fieldDefPrivileges><createPrivilege>AutoDeploy.Host.AssociateMachine</createPrivilege><readPrivilege>AutoDeploy.Host.AssociateMachine</readPrivilege><updatePrivilege>AutoDeploy.Host.AssociateMachine</updatePrivilege><deletePrivilege>AutoDeploy.Host.AssociateMachine</deletePrivilege></fieldDefPrivileges><fieldInstancePrivileges><createPrivilege>AutoDeploy.Host.AssociateMachine</createPrivilege><readPrivilege>AutoDeploy.Host.AssociateMachine</readPrivilege><updatePrivilege>AutoDeploy.Host.AssociateMachine</updatePrivilege><deletePrivilege>AutoDeploy.Host.AssociateMachine</deletePrivilege></fieldInstancePrivileges></CustomFieldDef></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '1230'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:11 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '3'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">parent</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval type=\"ClusterComputeResource\" xsi:type=\"ManagedObjectReference\">domain-c9</returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '472'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:12 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '3'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">customValue</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfCustomFieldValue\"></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '434'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:12 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '3'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">overallStatus</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ManagedEntityStatus\">green</returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '435'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:12 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '3'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">configStatus</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ManagedEntityStatus\">yellow</returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '436'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:12 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '3'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">configIssue</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfEvent\"><Event xsi:type=\"RemoteTSMEnabledEvent\"><key>0</key><chainId>0</chainId><createdTime>2023-12-12T10:07:13.322128Z</createdTime><userName></userName><datacenter><name>DataCenter</name><datacenter
        type=\"Datacenter\">datacenter-3</datacenter></datacenter><computeResource><name>Vsan1Cluster</name><computeResource
        type=\"ClusterComputeResource\">domain-c9</computeResource></computeResource><host><name>10.218.43.170</name><host
        type=\"HostSystem\">host-14</host></host><fullFormattedMessage>SSH for the
        host 10.218.43.170 has been enabled</fullFormattedMessage></Event></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '984'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:12 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">effectiveRole</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfInt\"><int xsi:type=\"xsd:int\">-1</int></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '453'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:13 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">permission</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfPermission\"></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '428'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:13 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '3'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">name</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"xsd:string\">10.218.43.170</returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '434'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:13 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '3'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">disabledMethod</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfString\"><string xsi:type=\"xsd:string\">ExitMaintenanceMode_Task</string><string
        xsi:type=\"xsd:string\">PowerUpHostFromStandBy_Task</string><string xsi:type=\"xsd:string\">ReconnectHost_Task</string><string
        xsi:type=\"xsd:string\">ReconfigureHostForDAS_Task</string></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '675'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:13 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">recentTask</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfManagedObjectReference\"></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '440'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:14 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '3'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">declaredAlarmState</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfAlarmState\"><AlarmState
        xsi:type=\"AlarmState\"><key>88.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-88</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.281496Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>21.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-21</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.281461Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>37.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-37</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.281384Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>13.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-13</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.28135Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>131.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-131</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.281316Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>20.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-20</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.281421Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>138.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-138</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.281215Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>14.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-14</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.281181Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>141.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-141</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.281149Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>23.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-23</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.281118Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>82.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-82</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.281087Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>85.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-85</alarm><overallStatus>green</overallStatus><time>2023-12-12T09:41:39.612674Z</time><acknowledged>false</acknowledged><eventKey>1262</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>93.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-93</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.281008Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>90.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-90</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.280977Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>48.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-48</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.281561Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>107.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-107</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.280945Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>112.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-112</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.28091Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>311.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-311</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.280844Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>16.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-16</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.280812Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>116.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-116</alarm><overallStatus>green</overallStatus><time>2023-12-12T15:14:11.563907Z</time><acknowledged>false</acknowledged><eventKey>2275</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>118.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-118</alarm><overallStatus>green</overallStatus><time>2023-12-12T15:14:11.563995Z</time><acknowledged>false</acknowledged><eventKey>2275</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>120.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-120</alarm><overallStatus>green</overallStatus><time>2023-12-12T15:14:11.564011Z</time><acknowledged>false</acknowledged><eventKey>2275</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>156.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-156</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.280642Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>123.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-123</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.28061Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>4.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-4</alarm><overallStatus>green</overallStatus><time>2023-12-12T09:41:52.417405Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>122.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-122</alarm><overallStatus>green</overallStatus><time>2023-12-12T15:14:11.56404Z</time><acknowledged>false</acknowledged><eventKey>2275</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>181.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-181</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.280565Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>77.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-77</alarm><overallStatus>green</overallStatus><time>2023-12-12T09:41:12.249768Z</time><acknowledged>false</acknowledged><eventKey>1235</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>313.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-313</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279574Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>22.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-22</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.28016Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>11.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-11</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.28125Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>129.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-129</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279408Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>145.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-145</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279286Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>114.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-114</alarm><overallStatus>green</overallStatus><time>2023-12-12T15:14:11.56416Z</time><acknowledged>false</acknowledged><eventKey>2275</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>232.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-232</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279376Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>46.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-46</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279814Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>130.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-130</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279742Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>312.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-312</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279507Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>17.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-17</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.27954Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>135.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-135</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279474Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>44.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-44</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279442Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>42.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-42</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279913Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>160.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-160</alarm><overallStatus>green</overallStatus><time>2023-12-12T09:41:25.858286Z</time><acknowledged>false</acknowledged><eventKey>1241</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>43.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-43</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.27925Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>161.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-161</alarm><overallStatus>green</overallStatus><time>2023-12-12T21:38:18.770902Z</time><acknowledged>false</acknowledged><eventKey>2590</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>45.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-45</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279847Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>115.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-115</alarm><overallStatus>green</overallStatus><time>2023-12-12T15:14:11.564249Z</time><acknowledged>false</acknowledged><eventKey>2275</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>180.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-180</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279608Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>121.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-121</alarm><overallStatus>green</overallStatus><time>2023-12-12T15:14:11.564272Z</time><acknowledged>false</acknowledged><eventKey>2275</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>3.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-3</alarm><overallStatus>green</overallStatus><time>2023-12-12T09:41:52.417457Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>49.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-49</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279775Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>169.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-169</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.279944Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>117.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-117</alarm><overallStatus>green</overallStatus><time>2023-12-12T15:14:11.5643Z</time><acknowledged>false</acknowledged><eventKey>2275</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>119.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-119</alarm><overallStatus>green</overallStatus><time>2023-12-12T15:14:11.564313Z</time><acknowledged>false</acknowledged><eventKey>2275</eventKey></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>1.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-1</alarm><overallStatus>green</overallStatus><time>2023-12-12T09:41:03.280356Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>314.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-314</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.280014Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>137.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-137</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.280048Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>50.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-50</alarm><overallStatus>gray</overallStatus><time>2023-12-12T09:41:03.280125Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
        xsi:type=\"AlarmState\"><key>113.14</key><entity type=\"HostSystem\">host-14</entity><alarm
        type=\"Alarm\">alarm-113</alarm><overallStatus>green</overallStatus><time>2023-12-12T15:14:11.564344Z</time><acknowledged>false</acknowledged><eventKey>2275</eventKey></AlarmState></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '15592'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:14 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '5'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">triggeredAlarmState</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfAlarmState\"></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '428'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:14 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">alarmActionsEnabled</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"xsd:boolean\">true</returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '426'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:14 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">tag</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfTag\"></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '421'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:15 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '5'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">runtime</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"HostRuntimeInfo\"><connectionState>connected</connectionState><powerState>poweredOn</powerState><standbyMode>none</standbyMode><inMaintenanceMode>false</inMaintenanceMode><inQuarantineMode>false</inQuarantineMode><bootTime>2023-12-12T09:07:01.778318Z</bootTime><healthSystemRuntime><systemHealthInfo></systemHealthInfo></healthSystemRuntime><vsanRuntimeInfo><membershipList><nodeUuid>65782330-1193-79a7-1a42-062517c9e1a8</nodeUuid><hostname>sc1-10-218-43-170.nimbus.eng.vmware.com</hostname></membershipList><membershipList><nodeUuid>657822f0-4424-06e4-b556-062517f938ea</nodeUuid><hostname>sc1-10-218-34-90.nimbus.eng.vmware.com</hostname></membershipList><membershipList><nodeUuid>6578234b-9db4-3395-581e-0625170344a3</nodeUuid><hostname>sc1-10-218-44-171.nimbus.eng.vmware.com</hostname></membershipList><membershipList><nodeUuid>65782314-938b-eba8-07ec-0625178fc4c6</nodeUuid><hostname>sc1-10-218-33-216.nimbus.eng.vmware.com</hostname></membershipList></vsanRuntimeInfo><networkRuntimeInfo><netStackInstanceRuntimeInfo><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><state>active</state><vmknicKeys>vmk0</vmknicKeys><vmknicKeys>vmk1</vmknicKeys><maxNumberOfConnections>11000</maxNumberOfConnections><currentIpV6Enabled>true</currentIpV6Enabled></netStackInstanceRuntimeInfo></networkRuntimeInfo><hostMaxVirtualDiskCapacity>68169720922112</hostMaxVirtualDiskCapacity><cryptoState>incapable</cryptoState><stateEncryption><protectionMode>none</protectionMode></stateEncryption></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '1900'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:15 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">summary</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"HostListSummary\"><host type=\"HostSystem\">host-14</host><hardware><vendor>VMware,
        Inc.</vendor><model>VMware7,1</model><uuid>a6b70142-625f-e04e-edf6-05098f74aff3</uuid><otherIdentifyingInfo><identifierValue>No
        Asset Tag</identifierValue><identifierType><label>Asset Tag</label><summary>Asset
        tag of the system</summary><key>AssetTag</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>VMware-42
        01 b7 a6 5f 62 4e e0-ed f6 05 09 8f 74 af f3</identifierValue><identifierType><label>Service
        tag</label><summary>Service tag of the system</summary><key>ServiceTag</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>None</identifierValue><identifierType><label>Enclosure
        serial number tag</label><summary>Enclosure serial number tag of the system</summary><key>EnclosureSerialNumberTag</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>VMware-42
        01 b7 a6 5f 62 4e e0-ed f6 05 09 8f 74 af f3</identifierValue><identifierType><label>Serial
        number tag</label><summary>Serial number tag of the system</summary><key>SerialNumberTag</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]</identifierValue><identifierType><label>OEM
        specific string</label><summary>OEM specific string</summary><key>OemSpecificString</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>Welcome
        to the Virtual Machine</identifierValue><identifierType><label>OEM specific
        string</label><summary>OEM specific string</summary><key>OemSpecificString</key></identifierType></otherIdentifyingInfo><memorySize>17178767360</memorySize><cpuModel>Intel(R)
        Xeon(R) Gold 6330 CPU @ 2.00GHz</cpuModel><cpuMhz>1995</cpuMhz><numCpuPkgs>8</numCpuPkgs><numCpuCores>8</numCpuCores><numCpuThreads>8</numCpuThreads><numNics>4</numNics><numHBAs>4</numHBAs></hardware><runtime><connectionState>connected</connectionState><powerState>poweredOn</powerState><standbyMode>none</standbyMode><inMaintenanceMode>false</inMaintenanceMode><inQuarantineMode>false</inQuarantineMode><bootTime>2023-12-12T09:07:01.778318Z</bootTime><healthSystemRuntime><systemHealthInfo></systemHealthInfo></healthSystemRuntime><vsanRuntimeInfo><membershipList><nodeUuid>65782330-1193-79a7-1a42-062517c9e1a8</nodeUuid><hostname>sc1-10-218-43-170.nimbus.eng.vmware.com</hostname></membershipList><membershipList><nodeUuid>657822f0-4424-06e4-b556-062517f938ea</nodeUuid><hostname>sc1-10-218-34-90.nimbus.eng.vmware.com</hostname></membershipList><membershipList><nodeUuid>6578234b-9db4-3395-581e-0625170344a3</nodeUuid><hostname>sc1-10-218-44-171.nimbus.eng.vmware.com</hostname></membershipList><membershipList><nodeUuid>65782314-938b-eba8-07ec-0625178fc4c6</nodeUuid><hostname>sc1-10-218-33-216.nimbus.eng.vmware.com</hostname></membershipList></vsanRuntimeInfo><networkRuntimeInfo><netStackInstanceRuntimeInfo><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><state>active</state><vmknicKeys>vmk0</vmknicKeys><vmknicKeys>vmk1</vmknicKeys><maxNumberOfConnections>11000</maxNumberOfConnections><currentIpV6Enabled>true</currentIpV6Enabled></netStackInstanceRuntimeInfo></networkRuntimeInfo><hostMaxVirtualDiskCapacity>68169720922112</hostMaxVirtualDiskCapacity><cryptoState>incapable</cryptoState><stateEncryption><protectionMode>none</protectionMode></stateEncryption></runtime><config><name>10.218.43.170</name><port>443</port><sslThumbprint>19:32:16:04:8B:77:FB:91:5E:D2:A6:87:6D:A5:5A:08:0F:C9:BA:F5</sslThumbprint><product><name>VMware
        ESXi</name><fullName>VMware ESXi 8.0.3 build-69507956</fullName><vendor>VMware,
        Inc.</vendor><version>8.0.3</version><patchLevel>3.0</patchLevel><build>69507956</build><localeVersion>INTL</localeVersion><localeBuild>000</localeBuild><osType>vmnix-x86</osType><productLineId>embeddedEsx</productLineId><apiType>HostAgent</apiType><apiVersion>8.0.2.0</apiVersion><licenseProductName>VMware
        ESX Server</licenseProductName><licenseProductVersion>8.0</licenseProductVersion></product><vmotionEnabled>true</vmotionEnabled><faultToleranceEnabled>false</faultToleranceEnabled></config><quickStats><overallCpuUsage>3062</overallCpuUsage><overallMemoryUsage>5986</overallMemoryUsage><distributedCpuFairness>10000</distributedCpuFairness><distributedMemoryFairness>10000</distributedMemoryFairness><availablePMemCapacity>0</availablePMemCapacity><uptime>178220</uptime></quickStats><overallStatus>yellow</overallStatus><rebootRequired>false</rebootRequired><managementServerIp>vcenter</managementServerIp><maxEVCModeKey>intel-icelake</maxEVCModeKey></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '5041'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:15 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '3'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">hardware</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"HostHardwareInfo\"><systemInfo><vendor>VMware,
        Inc.</vendor><model>VMware7,1</model><uuid>a6b70142-625f-e04e-edf6-05098f74aff3</uuid><otherIdentifyingInfo><identifierValue>No
        Asset Tag</identifierValue><identifierType><label>Asset Tag</label><summary>Asset
        tag of the system</summary><key>AssetTag</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>VMware-42
        01 b7 a6 5f 62 4e e0-ed f6 05 09 8f 74 af f3</identifierValue><identifierType><label>Service
        tag</label><summary>Service tag of the system</summary><key>ServiceTag</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>None</identifierValue><identifierType><label>Enclosure
        serial number tag</label><summary>Enclosure serial number tag of the system</summary><key>EnclosureSerialNumberTag</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>VMware-42
        01 b7 a6 5f 62 4e e0-ed f6 05 09 8f 74 af f3</identifierValue><identifierType><label>Serial
        number tag</label><summary>Serial number tag of the system</summary><key>SerialNumberTag</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>[MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]</identifierValue><identifierType><label>OEM
        specific string</label><summary>OEM specific string</summary><key>OemSpecificString</key></identifierType></otherIdentifyingInfo><otherIdentifyingInfo><identifierValue>Welcome
        to the Virtual Machine</identifierValue><identifierType><label>OEM specific
        string</label><summary>OEM specific string</summary><key>OemSpecificString</key></identifierType></otherIdentifyingInfo><serialNumber>VMware-42
        01 b7 a6 5f 62 4e e0-ed f6 05 09 8f 74 af f3</serialNumber><qualifiedName><value>nqn.2014-08.com.vmware.eng.nimbus:nvme:sc1-10-218-43-170</value><type>nvmeQualifiedName</type></qualifiedName><vvolHostNQN><value>nqn.2021-01.com.vmware:65782330-1193-79a7-1a42-062517c9e1a8-vvol-0d5eaa6e51bf</value><type>vvolNvmeQualifiedName</type></vvolHostNQN><vvolHostId>523e3ee5-0975-0448-be39-0d5eaa6e51bf</vvolHostId></systemInfo><cpuPowerManagementInfo><currentPolicy>Balanced</currentPolicy><hardwareSupport></hardwareSupport></cpuPowerManagementInfo><cpuInfo><numCpuPackages>8</numCpuPackages><numCpuCores>8</numCpuCores><numCpuThreads>8</numCpuThreads><hz>1995312146</hz></cpuInfo><cpuPkg><index>0</index><vendor>intel</vendor><hz>1995312146</hz><busHz>90696006</busHz><description>Intel(R)
        Xeon(R) Gold 6330 CPU @ 2.00GHz</description><threadId>0</threadId><cpuFeature><level>0</level><eax>0000:0000:0000:0000:0000:0000:0001:1011</eax><ebx>0111:0101:0110:1110:0110:0101:0100:0111</ebx><ecx>0110:1100:0110:0101:0111:0100:0110:1110</ecx><edx>0100:1001:0110:0101:0110:1110:0110:1001</edx></cpuFeature><cpuFeature><level>1</level><eax>0000:0000:0000:0110:0000:0110:1010:0110</eax><ebx>0000:0000:0000:0001:0000:1000:0000:0000</ebx><ecx>1111:1111:1111:1010:0011:0010:0010:1011</ecx><edx>0000:1111:1000:1011:1111:1011:1111:1111</edx></cpuFeature><cpuFeature><level>-2147483648</level><eax>1000:0000:0000:0000:0000:0000:0000:1000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483647</level><eax>0000:0000:0000:0000:0000:0000:0000:0000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0001:0010:0001</ecx><edx>0010:1100:0001:0000:0000:1000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483640</level><eax>0000:0000:0000:0000:0011:0000:0010:1101</eax><ebx>0000:0000:0000:0000:0000:0010:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature></cpuPkg><cpuPkg><index>1</index><vendor>intel</vendor><hz>1995312146</hz><busHz>90696006</busHz><description>Intel(R)
        Xeon(R) Gold 6330 CPU @ 2.00GHz</description><threadId>1</threadId><cpuFeature><level>0</level><eax>0000:0000:0000:0000:0000:0000:0001:1011</eax><ebx>0111:0101:0110:1110:0110:0101:0100:0111</ebx><ecx>0110:1100:0110:0101:0111:0100:0110:1110</ecx><edx>0100:1001:0110:0101:0110:1110:0110:1001</edx></cpuFeature><cpuFeature><level>1</level><eax>0000:0000:0000:0110:0000:0110:1010:0110</eax><ebx>0000:0010:0000:0001:0000:1000:0000:0000</ebx><ecx>1111:1111:1111:1010:0011:0010:0010:1011</ecx><edx>0000:1111:1000:1011:1111:1011:1111:1111</edx></cpuFeature><cpuFeature><level>-2147483648</level><eax>1000:0000:0000:0000:0000:0000:0000:1000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483647</level><eax>0000:0000:0000:0000:0000:0000:0000:0000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0001:0010:0001</ecx><edx>0010:1100:0001:0000:0000:1000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483640</level><eax>0000:0000:0000:0000:0011:0000:0010:1101</eax><ebx>0000:0000:0000:0000:0000:0010:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature></cpuPkg><cpuPkg><index>2</index><vendor>intel</vendor><hz>1995312146</hz><busHz>90696006</busHz><description>Intel(R)
        Xeon(R) Gold 6330 CPU @ 2.00GHz</description><threadId>2</threadId><cpuFeature><level>0</level><eax>0000:0000:0000:0000:0000:0000:0001:1011</eax><ebx>0111:0101:0110:1110:0110:0101:0100:0111</ebx><ecx>0110:1100:0110:0101:0111:0100:0110:1110</ecx><edx>0100:1001:0110:0101:0110:1110:0110:1001</edx></cpuFeature><cpuFeature><level>1</level><eax>0000:0000:0000:0110:0000:0110:1010:0110</eax><ebx>0000:0100:0000:0001:0000:1000:0000:0000</ebx><ecx>1111:1111:1111:1010:0011:0010:0010:1011</ecx><edx>0000:1111:1000:1011:1111:1011:1111:1111</edx></cpuFeature><cpuFeature><level>-2147483648</level><eax>1000:0000:0000:0000:0000:0000:0000:1000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483647</level><eax>0000:0000:0000:0000:0000:0000:0000:0000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0001:0010:0001</ecx><edx>0010:1100:0001:0000:0000:1000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483640</level><eax>0000:0000:0000:0000:0011:0000:0010:1101</eax><ebx>0000:0000:0000:0000:0000:0010:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature></cpuPkg><cpuPkg><index>3</index><vendor>intel</vendor><hz>1995312146</hz><busHz>90696006</busHz><description>Intel(R)
        Xeon(R) Gold 6330 CPU @ 2.00GHz</description><threadId>3</threadId><cpuFeature><level>0</level><eax>0000:0000:0000:0000:0000:0000:0001:1011</eax><ebx>0111:0101:0110:1110:0110:0101:0100:0111</ebx><ecx>0110:1100:0110:0101:0111:0100:0110:1110</ecx><edx>0100:1001:0110:0101:0110:1110:0110:1001</edx></cpuFeature><cpuFeature><level>1</level><eax>0000:0000:0000:0110:0000:0110:1010:0110</eax><ebx>0000:0110:0000:0001:0000:1000:0000:0000</ebx><ecx>1111:1111:1111:1010:0011:0010:0010:1011</ecx><edx>0000:1111:1000:1011:1111:1011:1111:1111</edx></cpuFeature><cpuFeature><level>-2147483648</level><eax>1000:0000:0000:0000:0000:0000:0000:1000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483647</level><eax>0000:0000:0000:0000:0000:0000:0000:0000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0001:0010:0001</ecx><edx>0010:1100:0001:0000:0000:1000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483640</level><eax>0000:0000:0000:0000:0011:0000:0010:1101</eax><ebx>0000:0000:0000:0000:0000:0010:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature></cpuPkg><cpuPkg><index>4</index><vendor>intel</vendor><hz>1995312146</hz><busHz>90696006</busHz><description>Intel(R)
        Xeon(R) Gold 6330 CPU @ 2.00GHz</description><threadId>4</threadId><cpuFeature><level>0</level><eax>0000:0000:0000:0000:0000:0000:0001:1011</eax><ebx>0111:0101:0110:1110:0110:0101:0100:0111</ebx><ecx>0110:1100:0110:0101:0111:0100:0110:1110</ecx><edx>0100:1001:0110:0101:0110:1110:0110:1001</edx></cpuFeature><cpuFeature><level>1</level><eax>0000:0000:0000:0110:0000:0110:1010:0110</eax><ebx>0000:1000:0000:0001:0000:1000:0000:0000</ebx><ecx>1111:1111:1111:1010:0011:0010:0010:1011</ecx><edx>0000:1111:1000:1011:1111:1011:1111:1111</edx></cpuFeature><cpuFeature><level>-2147483648</level><eax>1000:0000:0000:0000:0000:0000:0000:1000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483647</level><eax>0000:0000:0000:0000:0000:0000:0000:0000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0001:0010:0001</ecx><edx>0010:1100:0001:0000:0000:1000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483640</level><eax>0000:0000:0000:0000:0011:0000:0010:1101</eax><ebx>0000:0000:0000:0000:0000:0010:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature></cpuPkg><cpuPkg><index>5</index><vendor>intel</vendor><hz>1995312146</hz><busHz>90696006</busHz><description>Intel(R)
        Xeon(R) Gold 6330 CPU @ 2.00GHz</description><threadId>5</threadId><cpuFeature><level>0</level><eax>0000:0000:0000:0000:0000:0000:0001:1011</eax><ebx>0111:0101:0110:1110:0110:0101:0100:0111</ebx><ecx>0110:1100:0110:0101:0111:0100:0110:1110</ecx><edx>0100:1001:0110:0101:0110:1110:0110:1001</edx></cpuFeature><cpuFeature><level>1</level><eax>0000:0000:0000:0110:0000:0110:1010:0110</eax><ebx>0000:1010:0000:0001:0000:1000:0000:0000</ebx><ecx>1111:1111:1111:1010:0011:0010:0010:1011</ecx><edx>0000:1111:1000:1011:1111:1011:1111:1111</edx></cpuFeature><cpuFeature><level>-2147483648</level><eax>1000:0000:0000:0000:0000:0000:0000:1000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483647</level><eax>0000:0000:0000:0000:0000:0000:0000:0000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0001:0010:0001</ecx><edx>0010:1100:0001:0000:0000:1000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483640</level><eax>0000:0000:0000:0000:0011:0000:0010:1101</eax><ebx>0000:0000:0000:0000:0000:0010:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature></cpuPkg><cpuPkg><index>6</index><vendor>intel</vendor><hz>1995312146</hz><busHz>90696006</busHz><description>Intel(R)
        Xeon(R) Gold 6330 CPU @ 2.00GHz</description><threadId>6</threadId><cpuFeature><level>0</level><eax>0000:0000:0000:0000:0000:0000:0001:1011</eax><ebx>0111:0101:0110:1110:0110:0101:0100:0111</ebx><ecx>0110:1100:0110:0101:0111:0100:0110:1110</ecx><edx>0100:1001:0110:0101:0110:1110:0110:1001</edx></cpuFeature><cpuFeature><level>1</level><eax>0000:0000:0000:0110:0000:0110:1010:0110</eax><ebx>0000:1100:0000:0001:0000:1000:0000:0000</ebx><ecx>1111:1111:1111:1010:0011:0010:0010:1011</ecx><edx>0000:1111:1000:1011:1111:1011:1111:1111</edx></cpuFeature><cpuFeature><level>-2147483648</level><eax>1000:0000:0000:0000:0000:0000:0000:1000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483647</level><eax>0000:0000:0000:0000:0000:0000:0000:0000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0001:0010:0001</ecx><edx>0010:1100:0001:0000:0000:1000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483640</level><eax>0000:0000:0000:0000:0011:0000:0010:1101</eax><ebx>0000:0000:0000:0000:0000:0010:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature></cpuPkg><cpuPkg><index>7</index><vendor>intel</vendor><hz>1995312146</hz><busHz>90696006</busHz><description>Intel(R)
        Xeon(R) Gold 6330 CPU @ 2.00GHz</description><threadId>7</threadId><cpuFeature><level>0</level><eax>0000:0000:0000:0000:0000:0000:0001:1011</eax><ebx>0111:0101:0110:1110:0110:0101:0100:0111</ebx><ecx>0110:1100:0110:0101:0111:0100:0110:1110</ecx><edx>0100:1001:0110:0101:0110:1110:0110:1001</edx></cpuFeature><cpuFeature><level>1</level><eax>0000:0000:0000:0110:0000:0110:1010:0110</eax><ebx>0000:1110:0000:0001:0000:1000:0000:0000</ebx><ecx>1111:1111:1111:1010:0011:0010:0010:1011</ecx><edx>0000:1111:1000:1011:1111:1011:1111:1111</edx></cpuFeature><cpuFeature><level>-2147483648</level><eax>1000:0000:0000:0000:0000:0000:0000:1000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483647</level><eax>0000:0000:0000:0000:0000:0000:0000:0000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0001:0010:0001</ecx><edx>0010:1100:0001:0000:0000:1000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483640</level><eax>0000:0000:0000:0000:0011:0000:0010:1101</eax><ebx>0000:0000:0000:0000:0000:0010:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature></cpuPkg><memorySize>17178767360</memorySize><numaInfo><type>NUMA</type><numNodes>1</numNodes><numaNode><typeId>0</typeId><cpuID>7</cpuID><cpuID>6</cpuID><cpuID>5</cpuID><cpuID>4</cpuID><cpuID>3</cpuID><cpuID>2</cpuID><cpuID>1</cpuID><cpuID>0</cpuID><memorySize>17177128960</memorySize><memoryRangeBegin>0</memoryRangeBegin><memoryRangeLength>17177128960</memoryRangeLength></numaNode></numaInfo><smcPresent>false</smcPresent><pciDevice><id>0000:00:00.0</id><classId>1536</classId><bus>0</bus><slot>0</slot><function>0</function><vendorId>-32634</vendorId><subVendorId>5549</subVendorId><vendorName>Intel
        Corporation</vendorName><deviceId>29072</deviceId><subDeviceId>6518</subDeviceId><deviceName>Virtual
        Machine Chipset</deviceName></pciDevice><pciDevice><id>0000:00:01.0</id><classId>1540</classId><bus>0</bus><slot>1</slot><function>0</function><vendorId>-32634</vendorId><subVendorId>0</subVendorId><vendorName>Intel
        Corporation</vendorName><deviceId>29073</deviceId><subDeviceId>0</subDeviceId><deviceName>440BX/ZX/DX
        - 82443BX/ZX/DX AGP bridge</deviceName></pciDevice><pciDevice><id>0000:00:07.0</id><classId>1537</classId><bus>0</bus><slot>7</slot><function>0</function><vendorId>-32634</vendorId><subVendorId>5549</subVendorId><vendorName>Intel
        Corporation</vendorName><deviceId>28944</deviceId><subDeviceId>6518</subDeviceId><deviceName>Virtual
        Machine Chipset</deviceName></pciDevice><pciDevice><id>0000:00:07.1</id><classId>257</classId><bus>0</bus><slot>7</slot><function>1</function><vendorId>-32634</vendorId><subVendorId>5549</subVendorId><vendorName>Intel
        Corporation</vendorName><deviceId>28945</deviceId><subDeviceId>6518</subDeviceId><deviceName>PIIX4
        for 430TX/440BX/MX IDE Controller</deviceName></pciDevice><pciDevice><id>0000:00:07.3</id><classId>1664</classId><bus>0</bus><slot>7</slot><function>3</function><vendorId>-32634</vendorId><subVendorId>5549</subVendorId><vendorName>Intel
        Corporation</vendorName><deviceId>28947</deviceId><subDeviceId>6518</subDeviceId><deviceName>Virtual
        Machine Chipset</deviceName></pciDevice><pciDevice><id>0000:00:07.7</id><classId>2176</classId><bus>0</bus><slot>7</slot><function>7</function><vendorId>5549</vendorId><subVendorId>5549</subVendorId><vendorName>VMware</vendorName><deviceId>1856</deviceId><subDeviceId>1856</subDeviceId><deviceName>Virtual
        Machine Communication Interface</deviceName></pciDevice><pciDevice><id>0000:00:0f.0</id><classId>768</classId><bus>0</bus><slot>15</slot><function>0</function><vendorId>5549</vendorId><subVendorId>5549</subVendorId><vendorName>VMware</vendorName><deviceId>1029</deviceId><subDeviceId>1029</subDeviceId><deviceName>SVGA
        II Adapter</deviceName></pciDevice><pciDevice><id>0000:00:11.0</id><classId>1540</classId><bus>0</bus><slot>17</slot><function>0</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1936</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        bridge</deviceName></pciDevice><pciDevice><id>0000:00:15.0</id><classId>1540</classId><bus>0</bus><slot>21</slot><function>0</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:15.1</id><classId>1540</classId><bus>0</bus><slot>21</slot><function>1</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:15.2</id><classId>1540</classId><bus>0</bus><slot>21</slot><function>2</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:15.3</id><classId>1540</classId><bus>0</bus><slot>21</slot><function>3</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:15.4</id><classId>1540</classId><bus>0</bus><slot>21</slot><function>4</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:15.5</id><classId>1540</classId><bus>0</bus><slot>21</slot><function>5</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:15.6</id><classId>1540</classId><bus>0</bus><slot>21</slot><function>6</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:15.7</id><classId>1540</classId><bus>0</bus><slot>21</slot><function>7</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:16.0</id><classId>1540</classId><bus>0</bus><slot>22</slot><function>0</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:16.1</id><classId>1540</classId><bus>0</bus><slot>22</slot><function>1</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:16.2</id><classId>1540</classId><bus>0</bus><slot>22</slot><function>2</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:16.3</id><classId>1540</classId><bus>0</bus><slot>22</slot><function>3</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:16.4</id><classId>1540</classId><bus>0</bus><slot>22</slot><function>4</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:16.5</id><classId>1540</classId><bus>0</bus><slot>22</slot><function>5</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:16.6</id><classId>1540</classId><bus>0</bus><slot>22</slot><function>6</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:16.7</id><classId>1540</classId><bus>0</bus><slot>22</slot><function>7</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:17.0</id><classId>1540</classId><bus>0</bus><slot>23</slot><function>0</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:17.1</id><classId>1540</classId><bus>0</bus><slot>23</slot><function>1</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:17.2</id><classId>1540</classId><bus>0</bus><slot>23</slot><function>2</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:17.3</id><classId>1540</classId><bus>0</bus><slot>23</slot><function>3</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:17.4</id><classId>1540</classId><bus>0</bus><slot>23</slot><function>4</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:17.5</id><classId>1540</classId><bus>0</bus><slot>23</slot><function>5</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:17.6</id><classId>1540</classId><bus>0</bus><slot>23</slot><function>6</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:17.7</id><classId>1540</classId><bus>0</bus><slot>23</slot><function>7</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:18.0</id><classId>1540</classId><bus>0</bus><slot>24</slot><function>0</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:18.1</id><classId>1540</classId><bus>0</bus><slot>24</slot><function>1</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:18.2</id><classId>1540</classId><bus>0</bus><slot>24</slot><function>2</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:18.3</id><classId>1540</classId><bus>0</bus><slot>24</slot><function>3</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:18.4</id><classId>1540</classId><bus>0</bus><slot>24</slot><function>4</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:18.5</id><classId>1540</classId><bus>0</bus><slot>24</slot><function>5</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:18.6</id><classId>1540</classId><bus>0</bus><slot>24</slot><function>6</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:00:18.7</id><classId>1540</classId><bus>0</bus><slot>24</slot><function>7</function><vendorId>5549</vendorId><subVendorId>0</subVendorId><vendorName>VMware</vendorName><deviceId>1952</deviceId><subDeviceId>0</subDeviceId><deviceName>PCI
        Express Root Port</deviceName></pciDevice><pciDevice><id>0000:02:00.0</id><classId>3075</classId><bus>2</bus><slot>0</slot><function>0</function><vendorId>5549</vendorId><subVendorId>5549</subVendorId><vendorName>VMware</vendorName><deviceId>1908</deviceId><subDeviceId>6518</subDeviceId><parentBridge>0000:00:11.0</parentBridge><deviceName>USB1.1
        UHCI Controller</deviceName></pciDevice><pciDevice><id>0000:02:01.0</id><classId>3075</classId><bus>2</bus><slot>1</slot><function>0</function><vendorId>5549</vendorId><subVendorId>5549</subVendorId><vendorName>VMware</vendorName><deviceId>1904</deviceId><subDeviceId>1904</subDeviceId><parentBridge>0000:00:11.0</parentBridge><deviceName>USB2
        EHCI Controller</deviceName></pciDevice><pciDevice><id>0000:03:00.0</id><classId>263</classId><bus>3</bus><slot>0</slot><function>0</function><vendorId>5549</vendorId><subVendorId>5549</subVendorId><vendorName>VMware
        Inc.</vendorName><deviceId>1984</deviceId><subDeviceId>1984</subDeviceId><parentBridge>0000:00:15.0</parentBridge><deviceName>PVSCSI
        SCSI Controller</deviceName></pciDevice><pciDevice><id>0000:04:00.0</id><classId>512</classId><bus>4</bus><slot>0</slot><function>0</function><vendorId>5549</vendorId><subVendorId>5549</subVendorId><vendorName>VMware
        Inc.</vendorName><deviceId>1968</deviceId><subDeviceId>1968</subDeviceId><parentBridge>0000:00:15.1</parentBridge><deviceName>vmxnet3
        Virtual Ethernet Controller</deviceName></pciDevice><pciDevice><id>0000:0b:00.0</id><classId>512</classId><bus>11</bus><slot>0</slot><function>0</function><vendorId>5549</vendorId><subVendorId>5549</subVendorId><vendorName>VMware
        Inc.</vendorName><deviceId>1968</deviceId><subDeviceId>1968</subDeviceId><parentBridge>0000:00:16.0</parentBridge><deviceName>vmxnet3
        Virtual Ethernet Controller</deviceName></pciDevice><pciDevice><id>0000:0c:00.0</id><classId>264</classId><bus>12</bus><slot>0</slot><function>0</function><vendorId>5549</vendorId><subVendorId>5549</subVendorId><vendorName>VMware</vendorName><deviceId>2032</deviceId><subDeviceId>2032</subDeviceId><parentBridge>0000:00:16.1</parentBridge><deviceName>NVMe
        SSD Controller</deviceName></pciDevice><pciDevice><id>0000:13:00.0</id><classId>512</classId><bus>19</bus><slot>0</slot><function>0</function><vendorId>5549</vendorId><subVendorId>5549</subVendorId><vendorName>VMware
        Inc.</vendorName><deviceId>1968</deviceId><subDeviceId>1968</subDeviceId><parentBridge>0000:00:17.0</parentBridge><deviceName>vmxnet3
        Virtual Ethernet Controller</deviceName></pciDevice><pciDevice><id>0000:1b:00.0</id><classId>512</classId><bus>27</bus><slot>0</slot><function>0</function><vendorId>5549</vendorId><subVendorId>5549</subVendorId><vendorName>VMware
        Inc.</vendorName><deviceId>1968</deviceId><subDeviceId>1968</subDeviceId><parentBridge>0000:00:18.0</parentBridge><deviceName>vmxnet3
        Virtual Ethernet Controller</deviceName></pciDevice><cpuFeature><level>0</level><eax>0000:0000:0000:0000:0000:0000:0001:1011</eax><ebx>0111:0101:0110:1110:0110:0101:0100:0111</ebx><ecx>0110:1100:0110:0101:0111:0100:0110:1110</ecx><edx>0100:1001:0110:0101:0110:1110:0110:1001</edx></cpuFeature><cpuFeature><level>1</level><eax>0000:0000:0000:0110:0000:0110:1010:0110</eax><ebx>0000:0000:0000:0001:0000:1000:0000:0000</ebx><ecx>1111:1111:1111:1010:0011:0010:0010:1011</ecx><edx>0000:1111:1000:1011:1111:1011:1111:1111</edx></cpuFeature><cpuFeature><level>-2147483648</level><eax>1000:0000:0000:0000:0000:0000:0000:1000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483647</level><eax>0000:0000:0000:0000:0000:0000:0000:0000</eax><ebx>0000:0000:0000:0000:0000:0000:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0001:0010:0001</ecx><edx>0010:1100:0001:0000:0000:1000:0000:0000</edx></cpuFeature><cpuFeature><level>-2147483640</level><eax>0000:0000:0000:0000:0011:0000:0010:1101</eax><ebx>0000:0000:0000:0000:0000:0010:0000:0000</ebx><ecx>0000:0000:0000:0000:0000:0000:0000:0000</ecx><edx>0000:0000:0000:0000:0000:0000:0000:0000</edx></cpuFeature><biosInfo><biosVersion>VMW71.00V.18227214.B64.2106252220</biosVersion><releaseDate>2021-06-25T00:00:00Z</releaseDate><vendor>VMware,
        Inc.</vendor><majorRelease>255</majorRelease><minorRelease>255</minorRelease><firmwareMajorRelease>255</firmwareMajorRelease><firmwareMinorRelease>255</firmwareMinorRelease><firmwareType>UEFI</firmwareType></biosInfo><reliableMemoryInfo><memorySize>0</memorySize></reliableMemoryInfo><sgxInfo><sgxState>notPresent</sgxState><totalEpcMemory>0</totalEpcMemory><flcMode>off</flcMode><registrationInfo><status>notApplicable</status></registrationInfo></sgxInfo><memoryTieringType>noTiering</memoryTieringType><memoryTierInfo><name>DRAM</name><type>DRAM</type><flags>memoryTier</flags><size>17177128960</size></memoryTierInfo></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '31461'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:15 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '9'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">capability</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"HostCapability\"><recursiveResourcePoolsSupported>true</recursiveResourcePoolsSupported><cpuMemoryResourceConfigurationSupported>true</cpuMemoryResourceConfigurationSupported><rebootSupported>true</rebootSupported><shutdownSupported>true</shutdownSupported><vmotionSupported>true</vmotionSupported><standbySupported>true</standbySupported><ipmiSupported>false</ipmiSupported><maxRunningVMs>0</maxRunningVMs><maxSupportedVcpus>768</maxSupportedVcpus><maxRegisteredVMs>312</maxRegisteredVMs><datastorePrincipalSupported>false</datastorePrincipalSupported><sanSupported>true</sanSupported><nfsSupported>true</nfsSupported><iscsiSupported>true</iscsiSupported><vlanTaggingSupported>true</vlanTaggingSupported><nicTeamingSupported>true</nicTeamingSupported><highGuestMemSupported>true</highGuestMemSupported><maintenanceModeSupported>true</maintenanceModeSupported><suspendedRelocateSupported>true</suspendedRelocateSupported><restrictedSnapshotRelocateSupported>true</restrictedSnapshotRelocateSupported><perVmSwapFiles>true</perVmSwapFiles><localSwapDatastoreSupported>true</localSwapDatastoreSupported><unsharedSwapVMotionSupported>true</unsharedSwapVMotionSupported><backgroundSnapshotsSupported>false</backgroundSnapshotsSupported><preAssignedPCIUnitNumbersSupported>true</preAssignedPCIUnitNumbersSupported><screenshotSupported>true</screenshotSupported><scaledScreenshotSupported>true</scaledScreenshotSupported><storageVMotionSupported>true</storageVMotionSupported><vmotionWithStorageVMotionSupported>true</vmotionWithStorageVMotionSupported><vmotionAcrossNetworkSupported>true</vmotionAcrossNetworkSupported><maxNumDisksSVMotion>440</maxNumDisksSVMotion><maxVirtualDiskDescVersionSupported>7</maxVirtualDiskDescVersionSupported><hbrNicSelectionSupported>true</hbrNicSelectionSupported><vrNfcNicSelectionSupported>true</vrNfcNicSelectionSupported><recordReplaySupported>false</recordReplaySupported><ftSupported>false</ftSupported><replayUnsupportedReason>incompatibleProduct</replayUnsupportedReason><smpFtSupported>false</smpFtSupported><ftCompatibilityIssues>haAgentIssue</ftCompatibilityIssues><ftCompatibilityIssues>incompatibleProduct</ftCompatibilityIssues><ftCompatibilityIssues>missingFTLoggingNic</ftCompatibilityIssues><smpFtCompatibilityIssues>haAgentIssue</smpFtCompatibilityIssues><smpFtCompatibilityIssues>missingFTLoggingNic</smpFtCompatibilityIssues><maxVcpusPerFtVm>8</maxVcpusPerFtVm><loginBySSLThumbprintSupported>true</loginBySSLThumbprintSupported><cloneFromSnapshotSupported>true</cloneFromSnapshotSupported><deltaDiskBackingsSupported>true</deltaDiskBackingsSupported><perVMNetworkTrafficShapingSupported>false</perVMNetworkTrafficShapingSupported><tpmSupported>false</tpmSupported><virtualExecUsageSupported>true</virtualExecUsageSupported><storageIORMSupported>true</storageIORMSupported><vmDirectPathGen2Supported>false</vmDirectPathGen2Supported><vmDirectPathGen2UnsupportedReason>hostNptIncompatibleHardware</vmDirectPathGen2UnsupportedReason><supportedVmfsMajorVersion>5</supportedVmfsMajorVersion><supportedVmfsMajorVersion>6</supportedVmfsMajorVersion><vStorageCapable>true</vStorageCapable><snapshotRelayoutSupported>true</snapshotRelayoutSupported><firewallIpRulesSupported>true</firewallIpRulesSupported><servicePackageInfoSupported>true</servicePackageInfoSupported><maxHostRunningVms>78</maxHostRunningVms><maxHostSupportedVcpus>256</maxHostSupportedVcpus><vmfsDatastoreMountCapable>true</vmfsDatastoreMountCapable><eightPlusHostVmfsSharedAccessSupported>true</eightPlusHostVmfsSharedAccessSupported><nestedHVSupported>true</nestedHVSupported><vPMCSupported>false</vPMCSupported><interVMCommunicationThroughVMCISupported>false</interVMCommunicationThroughVMCISupported><scheduledHardwareUpgradeSupported>true</scheduledHardwareUpgradeSupported><featureCapabilitiesSupported>true</featureCapabilitiesSupported><latencySensitivitySupported>true</latencySensitivitySupported><storagePolicySupported>true</storagePolicySupported><accel3dSupported>false</accel3dSupported><reliableMemoryAware>true</reliableMemoryAware><multipleNetworkStackInstanceSupported>true</multipleNetworkStackInstanceSupported><messageBusProxySupported>true</messageBusProxySupported><vsanSupported>true</vsanSupported><vFlashSupported>true</vFlashSupported><hostAccessManagerSupported>true</hostAccessManagerSupported><provisioningNicSelectionSupported>true</provisioningNicSelectionSupported><nfs41Supported>true</nfs41Supported><nfs41Krb5iSupported>true</nfs41Krb5iSupported><turnDiskLocatorLedSupported>true</turnDiskLocatorLedSupported><virtualVolumeDatastoreSupported>true</virtualVolumeDatastoreSupported><markAsSsdSupported>true</markAsSsdSupported><markAsLocalSupported>true</markAsLocalSupported><smartCardAuthenticationSupported>true</smartCardAuthenticationSupported><pMemSupported>true</pMemSupported><pMemSnapshotSupported>false</pMemSnapshotSupported><cryptoSupported>true</cryptoSupported><oneKVolumeAPIsSupported>true</oneKVolumeAPIsSupported><gatewayOnNicSupported>true</gatewayOnNicSupported><cpuHwMmuSupported>true</cpuHwMmuSupported><encryptedVMotionSupported>true</encryptedVMotionSupported><encryptionChangeOnAddRemoveSupported>false</encryptionChangeOnAddRemoveSupported><encryptionHotOperationSupported>false</encryptionHotOperationSupported><encryptionWithSnapshotsSupported>false</encryptionWithSnapshotsSupported><encryptionFaultToleranceSupported>false</encryptionFaultToleranceSupported><encryptionMemorySaveSupported>true</encryptionMemorySaveSupported><encryptionRDMSupported>false</encryptionRDMSupported><encryptionVFlashSupported>false</encryptionVFlashSupported><encryptionCBRCSupported>false</encryptionCBRCSupported><encryptionHBRSupported>true</encryptionHBRSupported><ftEfiSupported>true</ftEfiSupported><unmapMethodSupported>fixed</unmapMethodSupported><maxMemMBPerFtVm>131072</maxMemMBPerFtVm><virtualMmuUsageIgnored>true</virtualMmuUsageIgnored><virtualExecUsageIgnored>true</virtualExecUsageIgnored><vmCreateDateSupported>true</vmCreateDateSupported><vmfs3EOLSupported>true</vmfs3EOLSupported><ftVmcpSupported>true</ftVmcpSupported><quickBootSupported>true</quickBootSupported><encryptedFtSupported>true</encryptedFtSupported><assignableHardwareSupported>true</assignableHardwareSupported><suspendToMemorySupported>true</suspendToMemorySupported><useFeatureReqsForOldHWv>true</useFeatureReqsForOldHWv><markPerenniallyReservedSupported>true</markPerenniallyReservedSupported><hppPspSupported>true</hppPspSupported><deviceRebindWithoutRebootSupported>true</deviceRebindWithoutRebootSupported><storagePolicyChangeSupported>true</storagePolicyChangeSupported><precisionTimeProtocolSupported>true</precisionTimeProtocolSupported><remoteDeviceVMotionSupported>true</remoteDeviceVMotionSupported><maxSupportedVmMemory>25149440</maxSupportedVmMemory><ahDeviceHintsSupported>true</ahDeviceHintsSupported><nvmeOverTcpSupported>true</nvmeOverTcpSupported><nvmeStorageFabricServicesSupported>true</nvmeStorageFabricServicesSupported><assignHwPciConfigSupported>true</assignHwPciConfigSupported><timeConfigSupported>true</timeConfigSupported><nvmeBatchOperationsSupported>true</nvmeBatchOperationsSupported><pMemFailoverSupported>true</pMemFailoverSupported><hostConfigEncryptionSupported>true</hostConfigEncryptionSupported><maxSupportedSimultaneousThreads>1</maxSupportedSimultaneousThreads><ptpConfigSupported>true</ptpConfigSupported><maxSupportedPtpPorts>1</maxSupportedPtpPorts><sgxRegistrationSupported>false</sgxRegistrationSupported><pMemIndependentSnapshotSupported>true</pMemIndependentSnapshotSupported><iommuSLDirtyCapable>false</iommuSLDirtyCapable><vmknicBindingSupported>true</vmknicBindingSupported><ultralowFixedUnmapSupported>true</ultralowFixedUnmapSupported><nvmeVvolSupported>true</nvmeVvolSupported><fptHotplugSupported>true</fptHotplugSupported><mconnectSupported>true</mconnectSupported><vsanNicMgmtSupported>true</vsanNicMgmtSupported><vvolNQNSupported>true</vvolNQNSupported></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '8352'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:16 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '5'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">licensableResource</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"HostLicensableResourceInfo\"><resource><key>numCpuPackages</key><value
        xsi:type=\"xsd:long\">8</value></resource><resource><key>numCpuCores</key><value
        xsi:type=\"xsd:long\">8</value></resource><resource><key>numVmsStarted</key><value
        xsi:type=\"xsd:long\">0</value></resource></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '679'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:16 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">remediationState</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '376'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:16 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '5'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">precheckRemediationResult</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '376'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:16 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">remediationResult</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '376'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:17 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '3'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">complianceCheckState</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '376'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:17 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">complianceCheckResult</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '376'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:17 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '3'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">configManager</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"HostConfigManager\"><cpuScheduler
        type=\"HostCpuSchedulerSystem\">cpuScheduler-14</cpuScheduler><datastoreSystem
        type=\"HostDatastoreSystem\">datastoreSystem-14</datastoreSystem><memoryManager
        type=\"HostMemorySystem\">memorySystem-14</memoryManager><storageSystem type=\"HostStorageSystem\">storageSystem-14</storageSystem><networkSystem
        type=\"HostNetworkSystem\">networkSystem-14</networkSystem><vmotionSystem
        type=\"HostVMotionSystem\">vmotionSystem-14</vmotionSystem><virtualNicManager
        type=\"HostVirtualNicManager\">virtualNicManager-14</virtualNicManager><serviceSystem
        type=\"HostServiceSystem\">serviceSystem-14</serviceSystem><firewallSystem
        type=\"HostFirewallSystem\">firewallSystem-14</firewallSystem><advancedOption
        type=\"OptionManager\">EsxHostAdvSettings-14</advancedOption><diagnosticSystem
        type=\"HostDiagnosticSystem\">diagnosticSystem-14</diagnosticSystem><autoStartManager
        type=\"HostAutoStartManager\">autoStartManager-14</autoStartManager><snmpSystem
        type=\"HostSnmpSystem\">snmpSystem-14</snmpSystem><dateTimeSystem type=\"HostDateTimeSystem\">dateTimeSystem-14</dateTimeSystem><patchManager
        type=\"HostPatchManager\">patchManager-14</patchManager><imageConfigManager
        type=\"HostImageConfigManager\">imageConfigManager-14</imageConfigManager><bootDeviceSystem
        type=\"HostBootDeviceSystem\">bootDeviceSystem-14</bootDeviceSystem><firmwareSystem
        type=\"HostFirmwareSystem\">firmwareSystem-14</firmwareSystem><healthStatusSystem
        type=\"HostHealthStatusSystem\">healthStatusSystem-14</healthStatusSystem><pciPassthruSystem
        type=\"HostPciPassthruSystem\">pciPassthruSystem-14</pciPassthruSystem><kernelModuleSystem
        type=\"HostKernelModuleSystem\">kernelModuleSystem-14</kernelModuleSystem><authenticationManager
        type=\"HostAuthenticationManager\">authenticationManager-14</authenticationManager><powerSystem
        type=\"HostPowerSystem\">powerSystem-14</powerSystem><cacheConfigurationManager
        type=\"HostCacheConfigurationManager\">cacheConfigManager-14</cacheConfigurationManager><esxAgentHostManager
        type=\"HostEsxAgentHostManager\">esxAgentHostManager-14</esxAgentHostManager><iscsiManager
        type=\"IscsiManager\">iscsiManager-14</iscsiManager><vFlashManager type=\"HostVFlashManager\">vFlashManager-14</vFlashManager><vsanSystem
        type=\"HostVsanSystem\">vsanSystem-14</vsanSystem><messageBusProxy type=\"MessageBusProxy\">messageBusProxy-14</messageBusProxy><userDirectory
        type=\"UserDirectory\">userDirectory-14</userDirectory><accountManager type=\"HostLocalAccountManager\">accountManager-14</accountManager><hostAccessManager
        type=\"HostAccessManager\">hostAccessManager-14</hostAccessManager><graphicsManager
        type=\"HostGraphicsManager\">graphicsManager-14</graphicsManager><vsanInternalSystem
        type=\"HostVsanInternalSystem\">ha-vsan-internal-system-14</vsanInternalSystem><certificateManager
        type=\"HostCertificateManager\">ha-certificate-manager-14</certificateManager><cryptoManager
        type=\"CryptoManagerHostKMS\">CryptoManagerHost-14</cryptoManager><nvdimmSystem
        type=\"HostNvdimmSystem\">ha-nvdimm-system-14</nvdimmSystem><assignableHardwareManager
        type=\"HostAssignableHardwareManager\">assignableHardwareManager-14</assignableHardwareManager></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '3501'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:17 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '5'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">config</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"HostConfigInfo\"><host type=\"HostSystem\">host-14</host><product><name>VMware
        ESXi</name><fullName>VMware ESXi 8.0.3 build-69507956</fullName><vendor>VMware,
        Inc.</vendor><version>8.0.3</version><patchLevel>3.0</patchLevel><build>69507956</build><localeVersion>INTL</localeVersion><localeBuild>000</localeBuild><osType>vmnix-x86</osType><productLineId>embeddedEsx</productLineId><apiType>HostAgent</apiType><apiVersion>8.0.2.0</apiVersion><licenseProductName>VMware
        ESX Server</licenseProductName><licenseProductVersion>8.0</licenseProductVersion></product><deploymentInfo><bootedFromStatelessCache>false</bootedFromStatelessCache></deploymentInfo><hyperThread><available>false</available><active>false</active><config>true</config></hyperThread><storageDevice><hostBusAdapter
        xsi:type=\"HostParallelScsiHba\"><key>key-vim.host.ParallelScsiHba-vmhba0</key><device>vmhba0</device><bus>3</bus><status>unknown</status><model>PVSCSI
        SCSI Controller</model><driver>pvscsi</driver><pci>0000:03:00.0</pci><storageProtocol>scsi</storageProtocol></hostBusAdapter><hostBusAdapter
        xsi:type=\"HostPcieHba\"><key>key-vim.host.PcieHba-vmhba1</key><device>vmhba1</device><bus>12</bus><status>unknown</status><model>NVMe
        SSD Controller</model><driver>nvme_pcie</driver><pci>0000:0c:00.0</pci><storageProtocol>nvme</storageProtocol></hostBusAdapter><hostBusAdapter
        xsi:type=\"HostBlockHba\"><key>key-vim.host.BlockHba-vmhba2</key><device>vmhba2</device><bus>0</bus><status>unknown</status><model>PIIX4
        for 430TX/440BX/MX IDE Controller</model><driver>vmkata</driver><pci>0000:00:07.1</pci><storageProtocol>scsi</storageProtocol></hostBusAdapter><hostBusAdapter
        xsi:type=\"HostBlockHba\"><key>key-vim.host.BlockHba-vmhba64</key><device>vmhba64</device><bus>0</bus><status>unknown</status><model>PIIX4
        for 430TX/440BX/MX IDE Controller</model><driver>vmkata</driver><pci>0000:00:07.1</pci><storageProtocol>scsi</storageProtocol></hostBusAdapter><scsiLun
        xsi:type=\"HostScsiDisk\"><deviceName>/vmfs/devices/disks/eui.bf39aeebe2d354a3000c29631c7fc125</deviceName><deviceType>disk</deviceType><key>key-vim.host.ScsiDisk-06bf39aeebe2d354a3000c29631c7fc125</key><uuid>06bf39aeebe2d354a3000c29631c7fc125</uuid><descriptor><quality>highQuality</quality><id>eui.bf39aeebe2d354a3000c29631c7fc125</id></descriptor><descriptor><quality>highQuality</quality><id>vml.06bf39aeebe2d354a3000c29631c7fc125</id></descriptor><descriptor><quality>highQuality</quality><id>06bf39aeebe2d354a3000c29631c7fc125</id></descriptor><descriptor><quality>mediumQuality</quality><id>vml.0100000000424633395f414545425f453244335f353441335f303030435f323936335f314337465f433132352e564d7761</id></descriptor><descriptor><quality>mediumQuality</quality><id>vml.0100000000564d77617265204e564d455f3030303100000000564d77617265</id></descriptor><descriptor><quality>highQuality</quality><id>t10.NVMe____VMware_Virtual_NVMe_Disk________________VMware_NVME_0001____00000001</id></descriptor><canonicalName>eui.bf39aeebe2d354a3000c29631c7fc125</canonicalName><displayName>Local
        NVMe Disk (eui.bf39aeebe2d354a3000c29631c7fc125)</displayName><lunType>disk</lunType><vendor>NVMe</vendor><model>VMware
        Virtual NVMe Disk</model><revision>1.3</revision><scsiLevel>0</scsiLevel><serialNumber>bf39aeebe2d354a3000c29631c7fc125</serialNumber><durableName><namespace>SERIALNUM</namespace><namespaceId>4</namespaceId><data>98</data><data>102</data><data>51</data><data>57</data><data>97</data><data>101</data><data>101</data><data>98</data><data>101</data><data>50</data><data>100</data><data>51</data><data>53</data><data>52</data><data>97</data><data>51</data><data>48</data><data>48</data><data>48</data><data>99</data><data>50</data><data>57</data><data>54</data><data>51</data><data>49</data><data>99</data><data>55</data><data>102</data><data>99</data><data>49</data><data>50</data><data>53</data></durableName><alternateName><namespace>SERIALNUM</namespace><namespaceId>4</namespaceId><data>98</data><data>102</data><data>51</data><data>57</data><data>97</data><data>101</data><data>101</data><data>98</data><data>101</data><data>50</data><data>100</data><data>51</data><data>53</data><data>52</data><data>97</data><data>51</data><data>48</data><data>48</data><data>48</data><data>99</data><data>50</data><data>57</data><data>54</data><data>51</data><data>49</data><data>99</data><data>55</data><data>102</data><data>99</data><data>49</data><data>50</data><data>53</data></alternateName><queueDepth>128</queueDepth><operationalState>ok</operationalState><capabilities><updateDisplayNameSupported>true</updateDisplayNameSupported></capabilities><vStorageSupport>vStorageUnsupported</vStorageSupport><protocolEndpoint>false</protocolEndpoint><perenniallyReserved>false</perenniallyReserved><clusteredVmdkSupported>false</clusteredVmdkSupported><applicationProtocol>NVMe</applicationProtocol><dispersedNs>false</dispersedNs><capacity><blockSize>512</blockSize><block>94371840</block></capacity><devicePath>/vmfs/devices/disks/eui.bf39aeebe2d354a3000c29631c7fc125</devicePath><ssd>true</ssd><localDisk>true</localDisk><physicalLocation>nvme1</physicalLocation><emulatedDIXDIFEnabled>false</emulatedDIXDIFEnabled><scsiDiskType>emulated512</scsiDiskType></scsiLun><scsiLun
        xsi:type=\"HostScsiDisk\"><deviceName>/vmfs/devices/disks/mpx.vmhba0:C0:T3:L0</deviceName><deviceType>disk</deviceType><key>key-vim.host.ScsiDisk-0000000000766d686261303a333a30</key><uuid>0000000000766d686261303a333a30</uuid><descriptor><quality>lowQuality</quality><id>mpx.vmhba0:C0:T3:L0</id></descriptor><descriptor><quality>lowQuality</quality><id>vml.0000000000766d686261303a333a30</id></descriptor><descriptor><quality>lowQuality</quality><id>0000000000766d686261303a333a30</id></descriptor><canonicalName>mpx.vmhba0:C0:T3:L0</canonicalName><displayName>Local
        VMware Disk (mpx.vmhba0:C0:T3:L0)</displayName><lunType>disk</lunType><vendor>VMware
        \ </vendor><model>Virtual disk    </model><revision>2.0 </revision><scsiLevel>6</scsiLevel><serialNumber>unavailable</serialNumber><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>0</data><data>0</data><data>4</data><data>0</data><data>-80</data><data>-79</data><data>-78</data></alternateName><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>-80</data><data>0</data><data>60</data><data>1</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>32</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data></alternateName><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>-79</data><data>0</data><data>60</data><data>0</data><data>1</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data></alternateName><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>-78</data><data>0</data><data>4</data><data>1</data><data>96</data><data>0</data><data>0</data></alternateName><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>6</standardInquiry><standardInquiry>2</standardInquiry><standardInquiry>31</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>114</standardInquiry><standardInquiry>86</standardInquiry><standardInquiry>77</standardInquiry><standardInquiry>119</standardInquiry><standardInquiry>97</standardInquiry><standardInquiry>114</standardInquiry><standardInquiry>101</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>86</standardInquiry><standardInquiry>105</standardInquiry><standardInquiry>114</standardInquiry><standardInquiry>116</standardInquiry><standardInquiry>117</standardInquiry><standardInquiry>97</standardInquiry><standardInquiry>108</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>100</standardInquiry><standardInquiry>105</standardInquiry><standardInquiry>115</standardInquiry><standardInquiry>107</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>50</standardInquiry><standardInquiry>46</standardInquiry><standardInquiry>48</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><queueDepth>1024</queueDepth><operationalState>ok</operationalState><capabilities><updateDisplayNameSupported>false</updateDisplayNameSupported></capabilities><vStorageSupport>vStorageUnsupported</vStorageSupport><protocolEndpoint>false</protocolEndpoint><perenniallyReserved>false</perenniallyReserved><clusteredVmdkSupported>false</clusteredVmdkSupported><applicationProtocol>SCSI</applicationProtocol><dispersedNs>false</dispersedNs><capacity><blockSize>512</blockSize><block>104857600</block></capacity><devicePath>/vmfs/devices/disks/mpx.vmhba0:C0:T3:L0</devicePath><ssd>true</ssd><localDisk>true</localDisk><emulatedDIXDIFEnabled>false</emulatedDIXDIFEnabled><scsiDiskType>native512</scsiDiskType></scsiLun><scsiLun
        xsi:type=\"HostScsiDisk\"><deviceName>/vmfs/devices/disks/mpx.vmhba0:C0:T2:L0</deviceName><deviceType>disk</deviceType><key>key-vim.host.ScsiDisk-0000000000766d686261303a323a30</key><uuid>0000000000766d686261303a323a30</uuid><descriptor><quality>lowQuality</quality><id>mpx.vmhba0:C0:T2:L0</id></descriptor><descriptor><quality>lowQuality</quality><id>vml.0000000000766d686261303a323a30</id></descriptor><descriptor><quality>lowQuality</quality><id>0000000000766d686261303a323a30</id></descriptor><canonicalName>mpx.vmhba0:C0:T2:L0</canonicalName><displayName>Local
        VMware Disk (mpx.vmhba0:C0:T2:L0)</displayName><lunType>disk</lunType><vendor>VMware
        \ </vendor><model>Virtual disk    </model><revision>2.0 </revision><scsiLevel>6</scsiLevel><serialNumber>unavailable</serialNumber><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>0</data><data>0</data><data>4</data><data>0</data><data>-80</data><data>-79</data><data>-78</data></alternateName><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>-80</data><data>0</data><data>60</data><data>1</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>32</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data></alternateName><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>-79</data><data>0</data><data>60</data><data>58</data><data>-104</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data></alternateName><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>-78</data><data>0</data><data>4</data><data>1</data><data>96</data><data>0</data><data>0</data></alternateName><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>6</standardInquiry><standardInquiry>2</standardInquiry><standardInquiry>31</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>114</standardInquiry><standardInquiry>86</standardInquiry><standardInquiry>77</standardInquiry><standardInquiry>119</standardInquiry><standardInquiry>97</standardInquiry><standardInquiry>114</standardInquiry><standardInquiry>101</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>86</standardInquiry><standardInquiry>105</standardInquiry><standardInquiry>114</standardInquiry><standardInquiry>116</standardInquiry><standardInquiry>117</standardInquiry><standardInquiry>97</standardInquiry><standardInquiry>108</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>100</standardInquiry><standardInquiry>105</standardInquiry><standardInquiry>115</standardInquiry><standardInquiry>107</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>50</standardInquiry><standardInquiry>46</standardInquiry><standardInquiry>48</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><queueDepth>1024</queueDepth><operationalState>ok</operationalState><capabilities><updateDisplayNameSupported>false</updateDisplayNameSupported></capabilities><vStorageSupport>vStorageUnsupported</vStorageSupport><protocolEndpoint>false</protocolEndpoint><perenniallyReserved>false</perenniallyReserved><clusteredVmdkSupported>false</clusteredVmdkSupported><applicationProtocol>SCSI</applicationProtocol><dispersedNs>false</dispersedNs><capacity><blockSize>512</blockSize><block>94371840</block></capacity><devicePath>/vmfs/devices/disks/mpx.vmhba0:C0:T2:L0</devicePath><ssd>false</ssd><localDisk>true</localDisk><emulatedDIXDIFEnabled>false</emulatedDIXDIFEnabled><scsiDiskType>native512</scsiDiskType></scsiLun><scsiLun
        xsi:type=\"HostScsiDisk\"><deviceName>/vmfs/devices/disks/mpx.vmhba0:C0:T1:L0</deviceName><deviceType>disk</deviceType><key>key-vim.host.ScsiDisk-0000000000766d686261303a313a30</key><uuid>0000000000766d686261303a313a30</uuid><descriptor><quality>lowQuality</quality><id>mpx.vmhba0:C0:T1:L0</id></descriptor><descriptor><quality>lowQuality</quality><id>vml.0000000000766d686261303a313a30</id></descriptor><descriptor><quality>lowQuality</quality><id>0000000000766d686261303a313a30</id></descriptor><canonicalName>mpx.vmhba0:C0:T1:L0</canonicalName><displayName>Local
        VMware Disk (mpx.vmhba0:C0:T1:L0)</displayName><lunType>disk</lunType><vendor>VMware
        \ </vendor><model>Virtual disk    </model><revision>2.0 </revision><scsiLevel>6</scsiLevel><serialNumber>unavailable</serialNumber><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>0</data><data>0</data><data>4</data><data>0</data><data>-80</data><data>-79</data><data>-78</data></alternateName><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>-80</data><data>0</data><data>60</data><data>1</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>32</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data></alternateName><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>-79</data><data>0</data><data>60</data><data>58</data><data>-104</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data></alternateName><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>-78</data><data>0</data><data>4</data><data>1</data><data>96</data><data>0</data><data>0</data></alternateName><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>6</standardInquiry><standardInquiry>2</standardInquiry><standardInquiry>31</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>114</standardInquiry><standardInquiry>86</standardInquiry><standardInquiry>77</standardInquiry><standardInquiry>119</standardInquiry><standardInquiry>97</standardInquiry><standardInquiry>114</standardInquiry><standardInquiry>101</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>86</standardInquiry><standardInquiry>105</standardInquiry><standardInquiry>114</standardInquiry><standardInquiry>116</standardInquiry><standardInquiry>117</standardInquiry><standardInquiry>97</standardInquiry><standardInquiry>108</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>100</standardInquiry><standardInquiry>105</standardInquiry><standardInquiry>115</standardInquiry><standardInquiry>107</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>50</standardInquiry><standardInquiry>46</standardInquiry><standardInquiry>48</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><queueDepth>1024</queueDepth><operationalState>ok</operationalState><capabilities><updateDisplayNameSupported>false</updateDisplayNameSupported></capabilities><vStorageSupport>vStorageUnsupported</vStorageSupport><protocolEndpoint>false</protocolEndpoint><perenniallyReserved>false</perenniallyReserved><clusteredVmdkSupported>false</clusteredVmdkSupported><applicationProtocol>SCSI</applicationProtocol><dispersedNs>false</dispersedNs><capacity><blockSize>512</blockSize><block>94371840</block></capacity><devicePath>/vmfs/devices/disks/mpx.vmhba0:C0:T1:L0</devicePath><ssd>false</ssd><localDisk>true</localDisk><emulatedDIXDIFEnabled>false</emulatedDIXDIFEnabled><scsiDiskType>native512</scsiDiskType></scsiLun><scsiLun
        xsi:type=\"HostScsiDisk\"><deviceName>/vmfs/devices/disks/eui.9edd90219f5e2bb1000c2960fb5c7fe7</deviceName><deviceType>disk</deviceType><key>key-vim.host.ScsiDisk-069edd90219f5e2bb1000c2960fb5c7fe7</key><uuid>069edd90219f5e2bb1000c2960fb5c7fe7</uuid><descriptor><quality>highQuality</quality><id>eui.9edd90219f5e2bb1000c2960fb5c7fe7</id></descriptor><descriptor><quality>highQuality</quality><id>vml.069edd90219f5e2bb1000c2960fb5c7fe7</id></descriptor><descriptor><quality>highQuality</quality><id>069edd90219f5e2bb1000c2960fb5c7fe7</id></descriptor><descriptor><quality>mediumQuality</quality><id>vml.0100010000394544445f393032315f394635455f324242315f303030435f323936305f464235435f374645372e564d7761</id></descriptor><descriptor><quality>mediumQuality</quality><id>vml.0100010000564d77617265204e564d455f3030303100000000564d77617265</id></descriptor><descriptor><quality>highQuality</quality><id>t10.NVMe____VMware_Virtual_NVMe_Disk________________VMware_NVME_0001____00000002</id></descriptor><canonicalName>eui.9edd90219f5e2bb1000c2960fb5c7fe7</canonicalName><displayName>Local
        NVMe Disk (eui.9edd90219f5e2bb1000c2960fb5c7fe7)</displayName><lunType>disk</lunType><vendor>NVMe</vendor><model>VMware
        Virtual NVMe Disk</model><revision>1.3</revision><scsiLevel>0</scsiLevel><serialNumber>9edd90219f5e2bb1000c2960fb5c7fe7</serialNumber><durableName><namespace>SERIALNUM</namespace><namespaceId>4</namespaceId><data>57</data><data>101</data><data>100</data><data>100</data><data>57</data><data>48</data><data>50</data><data>49</data><data>57</data><data>102</data><data>53</data><data>101</data><data>50</data><data>98</data><data>98</data><data>49</data><data>48</data><data>48</data><data>48</data><data>99</data><data>50</data><data>57</data><data>54</data><data>48</data><data>102</data><data>98</data><data>53</data><data>99</data><data>55</data><data>102</data><data>101</data><data>55</data></durableName><alternateName><namespace>SERIALNUM</namespace><namespaceId>4</namespaceId><data>57</data><data>101</data><data>100</data><data>100</data><data>57</data><data>48</data><data>50</data><data>49</data><data>57</data><data>102</data><data>53</data><data>101</data><data>50</data><data>98</data><data>98</data><data>49</data><data>48</data><data>48</data><data>48</data><data>99</data><data>50</data><data>57</data><data>54</data><data>48</data><data>102</data><data>98</data><data>53</data><data>99</data><data>55</data><data>102</data><data>101</data><data>55</data></alternateName><queueDepth>128</queueDepth><operationalState>ok</operationalState><capabilities><updateDisplayNameSupported>true</updateDisplayNameSupported></capabilities><vStorageSupport>vStorageUnsupported</vStorageSupport><protocolEndpoint>false</protocolEndpoint><perenniallyReserved>false</perenniallyReserved><clusteredVmdkSupported>false</clusteredVmdkSupported><applicationProtocol>NVMe</applicationProtocol><dispersedNs>false</dispersedNs><capacity><blockSize>512</blockSize><block>94371840</block></capacity><devicePath>/vmfs/devices/disks/eui.9edd90219f5e2bb1000c2960fb5c7fe7</devicePath><ssd>true</ssd><localDisk>true</localDisk><physicalLocation>nvme1</physicalLocation><emulatedDIXDIFEnabled>false</emulatedDIXDIFEnabled><scsiDiskType>emulated512</scsiDiskType></scsiLun><scsiLun
        xsi:type=\"HostScsiDisk\"><deviceName>/vmfs/devices/disks/mpx.vmhba0:C0:T0:L0</deviceName><deviceType>disk</deviceType><key>key-vim.host.ScsiDisk-0000000000766d686261303a303a30</key><uuid>0000000000766d686261303a303a30</uuid><descriptor><quality>lowQuality</quality><id>mpx.vmhba0:C0:T0:L0</id></descriptor><descriptor><quality>lowQuality</quality><id>vml.0000000000766d686261303a303a30</id></descriptor><descriptor><quality>lowQuality</quality><id>0000000000766d686261303a303a30</id></descriptor><canonicalName>mpx.vmhba0:C0:T0:L0</canonicalName><displayName>Local
        VMware Disk (mpx.vmhba0:C0:T0:L0)</displayName><lunType>disk</lunType><vendor>VMware
        \ </vendor><model>Virtual disk    </model><revision>2.0 </revision><scsiLevel>6</scsiLevel><serialNumber>unavailable</serialNumber><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>0</data><data>0</data><data>4</data><data>0</data><data>-80</data><data>-79</data><data>-78</data></alternateName><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>-80</data><data>0</data><data>60</data><data>1</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>32</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data></alternateName><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>-79</data><data>0</data><data>60</data><data>58</data><data>-104</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data><data>0</data></alternateName><alternateName><namespace>GENERIC_VPD</namespace><namespaceId>5</namespaceId><data>0</data><data>-78</data><data>0</data><data>4</data><data>1</data><data>96</data><data>0</data><data>0</data></alternateName><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>6</standardInquiry><standardInquiry>2</standardInquiry><standardInquiry>31</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>114</standardInquiry><standardInquiry>86</standardInquiry><standardInquiry>77</standardInquiry><standardInquiry>119</standardInquiry><standardInquiry>97</standardInquiry><standardInquiry>114</standardInquiry><standardInquiry>101</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>86</standardInquiry><standardInquiry>105</standardInquiry><standardInquiry>114</standardInquiry><standardInquiry>116</standardInquiry><standardInquiry>117</standardInquiry><standardInquiry>97</standardInquiry><standardInquiry>108</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>100</standardInquiry><standardInquiry>105</standardInquiry><standardInquiry>115</standardInquiry><standardInquiry>107</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>50</standardInquiry><standardInquiry>46</standardInquiry><standardInquiry>48</standardInquiry><standardInquiry>32</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><standardInquiry>0</standardInquiry><queueDepth>1024</queueDepth><operationalState>ok</operationalState><capabilities><updateDisplayNameSupported>false</updateDisplayNameSupported></capabilities><vStorageSupport>vStorageUnsupported</vStorageSupport><protocolEndpoint>false</protocolEndpoint><perenniallyReserved>false</perenniallyReserved><clusteredVmdkSupported>false</clusteredVmdkSupported><applicationProtocol>SCSI</applicationProtocol><dispersedNs>false</dispersedNs><capacity><blockSize>512</blockSize><block>67108864</block></capacity><devicePath>/vmfs/devices/disks/mpx.vmhba0:C0:T0:L0</devicePath><ssd>false</ssd><localDisk>true</localDisk><emulatedDIXDIFEnabled>false</emulatedDIXDIFEnabled><scsiDiskType>native512</scsiDiskType></scsiLun><scsiTopology><adapter><key>key-vim.host.ScsiTopology.Interface-vmhba0</key><adapter>key-vim.host.ParallelScsiHba-vmhba0</adapter><target><key>key-vim.host.ScsiTopology.Target-vmhba0:0:1</key><target>1</target><lun><key>key-vim.host.ScsiTopology.Lun-0000000000766d686261303a313a30</key><lun>0</lun><scsiLun>key-vim.host.ScsiDisk-0000000000766d686261303a313a30</scsiLun></lun><transport
        xsi:type=\"HostParallelScsiTargetTransport\"></transport></target><target><key>key-vim.host.ScsiTopology.Target-vmhba0:0:0</key><target>0</target><lun><key>key-vim.host.ScsiTopology.Lun-0000000000766d686261303a303a30</key><lun>0</lun><scsiLun>key-vim.host.ScsiDisk-0000000000766d686261303a303a30</scsiLun></lun><transport
        xsi:type=\"HostParallelScsiTargetTransport\"></transport></target><target><key>key-vim.host.ScsiTopology.Target-vmhba0:0:3</key><target>3</target><lun><key>key-vim.host.ScsiTopology.Lun-0000000000766d686261303a333a30</key><lun>0</lun><scsiLun>key-vim.host.ScsiDisk-0000000000766d686261303a333a30</scsiLun></lun><transport
        xsi:type=\"HostParallelScsiTargetTransport\"></transport></target><target><key>key-vim.host.ScsiTopology.Target-vmhba0:0:2</key><target>2</target><lun><key>key-vim.host.ScsiTopology.Lun-0000000000766d686261303a323a30</key><lun>0</lun><scsiLun>key-vim.host.ScsiDisk-0000000000766d686261303a323a30</scsiLun></lun><transport
        xsi:type=\"HostParallelScsiTargetTransport\"></transport></target></adapter><adapter><key>key-vim.host.ScsiTopology.Interface-vmhba1</key><adapter>key-vim.host.PcieHba-vmhba1</adapter><target><key>key-vim.host.ScsiTopology.Target-vmhba1:0:0</key><target>0</target><lun><key>key-vim.host.ScsiTopology.Lun-06bf39aeebe2d354a3000c29631c7fc125</key><lun>0</lun><scsiLun>key-vim.host.ScsiDisk-06bf39aeebe2d354a3000c29631c7fc125</scsiLun></lun><lun><key>key-vim.host.ScsiTopology.Lun-069edd90219f5e2bb1000c2960fb5c7fe7</key><lun>1</lun><scsiLun>key-vim.host.ScsiDisk-069edd90219f5e2bb1000c2960fb5c7fe7</scsiLun></lun><transport
        xsi:type=\"HostPcieTargetTransport\"></transport></target></adapter><adapter><key>key-vim.host.ScsiTopology.Interface-vmhba2</key><adapter>key-vim.host.BlockHba-vmhba2</adapter></adapter><adapter><key>key-vim.host.ScsiTopology.Interface-vmhba64</key><adapter>key-vim.host.BlockHba-vmhba64</adapter></adapter></scsiTopology><nvmeTopology><adapter><key>key-vim.host.NvmeTopology.Interface-vmhba1</key><adapter>key-vim.host.PcieHba-vmhba1</adapter><connectedController><key>key-vim.host.NvmeController-256</key><controllerNumber>256</controllerNumber><subnqn>nqn.2014-08.org.nvmexpress:uuid:522bf3e1-34d2-d405-1853-2eb32532d711</subnqn><name>nqn.2014-08.org.nvmexpress:uuid:522bf3e1-34d2-d405-1853-2eb32532d711</name><associatedAdapter>key-vim.host.PcieHba-vmhba1</associatedAdapter><transportType>pcie</transportType><fusedOperationSupported>false</fusedOperationSupported><numberOfQueues>1</numberOfQueues><queueSize>256</queueSize><attachedNamespace><key>key-vim.host.NvmeNamespace-eui.bf39aeebe2d354a3000c29631c7fc125@256</key><name>eui.bf39aeebe2d354a3000c29631c7fc125</name><id>1</id><blockSize>512</blockSize><capacityInBlocks>94371840</capacityInBlocks></attachedNamespace><attachedNamespace><key>key-vim.host.NvmeNamespace-eui.9edd90219f5e2bb1000c2960fb5c7fe7@256</key><name>eui.9edd90219f5e2bb1000c2960fb5c7fe7</name><id>2</id><blockSize>512</blockSize><capacityInBlocks>94371840</capacityInBlocks></attachedNamespace><vendorId>0x15ad</vendorId><model>VMware
        Virtual NVMe Disk</model><serialNumber>VMware NVME_0001</serialNumber><firmwareVersion>1.3</firmwareVersion></connectedController></adapter></nvmeTopology><multipathInfo><lun><key>key-vim.host.MultipathInfo.LogicalUnit-06bf39aeebe2d354a3000c29631c7fc125</key><id>06bf39aeebe2d354a3000c29631c7fc125</id><lun>key-vim.host.ScsiDisk-06bf39aeebe2d354a3000c29631c7fc125</lun><path><key>key-vim.host.MultipathInfo.Path-vmhba1:C0:T0:L0</key><name>vmhba1:C0:T0:L0</name><pathState>active</pathState><state>active</state><isWorkingPath>true</isWorkingPath><adapter>key-vim.host.PcieHba-vmhba1</adapter><lun>key-vim.host.MultipathInfo.LogicalUnit-06bf39aeebe2d354a3000c29631c7fc125</lun><transport
        xsi:type=\"HostPcieTargetTransport\"></transport></path><policy xsi:type=\"HostMultipathInfoHppLogicalUnitPolicy\"><policy>FIXED</policy><path>none</path></policy></lun><lun><key>key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a333a30</key><id>0000000000766d686261303a333a30</id><lun>key-vim.host.ScsiDisk-0000000000766d686261303a333a30</lun><path><key>key-vim.host.MultipathInfo.Path-vmhba0:C0:T3:L0</key><name>vmhba0:C0:T3:L0</name><pathState>active</pathState><state>active</state><isWorkingPath>true</isWorkingPath><adapter>key-vim.host.ParallelScsiHba-vmhba0</adapter><lun>key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a333a30</lun><transport
        xsi:type=\"HostParallelScsiTargetTransport\"></transport></path><policy xsi:type=\"HostMultipathInfoHppLogicalUnitPolicy\"><policy>FIXED</policy><path>none</path></policy></lun><lun><key>key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a323a30</key><id>0000000000766d686261303a323a30</id><lun>key-vim.host.ScsiDisk-0000000000766d686261303a323a30</lun><path><key>key-vim.host.MultipathInfo.Path-vmhba0:C0:T2:L0</key><name>vmhba0:C0:T2:L0</name><pathState>active</pathState><state>active</state><isWorkingPath>true</isWorkingPath><adapter>key-vim.host.ParallelScsiHba-vmhba0</adapter><lun>key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a323a30</lun><transport
        xsi:type=\"HostParallelScsiTargetTransport\"></transport></path><policy xsi:type=\"HostMultipathInfoHppLogicalUnitPolicy\"><policy>FIXED</policy><path>none</path></policy></lun><lun><key>key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a313a30</key><id>0000000000766d686261303a313a30</id><lun>key-vim.host.ScsiDisk-0000000000766d686261303a313a30</lun><path><key>key-vim.host.MultipathInfo.Path-vmhba0:C0:T1:L0</key><name>vmhba0:C0:T1:L0</name><pathState>active</pathState><state>active</state><isWorkingPath>true</isWorkingPath><adapter>key-vim.host.ParallelScsiHba-vmhba0</adapter><lun>key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a313a30</lun><transport
        xsi:type=\"HostParallelScsiTargetTransport\"></transport></path><policy xsi:type=\"HostMultipathInfoHppLogicalUnitPolicy\"><policy>FIXED</policy><path>none</path></policy></lun><lun><key>key-vim.host.MultipathInfo.LogicalUnit-069edd90219f5e2bb1000c2960fb5c7fe7</key><id>069edd90219f5e2bb1000c2960fb5c7fe7</id><lun>key-vim.host.ScsiDisk-069edd90219f5e2bb1000c2960fb5c7fe7</lun><path><key>key-vim.host.MultipathInfo.Path-vmhba1:C0:T0:L1</key><name>vmhba1:C0:T0:L1</name><pathState>active</pathState><state>active</state><isWorkingPath>true</isWorkingPath><adapter>key-vim.host.PcieHba-vmhba1</adapter><lun>key-vim.host.MultipathInfo.LogicalUnit-069edd90219f5e2bb1000c2960fb5c7fe7</lun><transport
        xsi:type=\"HostPcieTargetTransport\"></transport></path><policy xsi:type=\"HostMultipathInfoHppLogicalUnitPolicy\"><policy>FIXED</policy><path>none</path></policy></lun><lun><key>key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30</key><id>0000000000766d686261303a303a30</id><lun>key-vim.host.ScsiDisk-0000000000766d686261303a303a30</lun><path><key>key-vim.host.MultipathInfo.Path-vmhba0:C0:T0:L0</key><name>vmhba0:C0:T0:L0</name><pathState>active</pathState><state>active</state><isWorkingPath>true</isWorkingPath><adapter>key-vim.host.ParallelScsiHba-vmhba0</adapter><lun>key-vim.host.MultipathInfo.LogicalUnit-0000000000766d686261303a303a30</lun><transport
        xsi:type=\"HostParallelScsiTargetTransport\"></transport></path><policy xsi:type=\"HostMultipathInfoHppLogicalUnitPolicy\"><policy>FIXED</policy><path>none</path></policy></lun></multipathInfo><plugStoreTopology><adapter><key>key-vim.host.PlugStoreTopology.Adapter-vmhba0</key><adapter>key-vim.host.ParallelScsiHba-vmhba0</adapter><path>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T1:L0</path><path>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0</path><path>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T3:L0</path><path>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T2:L0</path></adapter><adapter><key>key-vim.host.PlugStoreTopology.Adapter-vmhba1</key><adapter>key-vim.host.PcieHba-vmhba1</adapter><path>key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0</path><path>key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L1</path></adapter><adapter><key>key-vim.host.PlugStoreTopology.Adapter-vmhba2</key><adapter>key-vim.host.BlockHba-vmhba2</adapter></adapter><adapter><key>key-vim.host.PlugStoreTopology.Adapter-vmhba64</key><adapter>key-vim.host.BlockHba-vmhba64</adapter></adapter><path><key>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T1:L0</key><name>vmhba0:C0:T1:L0</name><channelNumber>0</channelNumber><targetNumber>1</targetNumber><lunNumber>0</lunNumber><adapter>key-vim.host.PlugStoreTopology.Adapter-vmhba0</adapter><target>key-vim.host.PlugStoreTopology.Target-pscsi.0:1</target><device>key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a313a30</device></path><path><key>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0</key><name>vmhba0:C0:T0:L0</name><channelNumber>0</channelNumber><targetNumber>0</targetNumber><lunNumber>0</lunNumber><adapter>key-vim.host.PlugStoreTopology.Adapter-vmhba0</adapter><target>key-vim.host.PlugStoreTopology.Target-pscsi.0:0</target><device>key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30</device></path><path><key>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T3:L0</key><name>vmhba0:C0:T3:L0</name><channelNumber>0</channelNumber><targetNumber>3</targetNumber><lunNumber>0</lunNumber><adapter>key-vim.host.PlugStoreTopology.Adapter-vmhba0</adapter><target>key-vim.host.PlugStoreTopology.Target-pscsi.0:3</target><device>key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a333a30</device></path><path><key>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T2:L0</key><name>vmhba0:C0:T2:L0</name><channelNumber>0</channelNumber><targetNumber>2</targetNumber><lunNumber>0</lunNumber><adapter>key-vim.host.PlugStoreTopology.Adapter-vmhba0</adapter><target>key-vim.host.PlugStoreTopology.Target-pscsi.0:2</target><device>key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a323a30</device></path><path><key>key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0</key><name>vmhba1:C0:T0:L0</name><channelNumber>0</channelNumber><targetNumber>0</targetNumber><lunNumber>0</lunNumber><adapter>key-vim.host.PlugStoreTopology.Adapter-vmhba1</adapter><target>key-vim.host.PlugStoreTopology.Target-pcie.0:0</target><device>key-vim.host.PlugStoreTopology.Device-06bf39aeebe2d354a3000c29631c7fc125</device></path><path><key>key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L1</key><name>vmhba1:C0:T0:L1</name><channelNumber>0</channelNumber><targetNumber>0</targetNumber><lunNumber>1</lunNumber><adapter>key-vim.host.PlugStoreTopology.Adapter-vmhba1</adapter><target>key-vim.host.PlugStoreTopology.Target-pcie.0:0</target><device>key-vim.host.PlugStoreTopology.Device-069edd90219f5e2bb1000c2960fb5c7fe7</device></path><target><key>key-vim.host.PlugStoreTopology.Target-pscsi.0:1</key><transport
        xsi:type=\"HostParallelScsiTargetTransport\"></transport></target><target><key>key-vim.host.PlugStoreTopology.Target-pscsi.0:0</key><transport
        xsi:type=\"HostParallelScsiTargetTransport\"></transport></target><target><key>key-vim.host.PlugStoreTopology.Target-pscsi.0:3</key><transport
        xsi:type=\"HostParallelScsiTargetTransport\"></transport></target><target><key>key-vim.host.PlugStoreTopology.Target-pscsi.0:2</key><transport
        xsi:type=\"HostParallelScsiTargetTransport\"></transport></target><target><key>key-vim.host.PlugStoreTopology.Target-pcie.0:0</key><transport
        xsi:type=\"HostPcieTargetTransport\"></transport></target><device><key>key-vim.host.PlugStoreTopology.Device-06bf39aeebe2d354a3000c29631c7fc125</key><lun>key-vim.host.ScsiDisk-06bf39aeebe2d354a3000c29631c7fc125</lun><path>key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0</path></device><device><key>key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a333a30</key><lun>key-vim.host.ScsiDisk-0000000000766d686261303a333a30</lun><path>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T3:L0</path></device><device><key>key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a323a30</key><lun>key-vim.host.ScsiDisk-0000000000766d686261303a323a30</lun><path>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T2:L0</path></device><device><key>key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a313a30</key><lun>key-vim.host.ScsiDisk-0000000000766d686261303a313a30</lun><path>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T1:L0</path></device><device><key>key-vim.host.PlugStoreTopology.Device-069edd90219f5e2bb1000c2960fb5c7fe7</key><lun>key-vim.host.ScsiDisk-069edd90219f5e2bb1000c2960fb5c7fe7</lun><path>key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L1</path></device><device><key>key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30</key><lun>key-vim.host.ScsiDisk-0000000000766d686261303a303a30</lun><path>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0</path></device><plugin><key>key-vim.host.PlugStoreTopology.Plugin-HPP</key><name>HPP</name><device>key-vim.host.PlugStoreTopology.Device-06bf39aeebe2d354a3000c29631c7fc125</device><device>key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a333a30</device><device>key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a323a30</device><device>key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a313a30</device><device>key-vim.host.PlugStoreTopology.Device-069edd90219f5e2bb1000c2960fb5c7fe7</device><device>key-vim.host.PlugStoreTopology.Device-0000000000766d686261303a303a30</device><claimedPath>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T1:L0</claimedPath><claimedPath>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T0:L0</claimedPath><claimedPath>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T3:L0</claimedPath><claimedPath>key-vim.host.PlugStoreTopology.Path-vmhba0:C0:T2:L0</claimedPath><claimedPath>key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L0</claimedPath><claimedPath>key-vim.host.PlugStoreTopology.Path-vmhba1:C0:T0:L1</claimedPath></plugin><plugin><key>key-vim.host.PlugStoreTopology.Plugin-NMP</key><name>NMP</name></plugin></plugStoreTopology><softwareInternetScsiEnabled>false</softwareInternetScsiEnabled></storageDevice><multipathState><path><name>vmhba0:C0:T0:L0</name><pathState>active</pathState></path><path><name>vmhba0:C0:T1:L0</name><pathState>active</pathState></path><path><name>vmhba0:C0:T2:L0</name><pathState>active</pathState></path><path><name>vmhba0:C0:T3:L0</name><pathState>active</pathState></path><path><name>vmhba1:C0:T0:L0</name><pathState>active</pathState></path><path><name>vmhba1:C0:T0:L1</name><pathState>active</pathState></path></multipathState><fileSystemVolume><volumeTypeList>VMFS</volumeTypeList><volumeTypeList>NFS</volumeTypeList><volumeTypeList>NFS41</volumeTypeList><volumeTypeList>vsan</volumeTypeList><volumeTypeList>VVOL</volumeTypeList><volumeTypeList>VFFS</volumeTypeList><volumeTypeList>OTHER</volumeTypeList><volumeTypeList>PMEM</volumeTypeList><mountInfo><mountInfo><path>/vmfs/volumes/6578236b-36208281-d646-062517c9e1a8</path><accessMode>readWrite</accessMode><mounted>true</mounted><accessible>true</accessible></mountInfo><volume
        xsi:type=\"HostVmfsVolume\"><type>OTHER</type><name>OSDATA-6578236b-36208281-d646-062517c9e1a8</name><capacity>8321499136</capacity><blockSizeMb>1</blockSizeMb><blockSize>1024</blockSize><unmapGranularity>1024</unmapGranularity><unmapPriority>low</unmapPriority><maxBlocks>63963136</maxBlocks><majorVersion>6</majorVersion><version>6.82</version><uuid>6578236b-36208281-d646-062517c9e1a8</uuid><extent><diskName>mpx.vmhba0:C0:T0:L0</diskName><partition>7</partition></extent><vmfsUpgradable>false</vmfsUpgradable><ssd>false</ssd><local>true</local></volume><vStorageSupport>vStorageUnsupported</vStorageSupport></mountInfo><mountInfo><mountInfo><path>/vmfs/volumes/d3aa3adf-8046e571-e9a0-bdde91390830</path><accessMode>readOnly</accessMode><mounted>true</mounted><accessible>true</accessible></mountInfo><volume
        xsi:type=\"HostVfatVolume\"><type>OTHER</type><name>BOOTBANK2</name><capacity>4293591040</capacity></volume></mountInfo><mountInfo><mountInfo><path>/vmfs/volumes/28fd2e31-bf4c2e17-8b8c-89c2fe6fecf6</path><accessMode>readOnly</accessMode><mounted>true</mounted><accessible>true</accessible></mountInfo><volume
        xsi:type=\"HostVfatVolume\"><type>OTHER</type><name>BOOTBANK1</name><capacity>4293591040</capacity></volume></mountInfo><mountInfo><mountInfo><path>/vmfs/volumes/vsan:5281f817da2563b1-f53a57a4a4c49434</path><accessMode>readWrite</accessMode><mounted>true</mounted><accessible>true</accessible></mountInfo><volume><type>vsan</type><name>vsanDatastore</name><capacity>386479947776</capacity></volume></mountInfo></fileSystemVolume><network><vswitch><name>vSwitch0</name><key>key-vim.host.VirtualSwitch-vSwitch0</key><numPorts>2060</numPorts><numPortsAvailable>2051</numPortsAvailable><mtu>1500</mtu><portgroup>key-vim.host.PortGroup-VM
        Network</portgroup><portgroup>key-vim.host.PortGroup-VMkernel</portgroup><portgroup>key-vim.host.PortGroup-Management
        Network</portgroup><pnic>key-vim.host.PhysicalNic-vmnic0</pnic><spec><numPorts>128</numPorts><bridge
        xsi:type=\"HostVirtualSwitchBondBridge\"><nicDevice>vmnic0</nicDevice><beacon><interval>1</interval></beacon><linkDiscoveryProtocolConfig><protocol>cdp</protocol><operation>listen</operation></linkDiscoveryProtocolConfig></bridge><policy><security><allowPromiscuous>false</allowPromiscuous><macChanges>false</macChanges><forgedTransmits>false</forgedTransmits></security><nicTeaming><policy>loadbalance_srcid</policy><reversePolicy>true</reversePolicy><notifySwitches>true</notifySwitches><rollingOrder>false</rollingOrder><failureCriteria><checkSpeed>minimum</checkSpeed><speed>10</speed><checkDuplex>false</checkDuplex><fullDuplex>false</fullDuplex><checkErrorPercent>false</checkErrorPercent><percentage>0</percentage><checkBeacon>false</checkBeacon></failureCriteria><nicOrder><activeNic>vmnic0</activeNic></nicOrder></nicTeaming><offloadPolicy><csumOffload>true</csumOffload><tcpSegmentation>true</tcpSegmentation><zeroCopyXmit>true</zeroCopyXmit></offloadPolicy><shapingPolicy><enabled>false</enabled></shapingPolicy></policy></spec></vswitch><portgroup><key>key-vim.host.PortGroup-VM
        Network</key><vswitch>key-vim.host.VirtualSwitch-vSwitch0</vswitch><computedPolicy><security><allowPromiscuous>false</allowPromiscuous><macChanges>false</macChanges><forgedTransmits>false</forgedTransmits></security><nicTeaming><policy>loadbalance_srcid</policy><reversePolicy>true</reversePolicy><notifySwitches>true</notifySwitches><rollingOrder>false</rollingOrder><failureCriteria><checkSpeed>minimum</checkSpeed><speed>10</speed><checkDuplex>false</checkDuplex><fullDuplex>false</fullDuplex><checkErrorPercent>false</checkErrorPercent><percentage>0</percentage><checkBeacon>false</checkBeacon></failureCriteria><nicOrder><activeNic>vmnic0</activeNic></nicOrder></nicTeaming><offloadPolicy><csumOffload>true</csumOffload><tcpSegmentation>true</tcpSegmentation><zeroCopyXmit>true</zeroCopyXmit></offloadPolicy><shapingPolicy><enabled>false</enabled></shapingPolicy></computedPolicy><spec><name>VM
        Network</name><vlanId>0</vlanId><vswitchName>vSwitch0</vswitchName><policy><security></security><nicTeaming><failureCriteria></failureCriteria></nicTeaming><offloadPolicy></offloadPolicy><shapingPolicy></shapingPolicy></policy></spec></portgroup><portgroup><key>key-vim.host.PortGroup-VMkernel</key><port><key>key-vim.host.PortGroup.Port-67108874</key><mac>00:50:56:6e:35:94</mac><type>host</type></port><vswitch>key-vim.host.VirtualSwitch-vSwitch0</vswitch><computedPolicy><security><allowPromiscuous>false</allowPromiscuous><macChanges>false</macChanges><forgedTransmits>false</forgedTransmits></security><nicTeaming><policy>loadbalance_srcid</policy><reversePolicy>true</reversePolicy><notifySwitches>true</notifySwitches><rollingOrder>false</rollingOrder><failureCriteria><checkSpeed>minimum</checkSpeed><speed>10</speed><checkDuplex>false</checkDuplex><fullDuplex>false</fullDuplex><checkErrorPercent>false</checkErrorPercent><percentage>0</percentage><checkBeacon>false</checkBeacon></failureCriteria><nicOrder><activeNic>vmnic0</activeNic></nicOrder></nicTeaming><offloadPolicy><csumOffload>true</csumOffload><tcpSegmentation>true</tcpSegmentation><zeroCopyXmit>true</zeroCopyXmit></offloadPolicy><shapingPolicy><enabled>false</enabled></shapingPolicy></computedPolicy><spec><name>VMkernel</name><vlanId>0</vlanId><vswitchName>vSwitch0</vswitchName><policy><security></security><nicTeaming><failureCriteria></failureCriteria></nicTeaming><offloadPolicy></offloadPolicy><shapingPolicy></shapingPolicy></policy></spec></portgroup><portgroup><key>key-vim.host.PortGroup-Management
        Network</key><port><key>key-vim.host.PortGroup.Port-67108873</key><mac>06:25:17:84:89:4f</mac><type>host</type></port><vswitch>key-vim.host.VirtualSwitch-vSwitch0</vswitch><computedPolicy><security><allowPromiscuous>false</allowPromiscuous><macChanges>false</macChanges><forgedTransmits>false</forgedTransmits></security><nicTeaming><policy>loadbalance_srcid</policy><reversePolicy>true</reversePolicy><notifySwitches>true</notifySwitches><rollingOrder>false</rollingOrder><failureCriteria><checkSpeed>minimum</checkSpeed><speed>10</speed><checkDuplex>false</checkDuplex><fullDuplex>false</fullDuplex><checkErrorPercent>false</checkErrorPercent><percentage>0</percentage><checkBeacon>false</checkBeacon></failureCriteria><nicOrder><activeNic>vmnic0</activeNic></nicOrder></nicTeaming><offloadPolicy><csumOffload>true</csumOffload><tcpSegmentation>true</tcpSegmentation><zeroCopyXmit>true</zeroCopyXmit></offloadPolicy><shapingPolicy><enabled>false</enabled></shapingPolicy></computedPolicy><spec><name>Management
        Network</name><vlanId>0</vlanId><vswitchName>vSwitch0</vswitchName><policy><security></security><nicTeaming><policy>loadbalance_srcid</policy><notifySwitches>true</notifySwitches><rollingOrder>false</rollingOrder><failureCriteria><checkBeacon>false</checkBeacon></failureCriteria><nicOrder><activeNic>vmnic0</activeNic></nicOrder></nicTeaming><offloadPolicy></offloadPolicy><shapingPolicy></shapingPolicy></policy></spec></portgroup><pnic><key>key-vim.host.PhysicalNic-vmnic0</key><device>vmnic0</device><pci>0000:0b:00.0</pci><driver>nvmxnet3</driver><driverVersion>2.0.0.31</driverVersion><firmwareVersion>7</firmwareVersion><linkSpeed><speedMb>10000</speedMb><duplex>true</duplex></linkSpeed><validLinkSpecification><speedMb>10000</speedMb><duplex>true</duplex></validLinkSpecification><spec><ip><dhcp>false</dhcp><ipAddress></ipAddress><subnetMask></subnetMask></ip><linkSpeed><speedMb>10000</speedMb><duplex>true</duplex></linkSpeed><enableEnhancedNetworkingStack>false</enableEnhancedNetworkingStack><ensInterruptEnabled>false</ensInterruptEnabled></spec><wakeOnLanSupported>false</wakeOnLanSupported><mac>06:25:17:84:89:4f</mac><fcoeConfiguration><priorityClass>3</priorityClass><sourceMac>06:25:17:84:89:4f</sourceMac><vlanRange><vlanLow>0</vlanLow><vlanHigh>0</vlanHigh></vlanRange><capabilities><priorityClass>false</priorityClass><sourceMacAddress>false</sourceMacAddress><vlanRange>false</vlanRange></capabilities><fcoeActive>false</fcoeActive></fcoeConfiguration><vmDirectPathGen2Supported>false</vmDirectPathGen2Supported><resourcePoolSchedulerAllowed>true</resourcePoolSchedulerAllowed><autoNegotiateSupported>false</autoNegotiateSupported><enhancedNetworkingStackSupported>true</enhancedNetworkingStackSupported><ensInterruptSupported>true</ensInterruptSupported></pnic><pnic><key>key-vim.host.PhysicalNic-vmnic1</key><device>vmnic1</device><pci>0000:13:00.0</pci><driver>nvmxnet3</driver><driverVersion>2.0.0.31</driverVersion><firmwareVersion>7</firmwareVersion><linkSpeed><speedMb>10000</speedMb><duplex>true</duplex></linkSpeed><validLinkSpecification><speedMb>10000</speedMb><duplex>true</duplex></validLinkSpecification><spec><ip><dhcp>false</dhcp><ipAddress></ipAddress><subnetMask></subnetMask></ip><linkSpeed><speedMb>10000</speedMb><duplex>true</duplex></linkSpeed><enableEnhancedNetworkingStack>false</enableEnhancedNetworkingStack><ensInterruptEnabled>false</ensInterruptEnabled></spec><wakeOnLanSupported>false</wakeOnLanSupported><mac>06:25:17:cc:8f:d7</mac><fcoeConfiguration><priorityClass>3</priorityClass><sourceMac>06:25:17:cc:8f:d7</sourceMac><vlanRange><vlanLow>0</vlanLow><vlanHigh>0</vlanHigh></vlanRange><capabilities><priorityClass>false</priorityClass><sourceMacAddress>false</sourceMacAddress><vlanRange>false</vlanRange></capabilities><fcoeActive>false</fcoeActive></fcoeConfiguration><vmDirectPathGen2Supported>false</vmDirectPathGen2Supported><resourcePoolSchedulerAllowed>true</resourcePoolSchedulerAllowed><autoNegotiateSupported>false</autoNegotiateSupported><enhancedNetworkingStackSupported>true</enhancedNetworkingStackSupported><ensInterruptSupported>true</ensInterruptSupported></pnic><pnic><key>key-vim.host.PhysicalNic-vmnic2</key><device>vmnic2</device><pci>0000:1b:00.0</pci><driver>nvmxnet3</driver><driverVersion>2.0.0.31</driverVersion><firmwareVersion>7</firmwareVersion><linkSpeed><speedMb>10000</speedMb><duplex>true</duplex></linkSpeed><validLinkSpecification><speedMb>10000</speedMb><duplex>true</duplex></validLinkSpecification><spec><ip><dhcp>false</dhcp><ipAddress></ipAddress><subnetMask></subnetMask></ip><linkSpeed><speedMb>10000</speedMb><duplex>true</duplex></linkSpeed><enableEnhancedNetworkingStack>false</enableEnhancedNetworkingStack><ensInterruptEnabled>false</ensInterruptEnabled></spec><wakeOnLanSupported>false</wakeOnLanSupported><mac>06:25:17:65:70:60</mac><fcoeConfiguration><priorityClass>3</priorityClass><sourceMac>06:25:17:65:70:60</sourceMac><vlanRange><vlanLow>0</vlanLow><vlanHigh>0</vlanHigh></vlanRange><capabilities><priorityClass>false</priorityClass><sourceMacAddress>false</sourceMacAddress><vlanRange>false</vlanRange></capabilities><fcoeActive>false</fcoeActive></fcoeConfiguration><vmDirectPathGen2Supported>false</vmDirectPathGen2Supported><resourcePoolSchedulerAllowed>true</resourcePoolSchedulerAllowed><autoNegotiateSupported>false</autoNegotiateSupported><enhancedNetworkingStackSupported>true</enhancedNetworkingStackSupported><ensInterruptSupported>true</ensInterruptSupported></pnic><pnic><key>key-vim.host.PhysicalNic-vmnic3</key><device>vmnic3</device><pci>0000:04:00.0</pci><driver>nvmxnet3</driver><driverVersion>2.0.0.31</driverVersion><firmwareVersion>7</firmwareVersion><linkSpeed><speedMb>10000</speedMb><duplex>true</duplex></linkSpeed><validLinkSpecification><speedMb>10000</speedMb><duplex>true</duplex></validLinkSpecification><spec><ip><dhcp>false</dhcp><ipAddress></ipAddress><subnetMask></subnetMask></ip><linkSpeed><speedMb>10000</speedMb><duplex>true</duplex></linkSpeed><enableEnhancedNetworkingStack>false</enableEnhancedNetworkingStack><ensInterruptEnabled>false</ensInterruptEnabled></spec><wakeOnLanSupported>false</wakeOnLanSupported><mac>06:25:17:c9:e1:a8</mac><fcoeConfiguration><priorityClass>3</priorityClass><sourceMac>06:25:17:c9:e1:a8</sourceMac><vlanRange><vlanLow>0</vlanLow><vlanHigh>0</vlanHigh></vlanRange><capabilities><priorityClass>false</priorityClass><sourceMacAddress>false</sourceMacAddress><vlanRange>false</vlanRange></capabilities><fcoeActive>false</fcoeActive></fcoeConfiguration><vmDirectPathGen2Supported>false</vmDirectPathGen2Supported><resourcePoolSchedulerAllowed>true</resourcePoolSchedulerAllowed><autoNegotiateSupported>false</autoNegotiateSupported><enhancedNetworkingStackSupported>true</enhancedNetworkingStackSupported><ensInterruptSupported>true</ensInterruptSupported></pnic><vnic><device>vmk0</device><key>key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec><port>key-vim.host.PortGroup.Port-67108873</port></vnic><vnic><device>vmk1</device><key>key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec><port>key-vim.host.PortGroup.Port-67108874</port></vnic><dnsConfig><dhcp>true</dhcp><virtualNicDevice>vmk0</virtualNicDevice><hostName>sc1-10-218-43-170</hostName><domainName>nimbus.eng.vmware.com</domainName><address>10.166.1.1</address><address>10.166.1.2</address><address>10.142.7.2</address><searchDomain>nimbus.eng.vmware.com</searchDomain></dnsConfig><ipRouteConfig><defaultGateway>10.218.47.254</defaultGateway><ipV6DefaultGateway>fe80::50:56ff:fe56:4453</ipV6DefaultGateway><ipV6GatewayDevice>vmk0</ipV6GatewayDevice></ipRouteConfig><routeTableInfo><ipRoute><network>0.0.0.0</network><prefixLength>0</prefixLength><gateway>10.218.47.254</gateway><deviceName>vmk0</deviceName></ipRoute><ipRoute><network>10.218.32.0</network><prefixLength>20</prefixLength><gateway>0.0.0.0</gateway><deviceName>vmk0</deviceName></ipRoute><ipv6Route><network>::</network><prefixLength>0</prefixLength><gateway>fe80::50:56ff:fe56:4453</gateway><deviceName>vmk0</deviceName></ipv6Route><ipv6Route><network>fd01:0:106:301::</network><prefixLength>64</prefixLength><gateway>::</gateway><deviceName>vmk0</deviceName></ipv6Route><ipv6Route><network>fe80::</network><prefixLength>64</prefixLength><gateway>::</gateway><deviceName>vmk0</deviceName></ipv6Route><ipv6Route><network>fe80::</network><prefixLength>64</prefixLength><gateway>::</gateway><deviceName>vmk1</deviceName></ipv6Route><ipv6Route><network>ff01::</network><prefixLength>32</prefixLength><gateway>fe80::425:17ff:fe84:894f</gateway><deviceName>vmk0</deviceName></ipv6Route><ipv6Route><network>ff01::</network><prefixLength>32</prefixLength><gateway>fe80::250:56ff:fe6e:3594</gateway><deviceName>vmk1</deviceName></ipv6Route><ipv6Route><network>ff02::</network><prefixLength>32</prefixLength><gateway>fe80::425:17ff:fe84:894f</gateway><deviceName>vmk0</deviceName></ipv6Route><ipv6Route><network>ff02::</network><prefixLength>32</prefixLength><gateway>fe80::250:56ff:fe6e:3594</gateway><deviceName>vmk1</deviceName></ipv6Route></routeTableInfo><ipV6Enabled>true</ipV6Enabled><atBootIpV6Enabled>true</atBootIpV6Enabled><netStackInstance><key>ops</key><dnsConfig><dhcp>false</dhcp><hostName></hostName><domainName></domainName></dnsConfig><ipRouteConfig></ipRouteConfig><requestedMaxNumberOfConnections>11000</requestedMaxNumberOfConnections><congestionControlAlgorithm>newreno</congestionControlAlgorithm><ipV6Enabled>true</ipV6Enabled></netStackInstance><netStackInstance><key>mirror</key><dnsConfig><dhcp>false</dhcp><hostName></hostName><domainName></domainName></dnsConfig><ipRouteConfig></ipRouteConfig><requestedMaxNumberOfConnections>11000</requestedMaxNumberOfConnections><congestionControlAlgorithm>newreno</congestionControlAlgorithm><ipV6Enabled>true</ipV6Enabled></netStackInstance><netStackInstance><key>vSphereProvisioning</key><dnsConfig><dhcp>false</dhcp><hostName></hostName><domainName></domainName></dnsConfig><ipRouteConfig></ipRouteConfig><requestedMaxNumberOfConnections>11000</requestedMaxNumberOfConnections><congestionControlAlgorithm>newreno</congestionControlAlgorithm><ipV6Enabled>true</ipV6Enabled></netStackInstance><netStackInstance><key>vmotion</key><dnsConfig><dhcp>false</dhcp><hostName></hostName><domainName></domainName></dnsConfig><ipRouteConfig></ipRouteConfig><requestedMaxNumberOfConnections>11000</requestedMaxNumberOfConnections><congestionControlAlgorithm>newreno</congestionControlAlgorithm><ipV6Enabled>true</ipV6Enabled></netStackInstance><netStackInstance><key>defaultTcpipStack</key><name>defaultTcpipStack</name><dnsConfig><dhcp>true</dhcp><virtualNicDevice>vmk0</virtualNicDevice><hostName>sc1-10-218-43-170</hostName><domainName>nimbus.eng.vmware.com</domainName><address>10.166.1.1</address><address>10.166.1.2</address><address>10.142.7.2</address><searchDomain>nimbus.eng.vmware.com</searchDomain></dnsConfig><ipRouteConfig><defaultGateway>10.218.47.254</defaultGateway><ipV6DefaultGateway>fe80::50:56ff:fe56:4453</ipV6DefaultGateway><ipV6GatewayDevice>vmk0</ipV6GatewayDevice></ipRouteConfig><requestedMaxNumberOfConnections>11000</requestedMaxNumberOfConnections><congestionControlAlgorithm>newreno</congestionControlAlgorithm><ipV6Enabled>true</ipV6Enabled><routeTableConfig><ipRoute><changeOperation>ignore</changeOperation><route><network>0.0.0.0</network><prefixLength>0</prefixLength><gateway>10.218.47.254</gateway><deviceName>vmk0</deviceName></route></ipRoute><ipRoute><changeOperation>ignore</changeOperation><route><network>10.218.32.0</network><prefixLength>20</prefixLength><gateway>0.0.0.0</gateway><deviceName>vmk0</deviceName></route></ipRoute><ipv6Route><changeOperation>ignore</changeOperation><route><network>::</network><prefixLength>0</prefixLength><gateway>fe80::50:56ff:fe56:4453</gateway><deviceName>vmk0</deviceName></route></ipv6Route><ipv6Route><changeOperation>ignore</changeOperation><route><network>fd01:0:106:301::</network><prefixLength>64</prefixLength><gateway>::</gateway><deviceName>vmk0</deviceName></route></ipv6Route><ipv6Route><changeOperation>ignore</changeOperation><route><network>fe80::</network><prefixLength>64</prefixLength><gateway>::</gateway><deviceName>vmk0</deviceName></route></ipv6Route><ipv6Route><changeOperation>ignore</changeOperation><route><network>fe80::</network><prefixLength>64</prefixLength><gateway>::</gateway><deviceName>vmk1</deviceName></route></ipv6Route><ipv6Route><changeOperation>ignore</changeOperation><route><network>ff01::</network><prefixLength>32</prefixLength><gateway>fe80::425:17ff:fe84:894f</gateway><deviceName>vmk0</deviceName></route></ipv6Route><ipv6Route><changeOperation>ignore</changeOperation><route><network>ff01::</network><prefixLength>32</prefixLength><gateway>fe80::250:56ff:fe6e:3594</gateway><deviceName>vmk1</deviceName></route></ipv6Route><ipv6Route><changeOperation>ignore</changeOperation><route><network>ff02::</network><prefixLength>32</prefixLength><gateway>fe80::425:17ff:fe84:894f</gateway><deviceName>vmk0</deviceName></route></ipv6Route><ipv6Route><changeOperation>ignore</changeOperation><route><network>ff02::</network><prefixLength>32</prefixLength><gateway>fe80::250:56ff:fe6e:3594</gateway><deviceName>vmk1</deviceName></route></ipv6Route></routeTableConfig></netStackInstance><nsxTransportNodeId></nsxTransportNodeId><nvdsToVdsMigrationRequired>false</nvdsToVdsMigrationRequired></network><vmotion><netConfig><candidateVnic><device>vmk0</device><key>VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><selectedVnic>VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0</selectedVnic></netConfig><ipConfig><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ipConfig></vmotion><virtualNicManagerInfo><netConfig><nicType>faultToleranceLogging</nicType><multiSelectAllowed>true</multiSelectAllowed><candidateVnic><device>vmk0</device><key>faultToleranceLogging.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>faultToleranceLogging.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic></netConfig><netConfig><nicType>management</nicType><multiSelectAllowed>true</multiSelectAllowed><candidateVnic><device>vmk0</device><key>management.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>management.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><selectedVnic>management.key-vim.host.VirtualNic-vmk0</selectedVnic></netConfig><netConfig><nicType>nvmeRdma</nicType><multiSelectAllowed>true</multiSelectAllowed><candidateVnic><device>vmk0</device><key>nvmeRdma.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>nvmeRdma.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic></netConfig><netConfig><nicType>nvmeTcp</nicType><multiSelectAllowed>true</multiSelectAllowed><candidateVnic><device>vmk0</device><key>nvmeTcp.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>nvmeTcp.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic></netConfig><netConfig><nicType>ptp</nicType><multiSelectAllowed>false</multiSelectAllowed><candidateVnic><device>vmk0</device><key>ptp.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>ptp.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic></netConfig><netConfig><nicType>vSphereBackupNFC</nicType><multiSelectAllowed>true</multiSelectAllowed><candidateVnic><device>vmk0</device><key>vSphereBackupNFC.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>vSphereBackupNFC.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic></netConfig><netConfig><nicType>vSphereProvisioning</nicType><multiSelectAllowed>true</multiSelectAllowed><candidateVnic><device>vmk0</device><key>vSphereProvisioning.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>vSphereProvisioning.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic></netConfig><netConfig><nicType>vSphereReplication</nicType><multiSelectAllowed>true</multiSelectAllowed><candidateVnic><device>vmk0</device><key>vSphereReplication.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>vSphereReplication.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic></netConfig><netConfig><nicType>vSphereReplicationNFC</nicType><multiSelectAllowed>true</multiSelectAllowed><candidateVnic><device>vmk0</device><key>vSphereReplicationNFC.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>vSphereReplicationNFC.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic></netConfig><netConfig><nicType>vmotion</nicType><multiSelectAllowed>true</multiSelectAllowed><candidateVnic><device>vmk0</device><key>vmotion.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>vmotion.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><selectedVnic>vmotion.key-vim.host.VirtualNic-vmk0</selectedVnic></netConfig><netConfig><nicType>vsan</nicType><multiSelectAllowed>true</multiSelectAllowed><candidateVnic><device>vmk0</device><key>vsan.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>vsan.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><selectedVnic>vsan.key-vim.host.VirtualNic-vmk0</selectedVnic></netConfig><netConfig><nicType>vsanWitness</nicType><multiSelectAllowed>true</multiSelectAllowed><candidateVnic><device>vmk0</device><key>vsanWitness.key-vim.host.VirtualNic-vmk0</key><portgroup>Management
        Network</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.43.170</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><ipV6Address><ipAddress>fd01:0:106:301:425:17ff:fe84:894f</ipAddress><prefixLength>64</prefixLength><origin>linklayer</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>true</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>06:25:17:84:89:4f</mac><portgroup>Management
        Network</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic><candidateVnic><device>vmk1</device><key>vsanWitness.key-vim.host.VirtualNic-vmk1</key><portgroup>VMkernel</portgroup><spec><ip><dhcp>true</dhcp><ipAddress>10.218.41.153</ipAddress><subnetMask>255.255.240.0</subnetMask><ipV6Config><ipV6Address><ipAddress>fe80::250:56ff:fe6e:3594</ipAddress><prefixLength>64</prefixLength><origin>other</origin><dadState>preferred</dadState></ipV6Address><autoConfigurationEnabled>false</autoConfigurationEnabled><dhcpV6Enabled>false</dhcpV6Enabled></ipV6Config></ip><mac>00:50:56:6e:35:94</mac><portgroup>VMkernel</portgroup><mtu>1500</mtu><tsoEnabled>true</tsoEnabled><netStackInstanceKey>defaultTcpipStack</netStackInstanceKey><systemOwned>false</systemOwned></spec></candidateVnic></netConfig></virtualNicManagerInfo><capabilities><canSetPhysicalNicLinkSpeed>true</canSetPhysicalNicLinkSpeed><supportsNicTeaming>true</supportsNicTeaming><nicTeamingPolicy>loadbalance_ip</nicTeamingPolicy><nicTeamingPolicy>loadbalance_srcmac</nicTeamingPolicy><nicTeamingPolicy>loadbalance_srcid</nicTeamingPolicy><nicTeamingPolicy>failover_explicit</nicTeamingPolicy><supportsVlan>true</supportsVlan><usesServiceConsoleNic>false</usesServiceConsoleNic><supportsNetworkHints>true</supportsNetworkHints><vswitchConfigSupported>true</vswitchConfigSupported><vnicConfigSupported>true</vnicConfigSupported><ipRouteConfigSupported>true</ipRouteConfigSupported><dnsConfigSupported>true</dnsConfigSupported><dhcpOnVnicSupported>true</dhcpOnVnicSupported><ipV6Supported>true</ipV6Supported><backupNfcNiocSupported>true</backupNfcNiocSupported></capabilities><datastoreCapabilities><nfsMountCreationRequired>true</nfsMountCreationRequired><nfsMountCreationSupported>true</nfsMountCreationSupported><localDatastoreSupported>false</localDatastoreSupported><vmfsExtentExpansionSupported>true</vmfsExtentExpansionSupported></datastoreCapabilities><offloadCapabilities><csumOffload>true</csumOffload><tcpSegmentation>true</tcpSegmentation><zeroCopyXmit>true</zeroCopyXmit></offloadCapabilities><service><service><key>DCUI</key><label>Direct
        Console UI</label><required>false</required><uninstallable>false</uninstallable><running>true</running><policy>on</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>TSM</key><label>ESXi
        Shell</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>off</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>TSM-SSH</key><label>SSH</label><required>false</required><uninstallable>false</uninstallable><running>true</running><policy>on</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>apiForwarder</key><label>apiForwarder</label><required>false</required><uninstallable>false</uninstallable><running>true</running><policy>on</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>attestd</key><label>attestd</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>off</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>dpd</key><label>dpd</label><required>false</required><uninstallable>false</uninstallable><running>false</running><ruleset>dpd</ruleset><policy>off</policy><sourcePackage><sourcePackageName>vmware-dp</sourcePackageName><description>This
        package contains all of the functionality of VMware vSphere Data Protection.</description></sourcePackage></service><service><key>entropyd</key><label>entropyd</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>off</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>gpuManager</key><label>gpuManager</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>on</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>hbrsrv</key><label>hbrsrv</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>off</policy><sourcePackage><sourcePackageName>vmware-hbrsrv</sourcePackageName><description>This
        VIB contains all of the functionality of vSphere Replication.</description></sourcePackage></service><service><key>infravisor</key><label>infravisor</label><required>false</required><uninstallable>false</uninstallable><running>true</running><policy>on</policy><sourcePackage><sourcePackageName>infravisor</sourcePackageName><description>This
        VIB contains all of the base functionality of infravisor spherelet.</description></sourcePackage></service><service><key>kmxd</key><label>kmxd</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>off</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>lbtd</key><label>Load-Based
        Teaming Daemon</label><required>false</required><uninstallable>false</uninstallable><running>true</running><policy>on</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>lwsmd</key><label>Active
        Directory Service</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>off</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>ntpd</key><label>NTP
        Daemon</label><required>false</required><uninstallable>false</uninstallable><running>true</running><policy>off</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>nvmf-discoveryd</key><label>nvmf-discoveryd</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>off</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>pcscd</key><label>PC/SC
        Smart Card Daemon</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>off</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>ptpd</key><label>PTP
        Daemon</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>off</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>sfcbd-watchdog</key><label>CIM
        Server</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>on</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>slpd</key><label>slpd</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>off</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>snmpd</key><label>SNMP
        Server</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>on</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>vdtc</key><label>VDTC
        Service</label><required>false</required><uninstallable>false</uninstallable><running>true</running><policy>on</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>vltd</key><label>vltd</label><required>false</required><uninstallable>false</uninstallable><running>false</running><ruleset>vltd</ruleset><policy>off</policy><sourcePackage><sourcePackageName>vmware-dp-vlt</sourcePackageName><description>This
        VIB contains all of the functionality of VMware Datrium VLT.</description></sourcePackage></service><service><key>vmsyslogd</key><label>Syslog
        Server</label><required>true</required><uninstallable>false</uninstallable><running>true</running><policy>on</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>vpxa</key><label>VMware
        vCenter Agent</label><required>false</required><uninstallable>false</uninstallable><running>true</running><ruleset>vpxHeartbeats</ruleset><policy>on</policy><sourcePackage><sourcePackageName>esx-base</sourcePackageName><description>This
        VIB contains all of the base functionality of vSphere ESXi.</description></sourcePackage></service><service><key>xorg</key><label>X.Org
        Server</label><required>false</required><uninstallable>false</uninstallable><running>false</running><policy>on</policy><sourcePackage><sourcePackageName>esx-xserver</sourcePackageName><description>This
        VIB contains X Server used for virtual machine 3D hardware acceleration.</description></sourcePackage></service></service><firewall><defaultPolicy><incomingBlocked>true</incomingBlocked><outgoingBlocked>true</outgoingBlocked></defaultPolicy><ruleset><key>CIMHttpServer</key><label>CIM
        Server</label><required>false</required><rule><port>5988</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>CIMHttpsServer</key><label>CIM
        Secure Server</label><required>false</required><rule><port>5989</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>CIMSLP</key><label>CIM
        SLP</label><required>false</required><rule><port>427</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>427</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>427</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>427</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>DHCPv6</key><label>DHCPv6</label><required>false</required><rule><port>547</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>546</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>547</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>546</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>DVFilter</key><label>DVFilter</label><required>false</required><rule><port>2222</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>DVSSync</key><label>DVSSync</label><required>false</required><rule><port>8302</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>8301</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>8301</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>8302</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>HBR</key><label>HBR</label><required>false</required><rule><port>31031</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>44046</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>NFC</key><label>NFC</label><required>false</required><rule><port>902</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>902</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>WOL</key><label>WOL</label><required>false</required><rule><port>9</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>activeDirectoryAll</key><label>Active
        Directory All</label><required>false</required><rule><port>88</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>88</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>123</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>137</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>139</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>389</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>389</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>445</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>464</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>464</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>3268</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>7476</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>2020</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>cmmds</key><label>vSAN
        Clustering Service</label><required>false</required><rule><port>12345</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>23451</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>12345</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>23451</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>12321</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>12321</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>dhcp</key><label>DHCP
        Client</label><required>false</required><rule><port>68</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>68</port><direction>outbound</direction><portType>src</portType><protocol>udp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>dns</key><label>DNS
        Client</label><required>false</required><rule><port>53</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>53</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>dpd</key><label>dpd</label><required>false</required><rule><port>443</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><service>dpd</service><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>esxio-orchestrator</key><label>esxio-orchestrator</label><required>false</required><rule><port>8084</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>esxioComm</key><label>esxioComm</label><required>false</required><rule><port>9197</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>9197</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>5000</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>5000</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>2480</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>2480</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>8848</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>8848</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>8514</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>8514</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>162</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>162</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>8586</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>8586</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>esxupdate</key><label>esxupdate</label><required>false</required><rule><port>443</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>etcdClientComm</key><label>etcdClientComm</label><required>false</required><rule><port>2379</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>2379</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>etcdPeerComm</key><label>etcdPeerComm</label><required>false</required><rule><port>2380</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>2380</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>faultTolerance</key><label>Fault
        Tolerance</label><required>false</required><rule><port>80</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>8300</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>8300</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>ftpClient</key><label>FTP
        Client</label><required>false</required><rule><port>21</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>20</port><direction>inbound</direction><portType>src</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>gdbserver</key><label>gdbserver</label><required>false</required><rule><port>1000</port><endPort>9999</endPort><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>50000</port><endPort>50999</endPort><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>gstored</key><label>gstored</label><required>false</required><rule><port>443</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>httpClient</key><label>httpClient</label><required>false</required><rule><port>80</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>443</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>iSCSI</key><label>Software
        iSCSI Client</label><required>false</required><rule><port>3260</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>iofiltervp</key><label>iofiltervp</label><required>false</required><rule><port>9080</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>ipfam</key><label>NSX
        Distributed Logical Router Service</label><required>false</required><rule><port>6999</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>6999</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>iwarp-pm</key><label>iwarp-pm</label><required>false</required><rule><port>3935</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>3935</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>nfs41Client</key><label>nfs41Client</label><required>false</required><rule><port>0</port><endPort>65535</endPort><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>false</ipListUserConfigurable></ruleset><ruleset><key>nfsClient</key><label>NFS
        Client</label><required>false</required><rule><port>0</port><endPort>65535</endPort><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>false</ipListUserConfigurable></ruleset><ruleset><key>ntpClient</key><label>NTP
        Client</label><required>false</required><rule><port>123</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>nvmemdns</key><label>nvmemdns</label><required>false</required><rule><port>5353</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>5353</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>nvmetcp</key><label>nvmetcp</label><required>false</required><rule><port>8009</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>4420</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>proxy</key><label>proxy</label><required>false</required><rule><port>1443</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>false</ipListUserConfigurable></ruleset><ruleset><key>ptpd</key><label>PTP
        Client</label><required>false</required><rule><port>319</port><endPort>320</endPort><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>319</port><endPort>320</endPort><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>pvrdma</key><label>pvrdma</label><required>false</required><rule><port>28250</port><endPort>28761</endPort><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>28250</port><endPort>28761</endPort><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>rdt</key><label>vSAN
        Transport</label><required>false</required><rule><port>2233</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>2233</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>12443</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>12443</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>remoteSerialPort</key><label>VM
        serial port connected over network</label><required>false</required><rule><port>0</port><endPort>65535</endPort><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>23</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>1024</port><endPort>65535</endPort><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>settingsd</key><label>settingsd</label><required>false</required><rule><port>8083</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>8083</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>snmp</key><label>SNMP
        Server</label><required>false</required><rule><port>161</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>sshClient</key><label>SSH
        Client</label><required>false</required><rule><port>22</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>sshServer</key><label>SSH
        Server</label><required>true</required><rule><port>22</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>syslog</key><label>syslog</label><required>false</required><rule><port>514</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>514</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>1514</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>trusted-infrastructure-kmxa</key><label>trusted-infrastructure-kmxa</label><required>false</required><rule><port>0</port><endPort>65535</endPort><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>false</ipListUserConfigurable></ruleset><ruleset><key>trusted-infrastructure-kmxd</key><label>trusted-infrastructure-kmxd</label><required>false</required><rule><port>0</port><endPort>65535</endPort><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>false</ipListUserConfigurable></ruleset><ruleset><key>updateManager</key><label>vCenter
        Update Manager</label><required>false</required><rule><port>80</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>9000</port><endPort>9100</endPort><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>vMotion</key><label>vMotion</label><required>false</required><rule><port>8000</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>8000</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>vSPC</key><label>VM
        serial port connected to vSPC</label><required>false</required><rule><port>0</port><endPort>65535</endPort><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>vSphereClient</key><label>vSphere
        Web Client</label><required>true</required><rule><port>902</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>443</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>vdfs</key><label>vdfs</label><required>false</required><rule><port>1564</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>1564</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>vic-engine</key><label>vic-engine</label><required>false</required><rule><port>2377</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>vltd</key><label>vltd</label><required>false</required><rule><port>1492</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>443</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><service>vltd</service><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>vpxHeartbeats</key><label>VMware
        vCenter Agent</label><required>false</required><rule><port>902</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><service>vpxa</service><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>vsanEncryption</key><label>vsanEncryption</label><required>false</required><rule><port>0</port><endPort>65535</endPort><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>false</ipListUserConfigurable></ruleset><ruleset><key>vsanhealth-unicasttest</key><label>vsanhealth-unicasttest</label><required>false</required><rule><port>5201</port><direction>outbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>5201</port><direction>inbound</direction><portType>dst</portType><protocol>udp</protocol></rule><rule><port>5201</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><rule><port>5201</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>false</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>vsanmgmt-https-tunnel</key><label>vsanmgmt-https-tunnel</label><required>false</required><rule><port>443</port><direction>outbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>false</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset><ruleset><key>webAccess</key><label>vSphere
        Web Access</label><required>false</required><rule><port>80</port><direction>inbound</direction><portType>dst</portType><protocol>tcp</protocol></rule><enabled>true</enabled><allowedHosts><allIp>true</allIp></allowedHosts><userControllable>true</userControllable><ipListUserConfigurable>true</ipListUserConfigurable></ruleset></firewall><autoStart><defaults><startDelay>120</startDelay><stopDelay>120</stopDelay><waitForHeartbeat>false</waitForHeartbeat><stopAction>PowerOff</stopAction></defaults></autoStart><option><key>Annotations.WelcomeMessage</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>CBRC.DCacheMemReserved</key><value
        xsi:type=\"xsd:long\">400</value></option><option><key>CBRC.Enable</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>COW.COWMaxHeapSizeMB</key><value
        xsi:type=\"xsd:long\">192</value></option><option><key>COW.COWMaxREPageCacheszMB</key><value
        xsi:type=\"xsd:long\">256</value></option><option><key>COW.COWMinREPageCacheszMB</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>COW.COWREPageCacheEviction</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Config.Defaults.host.TAAworkaround</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>Config.Defaults.monitor.if_pschange_mc_workaround</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Config.Defaults.security.host.ruissl</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>Config.Defaults.vGPU.consolidation</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Config.Etc.issue</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Config.Etc.motd</key><value
        xsi:type=\"xsd:string\">The time and date of this login have been sent to
        the system logs.\n\nWARNING:\n   All commands run on the ESXi shell are logged
        and may be included in\n   support bundles. Do not provide passwords directly
        on the command line.\n   Most tools can prompt for secrets or accept them
        from standard input.\n\nVMware offers powerful and supported automation tools.
        Please\nsee https://developer.vmware.com for details.\n\nThe ESXi Shell can
        be disabled by an administrative user. See the\nvSphere Security documentation
        for more information.\n</value></option><option><key>Config.GlobalSettings.guest.commands.sharedPolicyRefCount</key><value
        xsi:type=\"xsd:int\">0</value></option><option><key>Config.HostAgent.distributedTracing</key><value
        xsi:type=\"xsd:string\">verbose</value></option><option><key>Config.HostAgent.level[Hbrsvc].logLevel</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Config.HostAgent.level[Hostsvc].logLevel</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Config.HostAgent.level[Proxysvc].logLevel</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Config.HostAgent.level[Snmpsvc].logLevel</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Config.HostAgent.level[Statssvc].logLevel</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Config.HostAgent.level[Vcsvc].logLevel</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Config.HostAgent.level[Vimsvc].logLevel</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Config.HostAgent.level[Vmsvc].logLevel</key><value
        xsi:type=\"xsd:string\">verbose</value></option><option><key>Config.HostAgent.log.level</key><value
        xsi:type=\"xsd:string\">verbose</value></option><option><key>Config.HostAgent.plugins.hostsvc.esxAdminsGroup</key><value
        xsi:type=\"xsd:string\">ESX Admins</value></option><option><key>Config.HostAgent.plugins.hostsvc.esxAdminsGroupAutoAdd</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>Config.HostAgent.plugins.hostsvc.esxAdminsGroupUpdateInterval</key><value
        xsi:type=\"xsd:int\">1</value></option><option><key>Config.HostAgent.plugins.solo.disableRemoteEsxcli</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Config.HostAgent.plugins.solo.enableMob</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>Config.HostAgent.plugins.solo.webServer.enableWebscriptLauncher</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>Config.HostAgent.plugins.vimsvc.authValidateInterval</key><value
        xsi:type=\"xsd:int\">1440</value></option><option><key>Config.HostAgent.plugins.vimsvc.disableHostProfileApi</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Config.HostAgent.plugins.vimsvc.enableUtf8Filter</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Config.HostAgent.plugins.vimsvc.httpNfcLeaseTimeout</key><value
        xsi:type=\"xsd:int\">300</value></option><option><key>Config.HostAgent.plugins.vimsvc.userSearch.maxResults</key><value
        xsi:type=\"xsd:int\">100</value></option><option><key>Config.HostAgent.plugins.vimsvc.userSearch.maxTimeSeconds</key><value
        xsi:type=\"xsd:int\">20</value></option><option><key>Config.HostAgent.plugins.vmsvc.blockDiskRemoveIfSnapshot</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Config.HostAgent.plugins.vmsvc.enforceMaxRegisteredVms</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>Config.HostAgent.plugins.vmsvc.filterExtraConfigHotEdit</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Config.HostAgent.plugins.vmsvc.guestWatchdogTimeout</key><value
        xsi:type=\"xsd:long\">900</value></option><option><key>Config.HostAgent.plugins.vmsvc.productLockerWatchInterval</key><value
        xsi:type=\"xsd:int\">300</value></option><option><key>Config.HostAgent.plugins.vmsvc.vsanVmRefreshRetryInterval</key><value
        xsi:type=\"xsd:long\">1800</value></option><option><key>Config.HostAgent.ssl.keyStore.allowAny</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Config.HostAgent.ssl.keyStore.allowSelfSigned</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Config.HostAgent.ssl.keyStore.discardLeaf</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>Config.HostAgent.ssl.minPrivateKeyLength</key><value
        xsi:type=\"xsd:string\">RSA-2048</value></option><option><key>Config.HostAgent.ticketing.thumbprintTypes</key><value
        xsi:type=\"xsd:string\">sha1</value></option><option><key>Config.HostAgent.vmacore.soap.maxSessionCount</key><value
        xsi:type=\"xsd:int\">500</value></option><option><key>Config.HostAgent.vmacore.soap.sessionTimeout</key><value
        xsi:type=\"xsd:int\">30</value></option><option><key>Cpu.AllowWideVsmp</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Cpu.BoundLagQuanta</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>Cpu.CommRateThreshold</key><value
        xsi:type=\"xsd:long\">500</value></option><option><key>Cpu.CoschedCostartThreshold</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Cpu.CoschedCostopThreshold</key><value
        xsi:type=\"xsd:long\">3000</value></option><option><key>Cpu.CoschedCrossCall</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Cpu.CoschedHandoffLLC</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Cpu.CoschedHandoffSkip</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Cpu.CoschedPollUsec</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Cpu.CreditAgePeriod</key><value
        xsi:type=\"xsd:long\">3000</value></option><option><key>Cpu.FairnessRebalancePcpus</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>Cpu.HTRebalancePeriod</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>Cpu.HTStolenAgeThreshold</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>Cpu.HTWholeCoreThreshold</key><value
        xsi:type=\"xsd:long\">800</value></option><option><key>Cpu.HostRebalancePeriod</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Cpu.L2RebalancePeriod</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Cpu.L3RebalancePeriod</key><value
        xsi:type=\"xsd:long\">20</value></option><option><key>Cpu.LimitEnforcementThreshold</key><value
        xsi:type=\"xsd:long\">200</value></option><option><key>Cpu.MaxSampleRateLg</key><value
        xsi:type=\"xsd:long\">7</value></option><option><key>Cpu.NonTimerWakeupRate</key><value
        xsi:type=\"xsd:long\">500</value></option><option><key>Cpu.PackageRebalancePeriod</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Cpu.PcpuMigrateIdlePcpus</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>Cpu.Quantum</key><value
        xsi:type=\"xsd:long\">200</value></option><option><key>Cpu.UseMwait</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Cpu.VMAdmitCheckPerVcpuMin</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Cpu.WakeupMigrateIdlePcpus</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>DCUI.Access</key><value
        xsi:type=\"xsd:string\">root</value></option><option><key>DataMover.HardwareAcceleratedInit</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>DataMover.HardwareAcceleratedMove</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>DataMover.MaxHeapSize</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>Digest.AlgoType</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Digest.BlockSize</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Digest.CollisionEnabled</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>DirentryCache.MaxDentryPerObj</key><value
        xsi:type=\"xsd:long\">15000</value></option><option><key>Disk.AllowUsbClaimedAsSSD</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Disk.ApdTokenRetryCount</key><value
        xsi:type=\"xsd:long\">25</value></option><option><key>Disk.AutoremoveOnPDL</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.BandwidthCap</key><value
        xsi:type=\"xsd:long\">4294967294</value></option><option><key>Disk.DelayOnBusy</key><value
        xsi:type=\"xsd:long\">400</value></option><option><key>Disk.DeviceEnableIOLatencyMsgs</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Disk.DeviceReclaimTime</key><value
        xsi:type=\"xsd:long\">300</value></option><option><key>Disk.Disable4knSSD</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.DiskDelayPDLHelper</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Disk.DiskMaxIOSize</key><value
        xsi:type=\"xsd:long\">32767</value></option><option><key>Disk.DiskReservationThreshold</key><value
        xsi:type=\"xsd:long\">45</value></option><option><key>Disk.DiskRetryPeriod</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Disk.DumpMaxRetries</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Disk.DumpPollDelay</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Disk.DumpPollMaxRetries</key><value
        xsi:type=\"xsd:long\">10000</value></option><option><key>Disk.EnableNaviReg</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.FailDiskRegistration</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.FastPathRestoreInterval</key><value
        xsi:type=\"xsd:long\">100</value></option><option><key>Disk.IdleCredit</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>Disk.MaxLUN</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>Disk.MaxNumIOIntervals</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>Disk.MaxResetLatency</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Disk.NmpMaxCmdExtension</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Disk.PVSCSIEnablePreemption</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.PathEvalTime</key><value
        xsi:type=\"xsd:long\">300</value></option><option><key>Disk.PreventVMFSOverwrite</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.QFullSampleSize</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>Disk.QFullThreshold</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>Disk.ReqCallThreshold</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>Disk.ResetLatency</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Disk.ResetMaxRetries</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Disk.ResetOverdueLogPeriod</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>Disk.ResetPeriod</key><value
        xsi:type=\"xsd:long\">30</value></option><option><key>Disk.ResetThreadExpires</key><value
        xsi:type=\"xsd:long\">1800</value></option><option><key>Disk.ResetThreadMax</key><value
        xsi:type=\"xsd:long\">16</value></option><option><key>Disk.ResetThreadMin</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.RetryUnitAttention</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.ReturnCCForNoSpace</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Disk.SchedCostUnit</key><value
        xsi:type=\"xsd:long\">32768</value></option><option><key>Disk.SchedQCleanupInterval</key><value
        xsi:type=\"xsd:long\">300</value></option><option><key>Disk.SchedQControlSeqReqs</key><value
        xsi:type=\"xsd:long\">128</value></option><option><key>Disk.SchedQControlVMSwitches</key><value
        xsi:type=\"xsd:long\">6</value></option><option><key>Disk.SchedQPriorityPercentage</key><value
        xsi:type=\"xsd:long\">80</value></option><option><key>Disk.SchedQuantum</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>Disk.SchedReservationBurst</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.SchedulerWithReservation</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.SectorMaxDiff</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Disk.SharesHigh</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Disk.SharesLow</key><value
        xsi:type=\"xsd:long\">500</value></option><option><key>Disk.SharesNormal</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Disk.SkipResetNoCIF</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.SllThrottleTime</key><value
        xsi:type=\"xsd:long\">800</value></option><option><key>Disk.SupportSparseLUN</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.ThroughputCap</key><value
        xsi:type=\"xsd:long\">4294967294</value></option><option><key>Disk.UseDeviceReset</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.UseIoPool</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Disk.UseLunReset</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.UseReportLUN</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.VSCSICoalesceCount</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Disk.VSCSIDisableNvmeRetry</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.VSCSIHaltPollInterval</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>Disk.VSCSIPollPeriod</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Disk.VSCSIResvCmdRetryInSecs</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Disk.VSCSIWriteSameBurstSize</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>FSS.FSSLightWeightProbe</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>FT.BindToVmknic</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>FT.FTCptConcurrentSend</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>FT.FTCptDelayCheckpoint</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>FT.FTCptDiffCap</key><value
        xsi:type=\"xsd:long\">100</value></option><option><key>FT.FTCptDiffThreads</key><value
        xsi:type=\"xsd:long\">6</value></option><option><key>FT.FTCptDisableFailover</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>FT.FTCptDiskWriteTimeout</key><value
        xsi:type=\"xsd:long\">3000</value></option><option><key>FT.FTCptDontDelayPkts</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>FT.FTCptDontSendPages</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>FT.FTCptEpochList</key><value
        xsi:type=\"xsd:string\">5,10,20,100</value></option><option><key>FT.FTCptEpochSample</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>FT.FTCptEpochWait</key><value
        xsi:type=\"xsd:long\">8000</value></option><option><key>FT.FTCptIORetryExtraInterval</key><value
        xsi:type=\"xsd:long\">200</value></option><option><key>FT.FTCptIORetryInterval</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>FT.FTCptIORetryTimes</key><value
        xsi:type=\"xsd:long\">15</value></option><option><key>FT.FTCptLogTimeout</key><value
        xsi:type=\"xsd:long\">8000</value></option><option><key>FT.FTCptMaxPktsDelay</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>FT.FTCptMinInterval</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>FT.FTCptNetDelayNoCpt</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>FT.FTCptNumConnections</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>FT.FTCptNumaIndex</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>FT.FTCptPagePolicy</key><value
        xsi:type=\"xsd:long\">65538</value></option><option><key>FT.FTCptPoweroff</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>FT.FTCptRcvBufSize</key><value
        xsi:type=\"xsd:long\">562140</value></option><option><key>FT.FTCptSndBufSize</key><value
        xsi:type=\"xsd:long\">562140</value></option><option><key>FT.FTCptStartTimeout</key><value
        xsi:type=\"xsd:long\">90000</value></option><option><key>FT.FTCptStatsInterval</key><value
        xsi:type=\"xsd:long\">30</value></option><option><key>FT.FTCptThreadPolicy</key><value
        xsi:type=\"xsd:long\">65536</value></option><option><key>FT.FTCptVcpuMinUsage</key><value
        xsi:type=\"xsd:long\">40</value></option><option><key>FT.FTCptWaitOnSocket</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>FT.Vmknic</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>HBR.ChecksumIoSize</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>HBR.ChecksumMaxIo</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>HBR.ChecksumPerSlice</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>HBR.ChecksumRegionSize</key><value
        xsi:type=\"xsd:long\">256</value></option><option><key>HBR.ChecksumUseAllocInfo</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>HBR.ChecksumUseChecksumInfo</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>HBR.ChecksumZoneSize</key><value
        xsi:type=\"xsd:long\">32768</value></option><option><key>HBR.CopySnapDiskMaxExtentCount</key><value
        xsi:type=\"xsd:long\">16</value></option><option><key>HBR.CopySnapFidHashBuckets</key><value
        xsi:type=\"xsd:long\">256</value></option><option><key>HBR.DemandlogCompletedHashBuckets</key><value
        xsi:type=\"xsd:long\">16384</value></option><option><key>HBR.DemandlogExtentHashBuckets</key><value
        xsi:type=\"xsd:long\">16384</value></option><option><key>HBR.DemandlogIoTimeoutSecs</key><value
        xsi:type=\"xsd:long\">120</value></option><option><key>HBR.DemandlogReadRetries</key><value
        xsi:type=\"xsd:long\">20</value></option><option><key>HBR.DemandlogRetryDelayMs</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>HBR.DemandlogTransferIoSize</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>HBR.DemandlogTransferMaxCompletion</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>HBR.DemandlogTransferMaxIo</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>HBR.DemandlogTransferMaxNetwork</key><value
        xsi:type=\"xsd:long\">256</value></option><option><key>HBR.DemandlogTransferPerSlice</key><value
        xsi:type=\"xsd:long\">16</value></option><option><key>HBR.DemandlogWriteRetries</key><value
        xsi:type=\"xsd:long\">20</value></option><option><key>HBR.DisconnectedEventDelayMs</key><value
        xsi:type=\"xsd:long\">60000</value></option><option><key>HBR.ErrThrottleChecksumIO</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>HBR.ErrThrottleDceRead</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>HBR.HbrBitmapAllocTimeoutMS</key><value
        xsi:type=\"xsd:long\">3000</value></option><option><key>HBR.HbrBitmapVMMaxStorageGB</key><value
        xsi:type=\"xsd:long\">65536</value></option><option><key>HBR.HbrDemandLogIOPerVM</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>HBR.HbrLowerExtentBreakGB</key><value
        xsi:type=\"xsd:long\">8192</value></option><option><key>HBR.HbrLowerExtentSizeKB</key><value
        xsi:type=\"xsd:long\">16</value></option><option><key>HBR.HbrMaxExtentSizeKB</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>HBR.HbrMaxGuestXferWhileDeltaMB</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>HBR.HbrMaxUnmapExtents</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>HBR.HbrMaxUnmapsInFlight</key><value
        xsi:type=\"xsd:long\">128</value></option><option><key>HBR.HbrMaxUpdateSizeKB</key><value
        xsi:type=\"xsd:long\">128</value></option><option><key>HBR.HbrMinExtentBreakGB</key><value
        xsi:type=\"xsd:long\">2048</value></option><option><key>HBR.HbrMinExtentSizeKB</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>HBR.HbrOptimizeFullSync</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>HBR.HbrResourceHeapPerVMSizeKB</key><value
        xsi:type=\"xsd:long\">128</value></option><option><key>HBR.HbrResourceHeapSizeMB</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>HBR.HbrResourceHeapUtilization</key><value
        xsi:type=\"xsd:long\">95</value></option><option><key>HBR.HbrResourceMaxCompletionContexts</key><value
        xsi:type=\"xsd:long\">8192</value></option><option><key>HBR.HbrResourceMaxDiskContexts</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>HBR.HbrRuntimeHeapMaxBaseMB</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>HBR.HbrRuntimeHeapMinBaseMB</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>HBR.HbrStaticHeapMaxBaseMB</key><value
        xsi:type=\"xsd:long\">726</value></option><option><key>HBR.HbrStaticHeapMinBaseMB</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>HBR.HbrThrottleGenericErrResetTime</key><value
        xsi:type=\"xsd:long\">16384</value></option><option><key>HBR.HbrUpperExtentBreakGB</key><value
        xsi:type=\"xsd:long\">32768</value></option><option><key>HBR.HbrUpperExtentSizeKB</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>HBR.HelperQueueMaxRequests</key><value
        xsi:type=\"xsd:long\">8192</value></option><option><key>HBR.HelperQueueMaxWorlds</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>HBR.LocalReadIoTimeoutSecs</key><value
        xsi:type=\"xsd:long\">120</value></option><option><key>HBR.MigrateFlushTimerSecs</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>HBR.NetworkUseCubic</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>HBR.NetworkerRecvHashBuckets</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>HBR.OpportunisticBlockListSize</key><value
        xsi:type=\"xsd:long\">4000</value></option><option><key>HBR.ProgressReportIntervalMs</key><value
        xsi:type=\"xsd:long\">5000</value></option><option><key>HBR.PsfIoTimeoutSecs</key><value
        xsi:type=\"xsd:long\">300</value></option><option><key>HBR.ReconnectFailureDelaySecs</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>HBR.ReconnectMaxDelaySecs</key><value
        xsi:type=\"xsd:long\">90</value></option><option><key>HBR.ResourceServerHashBuckets</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>HBR.RetryMaxDelaySecs</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>HBR.RetryMinDelaySecs</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>HBR.SyncTransferRetrySleepSecs</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>HBR.TransferDiskMaxCompletion</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>HBR.TransferDiskMaxIo</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>HBR.TransferDiskMaxNetwork</key><value
        xsi:type=\"xsd:long\">2048</value></option><option><key>HBR.TransferDiskPerSlice</key><value
        xsi:type=\"xsd:long\">16</value></option><option><key>HBR.TransferFileExtentSize</key><value
        xsi:type=\"xsd:long\">8192</value></option><option><key>HBR.TransferMaxContExtents</key><value
        xsi:type=\"xsd:long\">16</value></option><option><key>HBR.UnmapOptimization</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>HBR.WireChecksum</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>HBR.XferBitmapCheckIntervalSecs</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Hpp.HppPReservationCmdRetryTime</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>ISCSI.CloseIscsiConnOnTaskMgmtFailure</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>ISCSI.MaxIoSizeKB</key><value
        xsi:type=\"xsd:long\">128</value></option><option><key>ISCSI.SocketRcvBufLenKB</key><value
        xsi:type=\"xsd:long\">256</value></option><option><key>ISCSI.SocketSndBufLenKB</key><value
        xsi:type=\"xsd:long\">600</value></option><option><key>Irq.BestVcpuRouting</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Irq.IRQActionAffinityWeight</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>Irq.IRQAvoidExclusive</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Irq.IRQBHConflictWeight</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>Irq.IRQRebalancePeriod</key><value
        xsi:type=\"xsd:long\">50</value></option><option><key>Irq.IRQVcpuConflictWeight</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>LPage.LPageAlwaysTryForNPT</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>LPage.LPageDefragEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>LPage.LPageMarkLowNodes</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>LPage.MaxSharedPages</key><value
        xsi:type=\"xsd:long\">510</value></option><option><key>LPage.MaxSwappedPagesInitVal</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>LPage.freePagesThresholdForRemote</key><value
        xsi:type=\"xsd:long\">2048</value></option><option><key>LSOM.blkAttrCacheSizePercent</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>LSOM.enableLargeWb</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>LSOM.lsomDeviceNeedsRepairCount</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>LSOM.lsomEnableFullRebuildAvoidance</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>LSOM.lsomEnableRebuildOnLSE</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>LSOM.lsomPlogEnableDeadmanTimer</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>LSOM.lsomRebuildOnEvacFailure</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>LoadESX.generateLiveDump</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Mem.AllocGuestLargePage</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Mem.CtlMaxPercent</key><value
        xsi:type=\"xsd:long\">65</value></option><option><key>Mem.IdleTax</key><value
        xsi:type=\"xsd:long\">75</value></option><option><key>Mem.IdleTaxType</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Mem.MemCBTBitmapMaxAlloc</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>Mem.MemDefragClientsPerDir</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Mem.MemEagerZero</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Mem.MemMaxResvThreshold</key><value
        xsi:type=\"xsd:long\">16384</value></option><option><key>Mem.MemMinFreePct</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Mem.MemZipEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Mem.MemZipMaxAllocPct</key><value
        xsi:type=\"xsd:long\">50</value></option><option><key>Mem.MemZipMaxPct</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Mem.ReallocPolicy</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Mem.SampleActivePctMin</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Mem.SampleDirtiedPctMin</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Mem.ShareCOSBufSize</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>Mem.ShareForceSalting</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Mem.ShareRateMax</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>Mem.ShareScanGHz</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>Mem.ShareScanTime</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>Mem.VMOverheadGrowthLimit</key><value
        xsi:type=\"xsd:long\">4294967295</value></option><option><key>Migrate.BindToVmknic</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>Migrate.CptCacheMaxSizeMB</key><value
        xsi:type=\"xsd:long\">544</value></option><option><key>Migrate.DebugChecksumMismatch</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Migrate.DetectZeroPages</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Migrate.Enabled</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Migrate.GetPageSysAlertThresholdMS</key><value
        xsi:type=\"xsd:long\">10000</value></option><option><key>Migrate.LowBandwidthSysAlertThreshold</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Migrate.LowMemWaitSysAlertThresholdMS</key><value
        xsi:type=\"xsd:long\">10000</value></option><option><key>Migrate.MigrateBitmapEncodingType</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Migrate.MigrateCpuMinPctDefault</key><value
        xsi:type=\"xsd:long\">30</value></option><option><key>Migrate.MigrateCpuPctPerGb</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Migrate.MigrateCpuSharesHighPriority</key><value
        xsi:type=\"xsd:long\">60000</value></option><option><key>Migrate.MigrateCpuSharesRegular</key><value
        xsi:type=\"xsd:long\">30000</value></option><option><key>Migrate.MigrateStreamHelperBwUtilMax</key><value
        xsi:type=\"xsd:long\">15000</value></option><option><key>Migrate.MonActionWaitSysAlertThresholdMS</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Migrate.NetExpectedLineRateMBps</key><value
        xsi:type=\"xsd:long\">133</value></option><option><key>Migrate.NetLatencyModeThreshold</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>Migrate.NetTimeout</key><value
        xsi:type=\"xsd:long\">20</value></option><option><key>Migrate.NfcNetTimeout</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>Migrate.OutstandingReadKBMax</key><value
        xsi:type=\"xsd:long\">128</value></option><option><key>Migrate.PanicOnChecksumMismatch</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Migrate.PreCopyCountDelay</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Migrate.PreCopyMinProgressPerc</key><value
        xsi:type=\"xsd:long\">130</value></option><option><key>Migrate.PreCopyPagesPerSend</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>Migrate.PreCopySwitchoverTimeGoal</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Migrate.PreallocLPages</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Migrate.ProhibitInstantClone</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Migrate.RcvBufSize</key><value
        xsi:type=\"xsd:long\">562540</value></option><option><key>Migrate.SdpsDynamicDelaySec</key><value
        xsi:type=\"xsd:long\">30</value></option><option><key>Migrate.SdpsEnabled</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Migrate.SdpsTargetRate</key><value
        xsi:type=\"xsd:long\">500</value></option><option><key>Migrate.SndBufSize</key><value
        xsi:type=\"xsd:long\">562540</value></option><option><key>Migrate.TcpTsoDeferTx</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Migrate.TryToUseDefaultHeap</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Migrate.VASpaceReserveCount</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>Migrate.VASpaceReserveSize</key><value
        xsi:type=\"xsd:long\">4096</value></option><option><key>Migrate.VMotionLatencySensitivity</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Migrate.VMotionMaxStreamHelpers</key><value
        xsi:type=\"xsd:long\">112</value></option><option><key>Migrate.VMotionResolveSwapType</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Migrate.VMotionStreamHelpers</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Migrate.Vmknic</key><value
        xsi:type=\"xsd:string\">vmk0</value></option><option><key>Misc.APDHandlingEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Misc.APDTimeout</key><value
        xsi:type=\"xsd:long\">140</value></option><option><key>Misc.BHTimeout</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.BlueScreenTimeout</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.ConsolePort</key><value
        xsi:type=\"xsd:string\">none</value></option><option><key>Misc.DebugLogToSerial</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.DebugShellPort</key><value
        xsi:type=\"xsd:string\">none</value></option><option><key>Misc.DefaultHardwareVersion</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Misc.DegradedPathEvalTime</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>Misc.DegradedPathReEvalInterval</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>Misc.GDBPort</key><value
        xsi:type=\"xsd:string\">none</value></option><option><key>Misc.GuestLibAllowHostInfo</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.HeapMgrGuardPages</key><value
        xsi:type=\"xsd:long\">512</value></option><option><key>Misc.HeapPanicDestroyNonEmpty</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Misc.HeartbeatInterval</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Misc.HeartbeatPanicIpiCount</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Misc.HeartbeatPanicTimeout</key><value
        xsi:type=\"xsd:long\">900</value></option><option><key>Misc.HeartbeatTimeout</key><value
        xsi:type=\"xsd:long\">90</value></option><option><key>Misc.HordeEnabled</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.HostName</key><value
        xsi:type=\"xsd:string\">sc1-10-218-43-170.nimbus.eng.vmware.com</value></option><option><key>Misc.HppDegradedPathThresholdPer</key><value
        xsi:type=\"xsd:long\">20</value></option><option><key>Misc.HppManageDegradedPaths</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Misc.HwclockPeriodicSync</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Misc.HyperClockAllowSystemTimeAux</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.IoFilterWatchdogTimeout</key><value
        xsi:type=\"xsd:long\">120</value></option><option><key>Misc.LogDumpShutdownTimeout</key><value
        xsi:type=\"xsd:long\">180</value></option><option><key>Misc.LogPort</key><value
        xsi:type=\"xsd:string\">com1</value></option><option><key>Misc.LogTimestampUptime</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.LogToSerial</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Misc.LogWldPrefix</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Misc.MCEMonitorInterval</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Misc.MaximumHardwareVersion</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Misc.MinimalPanic</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.NMILint1IntAction</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.NmpDegradedPathThresholdPer</key><value
        xsi:type=\"xsd:long\">20</value></option><option><key>Misc.NmpManageDegradedPaths</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Misc.PSPDeactivateFlakyPath</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.PanicLogToSerial</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.PowerButton</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Misc.PowerOffEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Misc.PreferredHostName</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Misc.RebootMethod</key><value
        xsi:type=\"xsd:string\">any</value></option><option><key>Misc.SIOControlFlag1</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.SIOControlFlag2</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.SIOControlLoglevel</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.SIOControlOptions</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Misc.ScreenSaverDelay</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.SevAllowDebugging</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.ShaperStatsEnabled</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Misc.ShellPort</key><value
        xsi:type=\"xsd:string\">none</value></option><option><key>Misc.TestNativeFCPaeCapable</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.TimerTolerance</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Misc.forceBPB</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.forceMPTI</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Misc.vmknvmeCwYield</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Misc.vmmDisableL1DFlush</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.vsanWitnessVirtualAppliance</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Misc.DsNsMgrTimeout</key><value
        xsi:type=\"xsd:long\">1200000</value></option><option><key>Misc.HostAgentUpdateLevel</key><value
        xsi:type=\"xsd:string\">3</value></option><option><key>Misc.MetadataUpdateTimeoutMsec</key><value
        xsi:type=\"xsd:long\">30000</value></option><option><key>NFS.ApdStartCount</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>NFS.DiskFileLockUpdateFreq</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>NFS.HeartbeatDelta</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>NFS.HeartbeatFrequency</key><value
        xsi:type=\"xsd:long\">12</value></option><option><key>NFS.HeartbeatMaxFailures</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>NFS.HeartbeatTimeout</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>NFS.LockBreakTimeout</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>NFS.LockRenewMaxFailureNumber</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>NFS.LockSWMRTimeout</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>NFS.LockSharedTimeout</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>NFS.LockUpdateTimeout</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>NFS.LogNfsStat3</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>NFS.MaxQueueDepth</key><value
        xsi:type=\"xsd:long\">4294967295</value></option><option><key>NFS.MaxVolumes</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>NFS.MountTimeout</key><value
        xsi:type=\"xsd:long\">30</value></option><option><key>NFS.NFSMaxOutstandingIOs</key><value
        xsi:type=\"xsd:long\">65536</value></option><option><key>NFS.ReceiveBufferSize</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>NFS.SendBufferSize</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>NFS.SyncRetries</key><value
        xsi:type=\"xsd:long\">25</value></option><option><key>NFS.VolumeRemountFrequency</key><value
        xsi:type=\"xsd:long\">30</value></option><option><key>NFS41.EOSDelay</key><value
        xsi:type=\"xsd:long\">30</value></option><option><key>NFS41.IOTaskRetry</key><value
        xsi:type=\"xsd:long\">25</value></option><option><key>NFS41.MaxQueueDepth</key><value
        xsi:type=\"xsd:long\">4294967295</value></option><option><key>NFS41.MaxRead</key><value
        xsi:type=\"xsd:long\">4294967295</value></option><option><key>NFS41.MaxVolumes</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>NFS41.MaxWrite</key><value
        xsi:type=\"xsd:long\">4294967295</value></option><option><key>NFS41.MountTimeout</key><value
        xsi:type=\"xsd:long\">30</value></option><option><key>NFS41.RecvBufSize</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>NFS41.SendBufSize</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>Net.AdvertisementDuration</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>Net.AllowPT</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.BMCNetworkEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.BlockGuestBPDU</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.CoalesceDefaultOn</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.CoalesceFavorNoVmmVmkTx</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.CoalesceFineTimeoutCPU</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Net.CoalesceFineTxTimeout</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Net.CoalesceFlexMrq</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.CoalesceLowRxRate</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>Net.CoalesceLowTxRate</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>Net.CoalesceMatchedQs</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.CoalesceMrqLt</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.CoalesceMrqMetricAllowTxOnly</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.CoalesceMrqMetricRxOnly</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.CoalesceMrqOverallStop</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.CoalesceMrqRatioMetric</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.CoalesceMrqTriggerReCalib</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.CoalesceMultiRxQCalib</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.CoalesceNoVmmVmkTx</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.CoalesceParams</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Net.CoalesceRBCRate</key><value
        xsi:type=\"xsd:long\">4000</value></option><option><key>Net.CoalesceRxLtStopCalib</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.CoalesceRxQDepthCap</key><value
        xsi:type=\"xsd:long\">40</value></option><option><key>Net.CoalesceScheme</key><value
        xsi:type=\"xsd:string\">rbc</value></option><option><key>Net.CoalesceTimeoutType</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Net.CoalesceTxAlwaysPoll</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.CoalesceTxQDepthCap</key><value
        xsi:type=\"xsd:long\">40</value></option><option><key>Net.CoalesceTxTimeout</key><value
        xsi:type=\"xsd:long\">4000</value></option><option><key>Net.DCBEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.DVFilterBindIpAddress</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Net.DVFilterPriorityRdLockEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.DVSLargeHeapMBPerGB</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Net.DVSLargeHeapMaxSize</key><value
        xsi:type=\"xsd:long\">300</value></option><option><key>Net.DontOffloadInnerIPv6</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.E1000IntrCoalesce</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.E1000TxCopySize</key><value
        xsi:type=\"xsd:long\">2048</value></option><option><key>Net.E1000TxZeroCopy</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.EnableDMASgCons</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.EnableOuterCsum</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.EnsMbufpoolMaxMBPerGB</key><value
        xsi:type=\"xsd:long\">200</value></option><option><key>Net.EnsMbufpoolMinMBPerGB</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Net.EtherswitchAllowFastPath</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.EtherswitchHashSize</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.EtherswitchHeapMax</key><value
        xsi:type=\"xsd:long\">512</value></option><option><key>Net.EtherswitchNumPerPCPUDispatchData</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>Net.FollowHardwareMac</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.GuestIPHack</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.GuestTxCopyBreak</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>Net.IGMPQueries</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Net.IGMPQueryInterval</key><value
        xsi:type=\"xsd:long\">125</value></option><option><key>Net.IGMPRouterIP</key><value
        xsi:type=\"xsd:string\">0.0.0.0</value></option><option><key>Net.IGMPV3MaxSrcIPNum</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Net.IGMPVersion</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>Net.LACPActorSystemPriority</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.LACPEnableIndividualPort</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.LRODefBackoffPeriod</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>Net.LRODefMaxLength</key><value
        xsi:type=\"xsd:long\">65535</value></option><option><key>Net.LRODefThreshold</key><value
        xsi:type=\"xsd:long\">4000</value></option><option><key>Net.LRODefUseRatioDenom</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>Net.LRODefUseRatioNumer</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.LinkFlappingThreshold</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>Net.LinkStatePollTimeout</key><value
        xsi:type=\"xsd:long\">500</value></option><option><key>Net.MLDRouterIP</key><value
        xsi:type=\"xsd:string\">FE80::FFFF:FFFF:FFFF:FFFF</value></option><option><key>Net.MLDV2MaxSrcIPNum</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Net.MLDVersion</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Net.MaxBeaconVlans</key><value
        xsi:type=\"xsd:long\">100</value></option><option><key>Net.MaxBeaconsAtOnce</key><value
        xsi:type=\"xsd:long\">100</value></option><option><key>Net.MaxGlobalRxQueueCount</key><value
        xsi:type=\"xsd:long\">100000</value></option><option><key>Net.MaxNetifTxQueueLen</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Net.MaxPageInQueueLen</key><value
        xsi:type=\"xsd:long\">75</value></option><option><key>Net.MaxPktRxListQueue</key><value
        xsi:type=\"xsd:long\">3500</value></option><option><key>Net.MaxPortRxQueueLen</key><value
        xsi:type=\"xsd:long\">80</value></option><option><key>Net.MinEtherLen</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>Net.NcpLlcSap</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.NetBHRxStormThreshold</key><value
        xsi:type=\"xsd:long\">320</value></option><option><key>Net.NetDebugRARPTimerInter</key><value
        xsi:type=\"xsd:long\">30000</value></option><option><key>Net.NetDeferTxCompletion</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetDeferTxCompletionNonPerQ</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetDiscUpdateIntrvl</key><value
        xsi:type=\"xsd:long\">300</value></option><option><key>Net.NetEnableSwCsumForLro</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetEsxfwPassOutboundGRE</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetInStressTest</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.NetLatencyAwareness</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetMaxRarpsPerInterval</key><value
        xsi:type=\"xsd:long\">128</value></option><option><key>Net.NetNetqNumaIOCpuPinThreshold</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.NetNetqRxRebalRSSLoadThresholdPerc</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Net.NetNetqTxPackKpps</key><value
        xsi:type=\"xsd:long\">300</value></option><option><key>Net.NetNetqTxUnpackKpps</key><value
        xsi:type=\"xsd:long\">600</value></option><option><key>Net.NetNiocAllowOverCommit</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetPTMgrWakeupInterval</key><value
        xsi:type=\"xsd:long\">6</value></option><option><key>Net.NetPktAllocTries</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>Net.NetPktSlabFreePercentThreshold</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Net.NetPortFlushIterLimit</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Net.NetPortFlushPktLimit</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>Net.NetPortTrackTxRace</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.NetRCFAllowBPF</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetRCFInsnType</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.NetRmDistMacFilter</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetRmDistSamplingRate</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.NetRxCopyInTx</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.NetSchedCoalesceTxUsecs</key><value
        xsi:type=\"xsd:long\">33</value></option><option><key>Net.NetSchedDefaultResPoolSharesPct</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>Net.NetSchedDefaultSchedName</key><value
        xsi:type=\"xsd:string\">fifo</value></option><option><key>Net.NetSchedECNEnabled</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetSchedECNThreshold</key><value
        xsi:type=\"xsd:long\">70</value></option><option><key>Net.NetSchedHClkLeafQueueDepthPkt</key><value
        xsi:type=\"xsd:long\">640</value></option><option><key>Net.NetSchedHClkMQ</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Net.NetSchedHClkMaxHwQueue</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Net.NetSchedHClkVnicMQ</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetSchedHeapMaxSizeMB</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>Net.NetSchedInFlightMaxBytesDefault</key><value
        xsi:type=\"xsd:long\">200000</value></option><option><key>Net.NetSchedInFlightMaxBytesInsane</key><value
        xsi:type=\"xsd:long\">1500000</value></option><option><key>Net.NetSchedMaxPktSend</key><value
        xsi:type=\"xsd:long\">256</value></option><option><key>Net.NetSchedQoSSchedName</key><value
        xsi:type=\"xsd:string\">hclk</value></option><option><key>Net.NetSchedSpareBasedShares</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetSendRARPOnPortEnablement</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetShaperQueuePerL3L4Flow</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetShaperQueueSizeMax</key><value
        xsi:type=\"xsd:long\">500</value></option><option><key>Net.NetShaperQueueSizeMin</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Net.NetSplitRxMode</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetTraceEnable</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.NetTuneHostMode</key><value
        xsi:type=\"xsd:string\">dense</value></option><option><key>Net.NetTuneInterval</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>Net.NetTuneThreshold</key><value
        xsi:type=\"xsd:string\">1n 2n 50</value></option><option><key>Net.NetTxDontClusterSize</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.NetTxStaticRelation</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NetVMTxType</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Net.NetpollSwLRO</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.NoLocalCSum</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.NotifySwitch</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.PTSwitchingTimeout</key><value
        xsi:type=\"xsd:long\">20000</value></option><option><key>Net.PVRDMAVmknic</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Net.PktAgingListQuantumSize</key><value
        xsi:type=\"xsd:long\">20</value></option><option><key>Net.PktagingDropPolicy</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.PortDisableTimeout</key><value
        xsi:type=\"xsd:long\">5000</value></option><option><key>Net.PortsetLockModel</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.ProvisioningVmknics</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Net.ReversePathFwdCheck</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.ReversePathFwdCheckPromisc</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.SendIGMPReportToUplink</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.TcpipCopySmallTx</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.TcpipDefLROEnabled</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.TcpipDefLROMaxLength</key><value
        xsi:type=\"xsd:long\">32768</value></option><option><key>Net.TcpipDgramRateLimiting</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.TcpipEnableABC</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.TcpipEnableFlowtable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.TcpipEnableSendScaling</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.TcpipEnsMultipleRxContexts</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.TcpipEnsNetQRSS</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.TcpipHWLRONoDelayAck</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.TcpipHeapMax</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>Net.TcpipHeapSize</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>Net.TcpipIGMPDefaultVersion</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>Net.TcpipIGMPRejoinInterval</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>Net.TcpipLODispatchQueueMaxLen</key><value
        xsi:type=\"xsd:long\">128</value></option><option><key>Net.TcpipLRONoDelayAck</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.TcpipLogPackets</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.TcpipLogPacketsCount</key><value
        xsi:type=\"xsd:long\">24570</value></option><option><key>Net.TcpipMaxNetstackInstances</key><value
        xsi:type=\"xsd:long\">48</value></option><option><key>Net.TcpipNoBcopyRx</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.TcpipPendPktSocketFreeTimeout</key><value
        xsi:type=\"xsd:long\">300</value></option><option><key>Net.TcpipRxDispatchQueueMaxLen</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Net.TcpipRxDispatchQueues</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Net.TcpipRxDispatchQuota</key><value
        xsi:type=\"xsd:long\">200</value></option><option><key>Net.TcpipTxDispatchQuota</key><value
        xsi:type=\"xsd:long\">100</value></option><option><key>Net.TcpipTxqBackoffTimeoutMs</key><value
        xsi:type=\"xsd:long\">70</value></option><option><key>Net.TcpipTxqMaxUsageThreshold</key><value
        xsi:type=\"xsd:long\">80</value></option><option><key>Net.TeamPolicyUpDelay</key><value
        xsi:type=\"xsd:long\">100</value></option><option><key>Net.TeamingNUMAAware</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.TrafficFilterIpAddress</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Net.TsoDumpPkt</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.UplinkAbortDisconnectTimeout</key><value
        xsi:type=\"xsd:long\">5000</value></option><option><key>Net.UplinkKillAsyncTimeout</key><value
        xsi:type=\"xsd:long\">10000</value></option><option><key>Net.UplinkTSOSplit</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.UplinkTxQueuesDispEnabled</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.UseHwCsumForIPv6Csum</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.UseHwIPv6Csum</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.UseHwTSO</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.UseHwTSO6</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.UseLegacyProc</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.UseProc</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.VLANMTUCheckMode</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.VmklnxLROEnabled</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.VmklnxLROMaxAggr</key><value
        xsi:type=\"xsd:long\">6</value></option><option><key>Net.VmknicDoLroSplit</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.VmknicLroSplitBnd</key><value
        xsi:type=\"xsd:long\">12</value></option><option><key>Net.Vmxnet2HwLRO</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.Vmxnet2PinRxBuf</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.Vmxnet2SwLRO</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.Vmxnet3AllowTruncation</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.Vmxnet3CopyTrailer</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.Vmxnet3ESPRSSAllowed</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.Vmxnet3EnsRxMultipleContexts</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.Vmxnet3HwLRO</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.Vmxnet3MaxPendingRxBurst</key><value
        xsi:type=\"xsd:long\">128</value></option><option><key>Net.Vmxnet3MaxRxBurstQueueLength</key><value
        xsi:type=\"xsd:long\">16384</value></option><option><key>Net.Vmxnet3NonTsoPacketGtMtuAllowed</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.Vmxnet3PageInBound</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>Net.Vmxnet3RSSHashCache</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.Vmxnet3RxBurstQueueEnableThreshold</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>Net.Vmxnet3RxBurstQueueLimit</key><value
        xsi:type=\"xsd:long\">512</value></option><option><key>Net.Vmxnet3RxPollBound</key><value
        xsi:type=\"xsd:long\">256</value></option><option><key>Net.Vmxnet3SetRSSHash</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.Vmxnet3SwLRO</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.Vmxnet3UDPRSSAllowed</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.Vmxnet3WinIntrHints</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.Vmxnet3usePNICHash</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.VmxnetBiDirNeedsTsoTx</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.VmxnetBiDirNoTsoSplit</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.VmxnetCopyTxRunLimit</key><value
        xsi:type=\"xsd:long\">16</value></option><option><key>Net.VmxnetDoLroSplit</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.VmxnetDoTsoSplit</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.VmxnetLROBackoffPeriod</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>Net.VmxnetLROMaxLength</key><value
        xsi:type=\"xsd:long\">32000</value></option><option><key>Net.VmxnetLROThreshold</key><value
        xsi:type=\"xsd:long\">4000</value></option><option><key>Net.VmxnetLROUseRatioDenom</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>Net.VmxnetLROUseRatioNumer</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Net.VmxnetLroSplitBnd</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>Net.VmxnetPromDisableLro</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.VmxnetSwLROSL</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.VmxnetTsoSplitBnd</key><value
        xsi:type=\"xsd:long\">12</value></option><option><key>Net.VmxnetTsoSplitSize</key><value
        xsi:type=\"xsd:long\">17500</value></option><option><key>Net.VmxnetTxCopySize</key><value
        xsi:type=\"xsd:long\">256</value></option><option><key>Net.VmxnetWinCopyTxRunLimit</key><value
        xsi:type=\"xsd:long\">65535</value></option><option><key>Net.VmxnetWinUDPTxFullCopy</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Net.vNicNumDeferredReset</key><value
        xsi:type=\"xsd:long\">12</value></option><option><key>Net.vNicTxPollBound</key><value
        xsi:type=\"xsd:long\">192</value></option><option><key>Net.vmxnetThroughputWeight</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Net.IOControlPnicOptOut</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Nmp.NmpPReservationCmdRetryTime</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Nmp.NmpSatpAluaCmdRetryTime</key><value
        xsi:type=\"xsd:long\">20</value></option><option><key>Nmp.NmpSatpAluaTransRetryTime</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Numa.CoreCapRatioPct</key><value
        xsi:type=\"xsd:long\">90</value></option><option><key>Numa.CostopSkewAdjust</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Numa.FollowCoresPerSocket</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Numa.LTermFairnessInterval</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>Numa.LTermMigImbalThreshold</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Numa.LargeInterleave</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Numa.LatencyProbePeriod</key><value
        xsi:type=\"xsd:long\">500</value></option><option><key>Numa.LocalityWeightActionAffinity</key><value
        xsi:type=\"xsd:long\">130</value></option><option><key>Numa.LocalityWeightMem</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Numa.MigImbalanceThreshold</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>Numa.MigPreventLTermThresh</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Numa.MigThrashThreshold</key><value
        xsi:type=\"xsd:long\">50</value></option><option><key>Numa.MigThreshold</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Numa.MonMigEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Numa.PageMigEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Numa.PageMigLinearRun</key><value
        xsi:type=\"xsd:long\">95</value></option><option><key>Numa.PageMigRandomRun</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>Numa.PageMigRateMax</key><value
        xsi:type=\"xsd:long\">8000</value></option><option><key>Numa.PreferHT</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Numa.RebalanceCoresNode</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>Numa.RebalanceCoresTotal</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>Numa.RebalanceEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Numa.RebalancePeriod</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Numa.SwapConsiderPeriod</key><value
        xsi:type=\"xsd:long\">15</value></option><option><key>Numa.SwapInterval</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>Numa.SwapLoadEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Numa.SwapLocalityEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Numa.SwapMigrateOnly</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>OSData.configuredLocation</key><value
        xsi:type=\"xsd:string\">/vmfs/volumes/6578236b-36208281-d646-062517c9e1a8</value></option><option><key>Power.CStateMaxLatency</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Power.CStatePredictionCoef</key><value
        xsi:type=\"xsd:long\">110479</value></option><option><key>Power.CStateResidencyCoef</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>Power.CpuPolicy</key><value
        xsi:type=\"xsd:string\">Balanced</value></option><option><key>Power.MaxCpuLoad</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>Power.MaxFreqPct</key><value
        xsi:type=\"xsd:long\">100</value></option><option><key>Power.MinFreqPct</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Power.PerfBias</key><value
        xsi:type=\"xsd:long\">17</value></option><option><key>Power.PerfBiasEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Power.TimerHz</key><value
        xsi:type=\"xsd:long\">100</value></option><option><key>Power.UseCStates</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Power.UsePStates</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>RdmFilter.HbaIsShared</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>ScratchConfig.ConfiguredScratchLocation</key><value
        xsi:type=\"xsd:string\">/vmfs/volumes/6578236b-36208281-d646-062517c9e1a8</value></option><option><key>ScratchConfig.CurrentScratchLocation</key><value
        xsi:type=\"xsd:string\">/vmfs/volumes/6578236b-36208281-d646-062517c9e1a8</value></option><option><key>Scsi.ChangeQErrSetting</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.CompareLUNNumber</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.EnableCmdSanityCheck</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Scsi.ExtendAPDCondition</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Scsi.FailVMIOonAPD</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Scsi.LogCmdErrors</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.LogCmdRCErrorsFreq</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>Scsi.LogMPCmdErrors</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.LogScsiAborts</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.LunCleanupInterval</key><value
        xsi:type=\"xsd:long\">7</value></option><option><key>Scsi.MaxReserveBacktrace</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Scsi.MaxReserveTime</key><value
        xsi:type=\"xsd:long\">200</value></option><option><key>Scsi.MaxReserveTotalTime</key><value
        xsi:type=\"xsd:long\">250</value></option><option><key>Scsi.NvmeAdjustLocalNSQDepth</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.NvmeLogVerbose</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Scsi.NvmeMaxUnmapBlockDescriptorCount</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Scsi.NvmeMaxUnmapLbaCount</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Scsi.PassthroughLocking</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.PcpusPerCompletionWorld</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>Scsi.ReserveBacktrace</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Scsi.SCSIBlockUnsupportedOpcodesAndPages</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.SCSIEnableDescToFixedConv</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.SCSIEnableDeviceLatencyHistogram</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.SCSIStrictSPCVersionChecksForPEs</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Scsi.SCSITimeout_ReabortTime</key><value
        xsi:type=\"xsd:long\">5000</value></option><option><key>Scsi.SCSITimeout_ScanTime</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>Scsi.SCSIioTraceBufSizeMB</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.ScanOnDriverLoad</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.ScanSync</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>Scsi.ScsiAllowDeviceSpinup</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.ScsiPathSplitUseSimpleCloneBuffer</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.ScsiRestartStalledQueueLatency</key><value
        xsi:type=\"xsd:long\">500</value></option><option><key>Scsi.ScsiTMHardTimeout</key><value
        xsi:type=\"xsd:long\">120000</value></option><option><key>Scsi.ScsiUseVPDXCopyInfo</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.ScsiVVolPESNRO</key><value
        xsi:type=\"xsd:long\">256</value></option><option><key>Scsi.TimeoutTMThreadExpires</key><value
        xsi:type=\"xsd:long\">1800</value></option><option><key>Scsi.TimeoutTMThreadLatency</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Scsi.TimeoutTMThreadMax</key><value
        xsi:type=\"xsd:long\">16</value></option><option><key>Scsi.TimeoutTMThreadMin</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Scsi.TimeoutTMThreadRetry</key><value
        xsi:type=\"xsd:long\">2000</value></option><option><key>Scsi.TransFailLogPct</key><value
        xsi:type=\"xsd:long\">20</value></option><option><key>Scsi.UseAdaptiveRetries</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Security.AccountLockFailures</key><value
        xsi:type=\"xsd:int\">0</value></option><option><key>Security.AccountUnlockTime</key><value
        xsi:type=\"xsd:int\">900</value></option><option><key>Security.DefaultShellAccess</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>Security.PasswordHistory</key><value
        xsi:type=\"xsd:int\">5</value></option><option><key>Security.PasswordMaxDays</key><value
        xsi:type=\"xsd:int\">99999</value></option><option><key>Security.PasswordQualityControl</key><value
        xsi:type=\"xsd:string\">retry=3 min=disabled,disabled,disabled,7,7</value></option><option><key>Security.SshSessionLimit</key><value
        xsi:type=\"xsd:int\">50</value></option><option><key>SunRPC.MaxConnPerIP</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>SunRPC.SendLowat</key><value
        xsi:type=\"xsd:long\">25</value></option><option><key>SunRPC.SetNoDelayedAck</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>SunRPC.WorldAffinity</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>SvMotion.SvMotionAvgDisksPerVM</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>Syslog.global.auditRecord.remoteEnable</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Syslog.global.auditRecord.storageCapacity</key><value
        xsi:type=\"xsd:int\">4</value></option><option><key>Syslog.global.auditRecord.storageDirectory</key><value
        xsi:type=\"xsd:string\">[] /scratch/auditLog</value></option><option><key>Syslog.global.auditRecord.storageEnable</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Syslog.global.certificate.checkCRL</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Syslog.global.certificate.checkSSLCerts</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>Syslog.global.certificate.strictX509Compliance</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Syslog.global.defaultRotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.global.defaultSize</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.global.droppedMsgs.fileRotate</key><value
        xsi:type=\"xsd:int\">10</value></option><option><key>Syslog.global.droppedMsgs.fileSize</key><value
        xsi:type=\"xsd:int\">100</value></option><option><key>Syslog.global.logCheckSSLCerts</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>Syslog.global.logDir</key><value
        xsi:type=\"xsd:string\">[] /scratch/log</value></option><option><key>Syslog.global.logDirUnique</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Syslog.global.logFilters</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Syslog.global.logFiltersEnable</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Syslog.global.logHost</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>Syslog.global.logLevel</key><value
        xsi:type=\"xsd:string\">error</value></option><option><key>Syslog.global.msgQueueDropMark</key><value
        xsi:type=\"xsd:int\">90</value></option><option><key>Syslog.global.remoteHost.connectRetryDelay</key><value
        xsi:type=\"xsd:int\">180</value></option><option><key>Syslog.global.remoteHost.maxMsgLen</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.global.vsanBacking</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>Syslog.loggers.LogEFI.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.LogEFI.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.Xorg.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.Xorg.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.apiForwarder.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.apiForwarder.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.attestd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.attestd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.auth.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.auth.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.catalog.rotate</key><value
        xsi:type=\"xsd:int\">16</value></option><option><key>Syslog.loggers.catalog.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.clomd-whatif.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.clomd-whatif.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.clomd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.clomd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.clusterAgent.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.clusterAgent.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.cmmdsTimeMachine.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.cmmdsTimeMachine.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.cmmdsTimeMachineDump.rotate</key><value
        xsi:type=\"xsd:int\">20</value></option><option><key>Syslog.loggers.cmmdsTimeMachineDump.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.cmmdsd.rotate</key><value
        xsi:type=\"xsd:int\">10</value></option><option><key>Syslog.loggers.cmmdsd.size</key><value
        xsi:type=\"xsd:int\">5120</value></option><option><key>Syslog.loggers.crx-cli.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.crx-cli.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.dhclient.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.dhclient.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.dpd.rotate</key><value
        xsi:type=\"xsd:int\">16</value></option><option><key>Syslog.loggers.dpd.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.entropyd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.entropyd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.envoy-access.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.envoy-access.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.envoy.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.envoy.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.epd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.epd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.esxcli.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.esxcli.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.esxgdpd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.esxgdpd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.esxioCommd.rotate</key><value
        xsi:type=\"xsd:int\">10</value></option><option><key>Syslog.loggers.esxioCommd.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.esxtokend.rotate</key><value
        xsi:type=\"xsd:int\">12</value></option><option><key>Syslog.loggers.esxtokend.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.esxupdate.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.esxupdate.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.etcd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.etcd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.fdm.rotate</key><value
        xsi:type=\"xsd:int\">10</value></option><option><key>Syslog.loggers.fdm.size</key><value
        xsi:type=\"xsd:int\">5120</value></option><option><key>Syslog.loggers.gstored.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.gstored.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.hbrsrv.rotate</key><value
        xsi:type=\"xsd:int\">16</value></option><option><key>Syslog.loggers.hbrsrv.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.healthd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.healthd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.healthdPlugins.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.healthdPlugins.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.hostd-probe.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.hostd-probe.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.hostd.rotate</key><value
        xsi:type=\"xsd:int\">10</value></option><option><key>Syslog.loggers.hostd.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.hostdCgiServer.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.hostdCgiServer.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.hostprofiletrace.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.hostprofiletrace.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.infravisor.rotate</key><value
        xsi:type=\"xsd:int\">10</value></option><option><key>Syslog.loggers.infravisor.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.iofiltervpd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.iofiltervpd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.ioinsight.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.ioinsight.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.keypersist.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.keypersist.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.kmxa.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.kmxa.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.kmxd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.kmxd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.lacp.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.lacp.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.lifecycle.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.lifecycle.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.loadESX.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.loadESX.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.localcli.rotate</key><value
        xsi:type=\"xsd:int\">4</value></option><option><key>Syslog.loggers.localcli.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.metald.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.metald.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.nfcd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.nfcd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.osfsd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.osfsd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.rhttpproxy.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.rhttpproxy.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.sandboxd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.sandboxd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.sdrsInjector.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.sdrsInjector.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.sensord.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.sensord.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.settingsd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.settingsd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.shell.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.shell.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.sockrelay.rotate</key><value
        xsi:type=\"xsd:int\">16</value></option><option><key>Syslog.loggers.sockrelay.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.spherelet.rotate</key><value
        xsi:type=\"xsd:int\">10</value></option><option><key>Syslog.loggers.spherelet.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.storageRM.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.storageRM.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.swapobjd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.swapobjd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.syslog.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.syslog.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.trx.rotate</key><value
        xsi:type=\"xsd:int\">10</value></option><option><key>Syslog.loggers.trx.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.usb.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.usb.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vdfs-proxy.rotate</key><value
        xsi:type=\"xsd:int\">16</value></option><option><key>Syslog.loggers.vdfs-proxy.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.vdfs-server.rotate</key><value
        xsi:type=\"xsd:int\">16</value></option><option><key>Syslog.loggers.vdfs-server.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.vds-vsipioctl.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vds-vsipioctl.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vdtc.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vdtc.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vitd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vitd.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.vltd.rotate</key><value
        xsi:type=\"xsd:int\">10</value></option><option><key>Syslog.loggers.vltd.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.vmauthd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vmauthd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vmkdevmgr.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vmkdevmgr.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vmkernel.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vmkernel.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.vmkeventd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vmkeventd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vmksummary.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vmksummary.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vmkwarning.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vmkwarning.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vobd.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vobd.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vprobe.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vprobe.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vpxa.rotate</key><value
        xsi:type=\"xsd:int\">10</value></option><option><key>Syslog.loggers.vpxa.size</key><value
        xsi:type=\"xsd:int\">5120</value></option><option><key>Syslog.loggers.vsanEsxcli.rotate</key><value
        xsi:type=\"xsd:int\">3</value></option><option><key>Syslog.loggers.vsanEsxcli.size</key><value
        xsi:type=\"xsd:int\">5120</value></option><option><key>Syslog.loggers.vsananalyticsevents.rotate</key><value
        xsi:type=\"xsd:int\">10</value></option><option><key>Syslog.loggers.vsananalyticsevents.size</key><value
        xsi:type=\"xsd:int\">5120</value></option><option><key>Syslog.loggers.vsandevicemonitord.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vsandevicemonitord.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vsanesxcmd.rotate</key><value
        xsi:type=\"xsd:int\">5</value></option><option><key>Syslog.loggers.vsanesxcmd.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.vsanfs.configdump.rotate</key><value
        xsi:type=\"xsd:int\">16</value></option><option><key>Syslog.loggers.vsanfs.configdump.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.vsanfs.mgmt.rotate</key><value
        xsi:type=\"xsd:int\">32</value></option><option><key>Syslog.loggers.vsanfs.mgmt.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.vsanfs.vdfsop.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vsanfs.vdfsop.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.vsanmgmt.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vsanmgmt.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.vsansystem.rotate</key><value
        xsi:type=\"xsd:int\">10</value></option><option><key>Syslog.loggers.vsansystem.size</key><value
        xsi:type=\"xsd:int\">10240</value></option><option><key>Syslog.loggers.vsantraceUrgent.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vsantraceUrgent.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vsantraced.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.vsantraced.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>Syslog.loggers.vvold.rotate</key><value
        xsi:type=\"xsd:int\">16</value></option><option><key>Syslog.loggers.vvold.size</key><value
        xsi:type=\"xsd:int\">8192</value></option><option><key>Syslog.loggers.watchdog.rotate</key><value
        xsi:type=\"xsd:int\">8</value></option><option><key>Syslog.loggers.watchdog.size</key><value
        xsi:type=\"xsd:int\">1024</value></option><option><key>USB.arbitratorAutoStartDisabled</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>USB.devsShared</key><value
        xsi:type=\"xsd:string\">0x04b3:0</value></option><option><key>USB.quirks</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>UserVars.ActiveDirectoryPreferredDomainControllers</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>UserVars.ActiveDirectoryVerifyCAMCertificate</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>UserVars.DcuiTimeOut</key><value
        xsi:type=\"xsd:long\">600</value></option><option><key>UserVars.ESXiShellInteractiveTimeOut</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>UserVars.ESXiShellTimeOut</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>UserVars.ESXiVPsAllowedCiphers</key><value
        xsi:type=\"xsd:string\">ECDHE+AESGCM:ECDHE+AES</value></option><option><key>UserVars.ESXiVPsDisabledProtocols</key><value
        xsi:type=\"xsd:string\">sslv3,tlsv1,tlsv1.1</value></option><option><key>UserVars.EsximageNetRateLimit</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>UserVars.EsximageNetRetries</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>UserVars.EsximageNetTimeout</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>UserVars.HardwareHealthIgnoredSensors</key><value
        xsi:type=\"xsd:string\"></value></option><option><key>UserVars.HardwareHealthSyncTime</key><value
        xsi:type=\"xsd:long\">360</value></option><option><key>UserVars.HostClientCEIPOptIn</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>UserVars.HostClientDefaultConsole</key><value
        xsi:type=\"xsd:string\">webmks</value></option><option><key>UserVars.HostClientEnableMOTDNotification</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>UserVars.HostClientEnableVisualEffects</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>UserVars.HostClientSessionTimeout</key><value
        xsi:type=\"xsd:long\">900</value></option><option><key>UserVars.HostClientShowOnlyRecentObjects</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>UserVars.HostClientWelcomeMessage</key><value
        xsi:type=\"xsd:string\">Welcome to {{hostname}}</value></option><option><key>UserVars.HostdStatsstoreRamdiskSize</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>UserVars.ProductLockerLocation</key><value
        xsi:type=\"xsd:string\">/locker/packages/vmtoolsRepo/</value></option><option><key>UserVars.SuppressCoredumpWarning</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>UserVars.SuppressHyperthreadWarning</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>UserVars.SuppressSgxAddPackageWarning</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>UserVars.SuppressSgxDisabledWarning</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>UserVars.SuppressShellWarning</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>UserVars.ToolsRamdisk</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VFLASH.CacheStatsEnable</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VFLASH.CacheStatsFromVFC</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VFLASH.MaxCacheFileSizeMB</key><value
        xsi:type=\"xsd:long\">409600</value></option><option><key>VFLASH.MaxDiskFileSizeGB</key><value
        xsi:type=\"xsd:long\">16384</value></option><option><key>VFLASH.MaxHeapSizeMB</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>VFLASH.MaxResourceGBForVmCache</key><value
        xsi:type=\"xsd:int\">2048</value></option><option><key>VFLASH.ResourceUsageThreshold</key><value
        xsi:type=\"xsd:int\">80</value></option><option><key>VMFS.UnresolvedVolumeLiveCheck</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMFS3.EnableBlockDelete</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMFS3.FailVolumeOpenIfAPD</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMFS3.GBLAllowMW</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VMFS3.HardwareAcceleratedLocking</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VMFS3.LFBCSlabSizeMaxMB</key><value
        xsi:type=\"xsd:long\">8</value></option><option><key>VMFS3.MaxAddressableSpaceTB</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>VMFS3.MaxHeapSizeMB</key><value
        xsi:type=\"xsd:long\">768</value></option><option><key>VMFS3.MaxextendedTxnsUsingfs3Heap</key><value
        xsi:type=\"xsd:long\">20</value></option><option><key>VMFS3.MinAddressableSpaceTB</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMFS3.OpenWithoutJournal</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VMFS3.PBCapMissRatioIntervalSec</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>VMFS3.StAtExclLockEnd</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMFS3.UseATSForHBOnVMFS5</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VMkernel.Boot.allowCoreDumpOnUsb</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.atsSupport</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.autoCreateDumpFile</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.autoPartition</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.autoPartitionCreateUSBCoreDumpPartition</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.autoPartitionDiskDumpPartitionSize</key><value
        xsi:type=\"xsd:long\">2560</value></option><option><key>VMkernel.Boot.bootDeviceRescanTimeout</key><value
        xsi:type=\"xsd:int\">1</value></option><option><key>VMkernel.Boot.busSpeedMayVary</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.cacheFlushImmOnAllHalt</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.checkCPUIDLimit</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.checkPages</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.com1_baud</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.com2_baud</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.debugBreak</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.debugLogToSerial</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>VMkernel.Boot.deviceBindParallel</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.disableACSCheck</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.disableCFOH</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.disableHwrng</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.diskDumpSlotSize</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.dmaEngineExposeIdentityMapping</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.dmaMapperPolicy</key><value
        xsi:type=\"xsd:string\">debug</value></option><option><key>VMkernel.Boot.dumpSize</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.enableACSCheckForRP</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.entropySources</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.execInstalledOnly</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.fakePMemPct</key><value
        xsi:type=\"xsd:int\">0</value></option><option><key>VMkernel.Boot.forceHyperthreadingMitigation</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.fsCheck</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.gdbPort</key><value
        xsi:type=\"xsd:string\">default</value></option><option><key>VMkernel.Boot.heapCheckTimerInterval</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>VMkernel.Boot.heapFreePoisonByte</key><value
        xsi:type=\"xsd:int\">255</value></option><option><key>VMkernel.Boot.heapMetaPoisonByte</key><value
        xsi:type=\"xsd:int\">90</value></option><option><key>VMkernel.Boot.heapMetadataProtect</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.heapPoisonFreeMem</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.heapPoisonTimerChecks</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.hyperthreading</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.hyperthreadingMitigation</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.hyperthreadingMitigationIntraVM</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.ignoreMsrFaults</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.inputPassthru</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.intrBalancingEnabled</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.ioAbilityChecks</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.iovDisableIR</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.iovEnablePostedIntr</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.ipmiEnabled</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.isPerFileSchedModelActive</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.kbddev</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.leaveWakeGPEsDisabled</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.logEFILevel</key><value
        xsi:type=\"xsd:int\">1</value></option><option><key>VMkernel.Boot.logPort</key><value
        xsi:type=\"xsd:string\">default</value></option><option><key>VMkernel.Boot.maxLogEntries</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.maxPCPUS</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>VMkernel.Boot.maxPCPUsNUMAInterleaving</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.maxVMs</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.memCheckEveryWord</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.memLowReservedMB</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.memmapMaxEarlyPoisonMemMB</key><value
        xsi:type=\"xsd:long\">65536</value></option><option><key>VMkernel.Boot.memmapMaxPhysicalMemMB</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.memmapMaxRAMMB</key><value
        xsi:type=\"xsd:long\">33585088</value></option><option><key>VMkernel.Boot.microcodeUpdate</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.microcodeUpdateForce</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.netCoalesceTimerHdlrPcpu</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.netGPHeapMaxMBPerGB</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>VMkernel.Boot.netMaxPktsToProcess</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>VMkernel.Boot.netMaxPktsToRelease</key><value
        xsi:type=\"xsd:long\">128</value></option><option><key>VMkernel.Boot.netNetqueueEnabled</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.netNetqueueEnblSwlroWithPnicHwlro</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.netNetqueueMaxFiltersPerUplink</key><value
        xsi:type=\"xsd:long\">4096</value></option><option><key>VMkernel.Boot.netNetqueueMaxLearnedFilters</key><value
        xsi:type=\"xsd:long\">9216</value></option><option><key>VMkernel.Boot.netNetqueueMaxStaticFilters</key><value
        xsi:type=\"xsd:long\">10240</value></option><option><key>VMkernel.Boot.netPagePoolLimitCap</key><value
        xsi:type=\"xsd:long\">1048576</value></option><option><key>VMkernel.Boot.netPagePoolLimitPerGB</key><value
        xsi:type=\"xsd:long\">5120</value></option><option><key>VMkernel.Boot.netPagePoolResvCap</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.netPagePoolResvPerGB</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.netPktHeapMaxMBPerGB</key><value
        xsi:type=\"xsd:long\">6</value></option><option><key>VMkernel.Boot.netPktHeapMinMBPerGB</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.netPktPoolMaxMBPerGB</key><value
        xsi:type=\"xsd:long\">75</value></option><option><key>VMkernel.Boot.netPktPoolMinMBPerGB</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.netPreemptionEnabled</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.nmiAction</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.numSpareCoresPerLLC</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.numaLatencyRemoteThresholdPct</key><value
        xsi:type=\"xsd:long\">10</value></option><option><key>VMkernel.Boot.overrideDuplicateImageDetection</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.pciBarAllocPolicy</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>VMkernel.Boot.pcipDisablePciErrReporting</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.poisonMarker</key><value
        xsi:type=\"xsd:long\">-6148914691236517206</value></option><option><key>VMkernel.Boot.poisonPagePool</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.preventFreePageMapping</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.rdmaRoceIPBasedGidGeneration</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.rdmaUseTeamingPolicy</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.rtcEnableEFI</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.rtcEnableLegacy</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.rtcEnableLegacyForce</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.rtcEnableTAD</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.scrubIgnoredPages</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.scrubMemoryAfterModuleLoad</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.serialUntrusted</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.skipPartitioningSsds</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.storAdptrMultCplWrldsPerNuma</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.storageEnablePrpAtPsa</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.storageHeapMaxSize</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.storageHeapMinSize</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VMkernel.Boot.storageMaxDevices</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>VMkernel.Boot.storageMaxPaths</key><value
        xsi:type=\"xsd:long\">4096</value></option><option><key>VMkernel.Boot.storageMaxVMsPerDevice</key><value
        xsi:type=\"xsd:long\">32</value></option><option><key>VMkernel.Boot.swMemoryTiering</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.terminateVMOnPDL</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.tscSpeedMayVary</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.tty1Port</key><value
        xsi:type=\"xsd:string\">default</value></option><option><key>VMkernel.Boot.tty2Port</key><value
        xsi:type=\"xsd:string\">default</value></option><option><key>VMkernel.Boot.updateBusIRQ</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.useNUMAInfo</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.useReliableMem</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.useSLIT</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.vga</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.visorfsSwap</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.vmkATKeyboard</key><value
        xsi:type=\"xsd:boolean\">false</value></option><option><key>VMkernel.Boot.vmkacEnable</key><value
        xsi:type=\"xsd:int\">1</value></option><option><key>VMkernel.Boot.vmmrEnable</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.vtdSuperPages</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VMkernel.Boot.x2ApicPreferred</key><value
        xsi:type=\"xsd:boolean\">true</value></option><option><key>VSAN-iSCSI.iscsiPingTimeout</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>VSAN.AutoRestoreDecomState</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.AutoTerminateGhostVm</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.ClomForceProvisionPlacements</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.ClomMaxComponentSizeGB</key><value
        xsi:type=\"xsd:long\">255</value></option><option><key>VSAN.ClomMaxDiskUsageRepairComps</key><value
        xsi:type=\"xsd:long\">95</value></option><option><key>VSAN.ClomRebalanceThreshold</key><value
        xsi:type=\"xsd:long\">80</value></option><option><key>VSAN.DedupScope</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.DefaultHostDecommissionMode</key><value
        xsi:type=\"xsd:string\">ensureAccessibility</value></option><option><key>VSAN.DomBriefIoTraces</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.DomFullIoTraces</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.DomLongOpTraceMS</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>VSAN.DomLongOpUrgentTraceMS</key><value
        xsi:type=\"xsd:long\">10000</value></option><option><key>VSAN.MaxComponentsPerWitness</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.MaxWitnessClusters</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.ObjectScrubsPerYear</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.ObjectScrubsPerYearBase</key><value
        xsi:type=\"xsd:long\">36</value></option><option><key>VSAN.PerTraceBandwidthLimit</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.PerTraceBandwidthLimitPeriodMs</key><value
        xsi:type=\"xsd:long\">10000</value></option><option><key>VSAN.PerTraceMaxRolloverPeriods</key><value
        xsi:type=\"xsd:long\">360</value></option><option><key>VSAN.RDTChecksumMode</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.TraceEnableCmmds</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.TraceEnableDom</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.TraceEnableDomIo</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.TraceEnableLsom</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.TraceEnableLsomIo</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.TraceEnablePlog</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.TraceEnableRdt</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.TraceEnableSsdLog</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.TraceEnableVirsto</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.TraceEnableVirstoIo</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.TraceEnableVsanSparse</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.TraceEnableVsanSparseIO</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.TraceEnableVsanSparseVerbose</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.TraceGlobalBandwidthLimit</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.TraceGlobalBandwidthLimitPeriodMs</key><value
        xsi:type=\"xsd:long\">10000</value></option><option><key>VSAN.TraceGlobalMaxRolloverPeriods</key><value
        xsi:type=\"xsd:long\">360</value></option><option><key>VSAN.TracesPerErrorBandwidthLimit</key><value
        xsi:type=\"xsd:long\">1000</value></option><option><key>VSAN.TracesPerErrorBandwidthLimitPeriodMs</key><value
        xsi:type=\"xsd:long\">10000</value></option><option><key>VSAN.TracesPerErrorMaxRolloverPeriods</key><value
        xsi:type=\"xsd:long\">60</value></option><option><key>VSAN.TrimDisksBeforeUseGranularity</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VSAN.VsanSparseCacheOverEvict</key><value
        xsi:type=\"xsd:long\">5</value></option><option><key>VSAN.VsanSparseCacheThreshold</key><value
        xsi:type=\"xsd:long\">1024</value></option><option><key>VSAN.VsanSparseEnabled</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.VsanSparseHeapSize</key><value
        xsi:type=\"xsd:long\">65536</value></option><option><key>VSAN.VsanSparseMaxExtentsPrefetch</key><value
        xsi:type=\"xsd:long\">64</value></option><option><key>VSAN.VsanSparseParallelLookup</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.VsanSparseRetainCacheOnSnapshots</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VSAN.VsanSparseRetainCacheTTL</key><value
        xsi:type=\"xsd:long\">20</value></option><option><key>VSAN.VsanSparseSpeculativePrefetch</key><value
        xsi:type=\"xsd:long\">4194304</value></option><option><key>VSAN.WriteZeroOnTrimUnsupported</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VVOL.allowLegacyCiphers</key><value
        xsi:type=\"xsd:long\">0</value></option><option><key>VVOL.vvolConcurrentBatchUnbind</key><value
        xsi:type=\"xsd:long\">2</value></option><option><key>VVOL.vvolMaxRBZRetries</key><value
        xsi:type=\"xsd:long\">100</value></option><option><key>VVOL.vvolSpaceStatsCacheSize</key><value
        xsi:type=\"xsd:long\">512</value></option><option><key>VVOL.vvolSwapFilePersist</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>VVOL.vvolUnbindBatchSize</key><value
        xsi:type=\"xsd:long\">16</value></option><option><key>Virsto.DiskFormatVersion</key><value
        xsi:type=\"xsd:long\">21</value></option><option><key>Virsto.Enabled</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Virsto.FlusherRegistryThreshold</key><value
        xsi:type=\"xsd:long\">95</value></option><option><key>Virsto.GweFetchExtentsFactor</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>Virsto.InstanceHeapLimit</key><value
        xsi:type=\"xsd:long\">130</value></option><option><key>Virsto.MapBlocksFlushThreshold</key><value
        xsi:type=\"xsd:long\">90</value></option><option><key>Virsto.MapBlocksMin</key><value
        xsi:type=\"xsd:long\">16384</value></option><option><key>Virsto.MaxMFRetryCount</key><value
        xsi:type=\"xsd:long\">3</value></option><option><key>Virsto.MsecBeforeMetaFlush</key><value
        xsi:type=\"xsd:long\">10000</value></option><option><key>Virsto.RecordsPerFormatWrite</key><value
        xsi:type=\"xsd:long\">16</value></option><option><key>Virsto.SharedHeapLimit</key><value
        xsi:type=\"xsd:long\">4</value></option><option><key>XvMotion.VMFSOptimizations</key><value
        xsi:type=\"xsd:long\">1</value></option><option><key>Vpx.Vpxa.config.working_dir</key><value
        xsi:type=\"xsd:string\">/var/log/vmware</value></option><option><key>Vpx.Vpxa.config.vmotion.vm_id_acquire_timeout</key><value
        xsi:type=\"xsd:string\">60</value></option><option><key>Vpx.Vpxa.config.vmacore.thread_pool.thread_stack_size_kb</key><value
        xsi:type=\"xsd:string\">128</value></option><option><key>Vpx.Vpxa.config.vmacore.thread_pool.thread_name_prefix</key><value
        xsi:type=\"xsd:string\">vpxa</value></option><option><key>Vpx.Vpxa.config.vmacore.thread_pool.task_max</key><value
        xsi:type=\"xsd:string\">4</value></option><option><key>Vpx.Vpxa.config.vmacore.thread_pool.io_max</key><value
        xsi:type=\"xsd:string\">9</value></option><option><key>Vpx.Vpxa.config.vmacore.ssl.do_version_check</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.vmacore.soap.session_timeout</key><value
        xsi:type=\"xsd:string\">1440</value></option><option><key>Vpx.Vpxa.config.vmacore.http.default_client_pool_connections_per_server</key><value
        xsi:type=\"xsd:string\">300</value></option><option><key>Vpx.Vpxa.config.valid_user</key><value
        xsi:type=\"xsd:string\">vpxuser</value></option><option><key>Vpx.Vpxa.config.trace.vmomi.calls</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.trace.vm_changes</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.trace.resource_pool</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.trace.quickstats</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.task.unregister_lifetime</key><value
        xsi:type=\"xsd:string\">600</value></option><option><key>Vpx.Vpxa.config.task.timeout</key><value
        xsi:type=\"xsd:string\">1800</value></option><option><key>Vpx.Vpxa.config.task.min_completed_lifetime</key><value
        xsi:type=\"xsd:string\">60</value></option><option><key>Vpx.Vpxa.config.task.max_threads</key><value
        xsi:type=\"xsd:string\">32</value></option><option><key>Vpx.Vpxa.config.task.limit.short_running</key><value
        xsi:type=\"xsd:string\">5000</value></option><option><key>Vpx.Vpxa.config.task.limit.long_running</key><value
        xsi:type=\"xsd:string\">5000</value></option><option><key>Vpx.Vpxa.config.task.limit.internal</key><value
        xsi:type=\"xsd:string\">5000</value></option><option><key>Vpx.Vpxa.config.task.fallback_polling_interval</key><value
        xsi:type=\"xsd:string\">300</value></option><option><key>Vpx.Vpxa.config.task.distributed_backtrace</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.task.completed_max_entries</key><value
        xsi:type=\"xsd:string\">200</value></option><option><key>Vpx.Vpxa.config.task.completed_lifetime</key><value
        xsi:type=\"xsd:string\">600</value></option><option><key>Vpx.Vpxa.config.task.async_timeout</key><value
        xsi:type=\"xsd:string\">172800</value></option><option><key>Vpx.Vpxa.config.server_port</key><value
        xsi:type=\"xsd:string\">902</value></option><option><key>Vpx.Vpxa.config.server_ip</key><value
        xsi:type=\"xsd:string\">vcenter</value></option><option><key>Vpx.Vpxa.config.security.enabled</key><value
        xsi:type=\"xsd:string\">true</value></option><option><key>Vpx.Vpxa.config.quick_stats.white_box_test.transmitted_avg</key><value
        xsi:type=\"xsd:string\">-1</value></option><option><key>Vpx.Vpxa.config.quick_stats.white_box_test.received_avg</key><value
        xsi:type=\"xsd:string\">-1</value></option><option><key>Vpx.Vpxa.config.quick_stats.stop_quick_stats</key><value
        xsi:type=\"xsd:string\">-1</value></option><option><key>Vpx.Vpxa.config.quick_stats.fake_vm_quick_stats</key><value
        xsi:type=\"xsd:string\">0</value></option><option><key>Vpx.Vpxa.config.nfc.write_timeout</key><value
        xsi:type=\"xsd:string\">-1</value></option><option><key>Vpx.Vpxa.config.nfc.request_timeout</key><value
        xsi:type=\"xsd:string\">-1</value></option><option><key>Vpx.Vpxa.config.nfc.log_level</key><value
        xsi:type=\"xsd:string\">ERROR</value></option><option><key>Vpx.Vpxa.config.nfc.file_server_write_timeout</key><value
        xsi:type=\"xsd:string\">-1</value></option><option><key>Vpx.Vpxa.config.log.syslog.log_header_file</key><value
        xsi:type=\"xsd:string\">/var/run/vmware/vpxaLogHeader.txt</value></option><option><key>Vpx.Vpxa.config.log.syslog.ident</key><value
        xsi:type=\"xsd:string\">Vpxa</value></option><option><key>Vpx.Vpxa.config.log.syslog.facility</key><value
        xsi:type=\"xsd:string\">local4</value></option><option><key>Vpx.Vpxa.config.log.output_to_syslog</key><value
        xsi:type=\"xsd:string\">true</value></option><option><key>Vpx.Vpxa.config.log.output_to_files</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.log.output_to_console</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.log.max_file_size</key><value
        xsi:type=\"xsd:string\">1048576</value></option><option><key>Vpx.Vpxa.config.log.max_file_num</key><value
        xsi:type=\"xsd:string\">50</value></option><option><key>Vpx.Vpxa.config.log.level</key><value
        xsi:type=\"xsd:string\">verbose</value></option><option><key>Vpx.Vpxa.config.log.directory</key><value
        xsi:type=\"xsd:string\">/var/run/log</value></option><option><key>Vpx.Vpxa.config.level[SoapAdapter.HTTPService].log_name</key><value
        xsi:type=\"xsd:string\">SoapAdapter.HTTPService</value></option><option><key>Vpx.Vpxa.config.level[SoapAdapter.HTTPService].log_level</key><value
        xsi:type=\"xsd:string\">info</value></option><option><key>Vpx.Vpxa.config.level[SoapAdapter.HTTPService.HttpConnection].log_name</key><value
        xsi:type=\"xsd:string\">SoapAdapter.HTTPService.HttpConnection</value></option><option><key>Vpx.Vpxa.config.level[SoapAdapter.HTTPService.HttpConnection].log_level</key><value
        xsi:type=\"xsd:string\">info</value></option><option><key>Vpx.Vpxa.config.http_nfc.secure</key><value
        xsi:type=\"xsd:string\">true</value></option><option><key>Vpx.Vpxa.config.http_nfc.enabled</key><value
        xsi:type=\"xsd:string\">true</value></option><option><key>Vpx.Vpxa.config.http_nfc.enable_cors</key><value
        xsi:type=\"xsd:string\">true</value></option><option><key>Vpx.Vpxa.config.http_nfc.access_mode</key><value
        xsi:type=\"xsd:string\">PROXY_AUTO</value></option><option><key>Vpx.Vpxa.config.host_port</key><value
        xsi:type=\"xsd:string\">443</value></option><option><key>Vpx.Vpxa.config.host_key</key><value
        xsi:type=\"xsd:string\">5249f28c-0e44-d96d-cbdb-3a0fd016eb22</value></option><option><key>Vpx.Vpxa.config.host_ip</key><value
        xsi:type=\"xsd:string\">10.218.43.170</value></option><option><key>Vpx.Vpxa.config.dvs.portgroup_sync_batch_limit</key><value
        xsi:type=\"xsd:string\">500</value></option><option><key>Vpx.Vpxa.config.dvs.port_sync_batch_limit</key><value
        xsi:type=\"xsd:string\">100</value></option><option><key>Vpx.Vpxa.config.dvs.dvs_sync_rate</key><value
        xsi:type=\"xsd:string\">86400</value></option><option><key>Vpx.Vpxa.config.core.vm_images</key><value
        xsi:type=\"xsd:string\">/vmimages/</value></option><option><key>Vpx.Vpxa.config.core.vc_connection.use_ssl</key><value
        xsi:type=\"xsd:string\">true</value></option><option><key>Vpx.Vpxa.config.core.vc_connection.soap_adapter_port</key><value
        xsi:type=\"xsd:string\">8089</value></option><option><key>Vpx.Vpxa.config.core.vc_connection.soap_adapter_over_named_pipe</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.core.time_diff_threshold</key><value
        xsi:type=\"xsd:string\">1</value></option><option><key>Vpx.Vpxa.config.core.mmap_threshold_in_KB</key><value
        xsi:type=\"xsd:string\">32</value></option><option><key>Vpx.Vpxa.config.core.max_search_datastore_count</key><value
        xsi:type=\"xsd:string\">5</value></option><option><key>Vpx.Vpxa.config.core.max_search_count</key><value
        xsi:type=\"xsd:string\">32</value></option><option><key>Vpx.Vpxa.config.core.license_expiry_notification_threshold</key><value
        xsi:type=\"xsd:string\">15</value></option><option><key>Vpx.Vpxa.config.core.hostd_monitor_period</key><value
        xsi:type=\"xsd:string\">20</value></option><option><key>Vpx.Vpxa.config.core.host_sync.ratelimit_sync_period</key><value
        xsi:type=\"xsd:string\">150</value></option><option><key>Vpx.Vpxa.config.core.host_sync.max_event_reporting_delay_seconds</key><value
        xsi:type=\"xsd:string\">60</value></option><option><key>Vpx.Vpxa.config.core.host_sync.host_health_system_throttle_interval</key><value
        xsi:type=\"xsd:string\">0</value></option><option><key>Vpx.Vpxa.config.core.host_sync.heartbeat.stress_missed_heartbeat</key><value
        xsi:type=\"xsd:string\">500</value></option><option><key>Vpx.Vpxa.config.core.host_sync.heartbeat.stress_enabled</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.core.host_sync.heartbeat.stress_duration</key><value
        xsi:type=\"xsd:string\">180000000</value></option><option><key>Vpx.Vpxa.config.core.host_sync.heartbeat.stress_delayed_heartbeat</key><value
        xsi:type=\"xsd:string\">300</value></option><option><key>Vpx.Vpxa.config.core.host_sync.heartbeat.interval</key><value
        xsi:type=\"xsd:string\">10</value></option><option><key>Vpx.Vpxa.config.core.host_sync.guestdisk_use_percentage_diff_check</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.core.host_sync.get_changes.timeout</key><value
        xsi:type=\"xsd:string\">0</value></option><option><key>Vpx.Vpxa.config.core.host_sync.get_changes.envbrowser_refresh_rate</key><value
        xsi:type=\"xsd:string\">300</value></option><option><key>Vpx.Vpxa.config.core.host_sync.get_changes.delay</key><value
        xsi:type=\"xsd:string\">0</value></option><option><key>Vpx.Vpxa.config.core.host_sync.get_changes.asyncvmxblob</key><value
        xsi:type=\"xsd:string\">true</value></option><option><key>Vpx.Vpxa.config.core.debug_options.simulate_invalid_snapshot_mo_once</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.core.debug_options.simulate_invalid_snapshot_mo</key><value
        xsi:type=\"xsd:string\">true</value></option><option><key>Vpx.Vpxa.config.core.debug_options.ignore_snapshot_config_cache</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.core.debug_options.disconnect_hostd</key><value
        xsi:type=\"xsd:string\">false</value></option><option><key>Vpx.Vpxa.config.alarm.power_on_silence</key><value
        xsi:type=\"xsd:string\">60</value></option><option><key>Vpx.Vpxa.config.alarm.check_frequency</key><value
        xsi:type=\"xsd:string\">20</value></option><optionDef><label>Annotations.WelcomeMessage</label><summary>The
        welcome message in the initial screen of the Direct Console User Interface
        (DCUI) and the Host Client.</summary><key>Annotations.WelcomeMessage</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue></optionType></optionDef><optionDef><label>DCacheMemReserved</label><summary>Memory
        consumed by CBRC Data Cache (in MB)</summary><key>CBRC.DCacheMemReserved</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>32768</max><defaultValue>400</defaultValue></optionType></optionDef><optionDef><label>Enable</label><summary>Enable
        Content Based Read Cache</summary><key>CBRC.Enable</key><optionType xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>COWMaxHeapSizeMB</label><summary>Maximum
        size (in MB) to which the COW heap is allowed to grow</summary><key>COW.COWMaxHeapSizeMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>192</min><max>256</max><defaultValue>192</defaultValue></optionType></optionDef><optionDef><label>COWMaxREPageCacheszMB</label><summary>Maximum
        size (in MB) of VMFSSparse metadata cache size before cache eviction kicks
        in</summary><key>COW.COWMaxREPageCacheszMB</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>32</min><max>512</max><defaultValue>256</defaultValue></optionType></optionDef><optionDef><label>COWMinREPageCacheszMB</label><summary>Minimum
        size (in MB) of VMFSSparse metadata cache size. Valid when cache eviction
        is enabled.</summary><key>COW.COWMinREPageCacheszMB</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>512</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>COWREPageCacheEviction</label><summary>VMFSSparse
        metadata cache eviction: 0 - disabled, 1 enabled</summary><key>COW.COWREPageCacheEviction</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>host.TAAworkaound</label><summary>Enable
        mitigation of TSX Asynchronous Abort (CVE-2019-11135).</summary><key>Config.Defaults.host.TAAworkaround</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>monitor.if_pschange_mc_workaround</label><summary>Enable
        workaround for Machine Check Error on Page Size Change (CVE-2018-12207).</summary><key>Config.Defaults.monitor.if_pschange_mc_workaround</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>security.host.ruissl</label><summary>Require
        SSL to be used when communicating with the host over port 902.</summary><key>Config.Defaults.security.host.ruissl</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>vGPU.consolidation</label><summary>Assignment
        policy to place shared passthru graphics VMs on same physical GPU until full.</summary><key>Config.Defaults.vGPU.consolidation</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>Config.Etc.issue</label><summary>Messages
        that are displayed prior to an SSH or local shell login.</summary><key>Config.Etc.issue</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue></optionType></optionDef><optionDef><label>Config.Etc.motd</label><summary>Messages
        that are displayed following an SSH or local shell login.</summary><key>Config.Etc.motd</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue></optionType></optionDef><optionDef><label>guest.commands.sharedPolicyRefCount</label><summary>Reference
        count to enable guest operations.</summary><key>Config.GlobalSettings.guest.commands.sharedPolicyRefCount</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2147483647</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Vdtc
        Logging level</label><summary>Logging level for the loggers related to distributed
        tracing services.</summary><key>Config.HostAgent.distributedTracing</key><optionType
        xsi:type=\"ChoiceOption\"><valueIsReadonly>false</valueIsReadonly><choiceInfo><label>Debug</label><summary>Debug</summary><key>debug</key></choiceInfo><choiceInfo><label>Verbose</label><summary>Verbose</summary><key>verbose</key></choiceInfo><choiceInfo><label>Info</label><summary>Info</summary><key>info</key></choiceInfo><choiceInfo><label>None</label><summary>None</summary><key>none</key></choiceInfo><defaultIndex>1</defaultIndex></optionType></optionDef><optionDef><label>Hbrsvc
        Logging level</label><summary>Logging level for the loggers related to HBR
        services.</summary><key>Config.HostAgent.level[Hbrsvc].logLevel</key><optionType
        xsi:type=\"ChoiceOption\"><valueIsReadonly>false</valueIsReadonly><choiceInfo><label>default
        to the global log level.</label><summary>default to the global log level.</summary><key></key></choiceInfo><choiceInfo><label>None</label><summary>None</summary><key>none</key></choiceInfo><choiceInfo><label>Quiet</label><summary>Quiet</summary><key>quiet</key></choiceInfo><choiceInfo><label>Panic</label><summary>Panic</summary><key>panic</key></choiceInfo><choiceInfo><label>Error</label><summary>Error</summary><key>error</key></choiceInfo><choiceInfo><label>Warning</label><summary>Warning</summary><key>warning</key></choiceInfo><choiceInfo><label>Info</label><summary>Info</summary><key>info</key></choiceInfo><choiceInfo><label>Verbose</label><summary>Verbose</summary><key>verbose</key></choiceInfo><choiceInfo><label>Trivia</label><summary>Trivia</summary><key>trivia</key></choiceInfo><defaultIndex>0</defaultIndex></optionType></optionDef><optionDef><label>Hostsvc
        Logging level</label><summary>Logging level for the loggers related to Host
        services.</summary><key>Config.HostAgent.level[Hostsvc].logLevel</key><optionType
        xsi:type=\"ChoiceOption\"><valueIsReadonly>false</valueIsReadonly><choiceInfo><label>default
        to the global log level.</label><summary>default to the global log level.</summary><key></key></choiceInfo><choiceInfo><label>None</label><summary>None</summary><key>none</key></choiceInfo><choiceInfo><label>Quiet</label><summary>Quiet</summary><key>quiet</key></choiceInfo><choiceInfo><label>Panic</label><summary>Panic</summary><key>panic</key></choiceInfo><choiceInfo><label>Error</label><summary>Error</summary><key>error</key></choiceInfo><choiceInfo><label>Warning</label><summary>Warning</summary><key>warning</key></choiceInfo><choiceInfo><label>Info</label><summary>Info</summary><key>info</key></choiceInfo><choiceInfo><label>Verbose</label><summary>Verbose</summary><key>verbose</key></choiceInfo><choiceInfo><label>Trivia</label><summary>Trivia</summary><key>trivia</key></choiceInfo><defaultIndex>0</defaultIndex></optionType></optionDef><optionDef><label>Proxysvc
        Logging level</label><summary>Logging level for the loggers related to proxy
        services.</summary><key>Config.HostAgent.level[Proxysvc].logLevel</key><optionType
        xsi:type=\"ChoiceOption\"><valueIsReadonly>false</valueIsReadonly><choiceInfo><label>default
        to the global log level.</label><summary>default to the global log level.</summary><key></key></choiceInfo><choiceInfo><label>None</label><summary>None</summary><key>none</key></choiceInfo><choiceInfo><label>Quiet</label><summary>Quiet</summary><key>quiet</key></choiceInfo><choiceInfo><label>Panic</label><summary>Panic</summary><key>panic</key></choiceInfo><choiceInfo><label>Error</label><summary>Error</summary><key>error</key></choiceInfo><choiceInfo><label>Warning</label><summary>Warning</summary><key>warning</key></choiceInfo><choiceInfo><label>Info</label><summary>Info</summary><key>info</key></choiceInfo><choiceInfo><label>Verbose</label><summary>Verbose</summary><key>verbose</key></choiceInfo><choiceInfo><label>Trivia</label><summary>Trivia</summary><key>trivia</key></choiceInfo><defaultIndex>0</defaultIndex></optionType></optionDef><optionDef><label>Snmpsvc
        Logging level</label><summary>Logging level for the loggers related to SNMP
        services.</summary><key>Config.HostAgent.level[Snmpsvc].logLevel</key><optionType
        xsi:type=\"ChoiceOption\"><valueIsReadonly>false</valueIsReadonly><choiceInfo><label>default
        to the global log level.</label><summary>default to the global log level.</summary><key></key></choiceInfo><choiceInfo><label>None</label><summary>None</summary><key>none</key></choiceInfo><choiceInfo><label>Quiet</label><summary>Quiet</summary><key>quiet</key></choiceInfo><choiceInfo><label>Panic</label><summary>Panic</summary><key>panic</key></choiceInfo><choiceInfo><label>Error</label><summary>Error</summary><key>error</key></choiceInfo><choiceInfo><label>Warning</label><summary>Warning</summary><key>warning</key></choiceInfo><choiceInfo><label>Info</label><summary>Info</summary><key>info</key></choiceInfo><choiceInfo><label>Verbose</label><summary>Verbose</summary><key>verbose</key></choiceInfo><choiceInfo><label>Trivia</label><summary>Trivia</summary><key>trivia</key></choiceInfo><defaultIndex>0</defaultIndex></optionType></optionDef><optionDef><label>Statssvc
        Logging level</label><summary>Logging level for the loggers related to Stats
        services.</summary><key>Config.HostAgent.level[Statssvc].logLevel</key><optionType
        xsi:type=\"ChoiceOption\"><valueIsReadonly>false</valueIsReadonly><choiceInfo><label>default
        to the global log level.</label><summary>default to the global log level.</summary><key></key></choiceInfo><choiceInfo><label>None</label><summary>None</summary><key>none</key></choiceInfo><choiceInfo><label>Quiet</label><summary>Quiet</summary><key>quiet</key></choiceInfo><choiceInfo><label>Panic</label><summary>Panic</summary><key>panic</key></choiceInfo><choiceInfo><label>Error</label><summary>Error</summary><key>error</key></choiceInfo><choiceInfo><label>Warning</label><summary>Warning</summary><key>warning</key></choiceInfo><choiceInfo><label>Info</label><summary>Info</summary><key>info</key></choiceInfo><choiceInfo><label>Verbose</label><summary>Verbose</summary><key>verbose</key></choiceInfo><choiceInfo><label>Trivia</label><summary>Trivia</summary><key>trivia</key></choiceInfo><defaultIndex>0</defaultIndex></optionType></optionDef><optionDef><label>Vcsvc
        Logging level</label><summary>Logging level for the loggres related to VC
        services.</summary><key>Config.HostAgent.level[Vcsvc].logLevel</key><optionType
        xsi:type=\"ChoiceOption\"><valueIsReadonly>false</valueIsReadonly><choiceInfo><label>default
        to the global log level.</label><summary>default to the global log level.</summary><key></key></choiceInfo><choiceInfo><label>None</label><summary>None</summary><key>none</key></choiceInfo><choiceInfo><label>Quiet</label><summary>Quiet</summary><key>quiet</key></choiceInfo><choiceInfo><label>Panic</label><summary>Panic</summary><key>panic</key></choiceInfo><choiceInfo><label>Error</label><summary>Error</summary><key>error</key></choiceInfo><choiceInfo><label>Warning</label><summary>Warning</summary><key>warning</key></choiceInfo><choiceInfo><label>Info</label><summary>Info</summary><key>info</key></choiceInfo><choiceInfo><label>Verbose</label><summary>Verbose</summary><key>verbose</key></choiceInfo><choiceInfo><label>Trivia</label><summary>Trivia</summary><key>trivia</key></choiceInfo><defaultIndex>0</defaultIndex></optionType></optionDef><optionDef><label>Vimsvc
        Logging level</label><summary>Logging level for the loggers related to Virtual
        infrastructure management services.</summary><key>Config.HostAgent.level[Vimsvc].logLevel</key><optionType
        xsi:type=\"ChoiceOption\"><valueIsReadonly>false</valueIsReadonly><choiceInfo><label>default
        to the global log level.</label><summary>default to the global log level.</summary><key></key></choiceInfo><choiceInfo><label>None</label><summary>None</summary><key>none</key></choiceInfo><choiceInfo><label>Quiet</label><summary>Quiet</summary><key>quiet</key></choiceInfo><choiceInfo><label>Panic</label><summary>Panic</summary><key>panic</key></choiceInfo><choiceInfo><label>Error</label><summary>Error</summary><key>error</key></choiceInfo><choiceInfo><label>Warning</label><summary>Warning</summary><key>warning</key></choiceInfo><choiceInfo><label>Info</label><summary>Info</summary><key>info</key></choiceInfo><choiceInfo><label>Verbose</label><summary>Verbose</summary><key>verbose</key></choiceInfo><choiceInfo><label>Trivia</label><summary>Trivia</summary><key>trivia</key></choiceInfo><defaultIndex>0</defaultIndex></optionType></optionDef><optionDef><label>Vmsvc
        logging level</label><summary>Logging level for the loggers related to VM
        services.</summary><key>Config.HostAgent.level[Vmsvc].logLevel</key><optionType
        xsi:type=\"ChoiceOption\"><valueIsReadonly>false</valueIsReadonly><choiceInfo><label>default
        to the global log level.</label><summary>default to the global log level.</summary><key></key></choiceInfo><choiceInfo><label>None</label><summary>None</summary><key>none</key></choiceInfo><choiceInfo><label>Quiet</label><summary>Quiet</summary><key>quiet</key></choiceInfo><choiceInfo><label>Panic</label><summary>Panic</summary><key>panic</key></choiceInfo><choiceInfo><label>Error</label><summary>Error</summary><key>error</key></choiceInfo><choiceInfo><label>Warning</label><summary>Warning</summary><key>warning</key></choiceInfo><choiceInfo><label>Info</label><summary>Info</summary><key>info</key></choiceInfo><choiceInfo><label>Verbose</label><summary>Verbose</summary><key>verbose</key></choiceInfo><choiceInfo><label>Trivia</label><summary>Trivia</summary><key>trivia</key></choiceInfo><defaultIndex>0</defaultIndex></optionType></optionDef><optionDef><label>log.level</label><summary>Controls
        the global log level.</summary><key>Config.HostAgent.log.level</key><optionType
        xsi:type=\"ChoiceOption\"><valueIsReadonly>false</valueIsReadonly><choiceInfo><label>None</label><summary>None</summary><key>none</key></choiceInfo><choiceInfo><label>Quiet</label><summary>Quiet</summary><key>quiet</key></choiceInfo><choiceInfo><label>Panic</label><summary>Panic</summary><key>panic</key></choiceInfo><choiceInfo><label>Error</label><summary>Error</summary><key>error</key></choiceInfo><choiceInfo><label>Warning</label><summary>Warning</summary><key>warning</key></choiceInfo><choiceInfo><label>Info</label><summary>Info</summary><key>info</key></choiceInfo><choiceInfo><label>Verbose</label><summary>Verbose</summary><key>verbose</key></choiceInfo><choiceInfo><label>Trivia</label><summary>Trivia</summary><key>trivia</key></choiceInfo><defaultIndex>6</defaultIndex></optionType></optionDef><optionDef><label>plugins.hostsvc.esxAdminsGroup</label><summary>Active
        Directory group name that is automatically granted administrator privileges
        on the ESX. NOTE: Changing the group name does not remove the permissions
        of the previous group.</summary><key>Config.HostAgent.plugins.hostsvc.esxAdminsGroup</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>ESX
        Admins</defaultValue></optionType></optionDef><optionDef><label>plugins.hostsvc.esxAdminsGroupAutoAdd</label><summary>Controls
        whether the group specified by &apos;esxAdminsGroup&apos; is automatically
        granted administrator permission. NOTE: Changing this to false does not remove
        any permissions already granted to the group.</summary><key>Config.HostAgent.plugins.hostsvc.esxAdminsGroupAutoAdd</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>plugins.hostsvc.esxAdminsGroupUpdateInterval</label><summary>Interval
        between checks for whether the group specified by &apos;esxAdminsGroup&apos;
        has appeared in Active Directory, in minutes.</summary><key>Config.HostAgent.plugins.hostsvc.esxAdminsGroupUpdateInterval</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>30</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Remote
        esxcli disabled</label><summary>Enables or disables remote execution of esxcli
        commands.</summary><key>Config.HostAgent.plugins.solo.disableRemoteEsxcli</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>Debug
        Managed Object Browser enabled</label><summary>Enables or disables the Debug
        Managed Object Browser for the ESXi host.</summary><key>Config.HostAgent.plugins.solo.enableMob</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>Enable
        webscript launcher page</label><summary>Controls the availability of webscript
        launcher page.</summary><key>Config.HostAgent.plugins.solo.webServer.enableWebscriptLauncher</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>plugins.vimsvc.authValidateInterval</label><summary>Number
        of minutes between each validation of all known users and groups - set to
        zero to disable validation.</summary><key>Config.HostAgent.plugins.vimsvc.authValidateInterval</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2147483647</max><defaultValue>1440</defaultValue></optionType></optionDef><optionDef><label>Enables
        or disables Host Profile pyEngine APIs.</label><summary>Enables or disables
        Host Profile pyEngine APIs. Restart host agent service (hostd) to adopt new
        value.</summary><key>Config.HostAgent.plugins.vimsvc.disableHostProfileApi</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>plugins.vimsvc.enableUtf8Filter</label><summary>Enable
        UTF-8 validation of VIM API responses.</summary><key>Config.HostAgent.plugins.vimsvc.enableUtf8Filter</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>plugins.vimsvc.httpNfcLeaseTimeout</label><summary>Number
        of seconds until an HTTP NFC lease times out due to inactivity. Applies to
        new leases only.</summary><key>Config.HostAgent.plugins.vimsvc.httpNfcLeaseTimeout</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>100000</max><defaultValue>300</defaultValue></optionType></optionDef><optionDef><label>plugins.vimsvc.userSearch.maxResults</label><summary>Maximum
        number of users and groups to display in the Add Permissions dialog - set
        to zero to disable the limit.</summary><key>Config.HostAgent.plugins.vimsvc.userSearch.maxResults</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2147483647</max><defaultValue>100</defaultValue></optionType></optionDef><optionDef><label>plugins.vimsvc.userSearch.maxTimeSeconds</label><summary>Number
        of seconds to wait for a search for users and groups to return results - set
        to zero to disable the timeout.</summary><key>Config.HostAgent.plugins.vimsvc.userSearch.maxTimeSeconds</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>180</max><defaultValue>20</defaultValue></optionType></optionDef><optionDef><label>plugins.vmsvc.blockDiskRemoveIfSnapshot</label><summary>A
        flag that blocks all virtual disk remove operations on VMs that have snapshots.</summary><key>Config.HostAgent.plugins.vmsvc.blockDiskRemoveIfSnapshot</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>Limit
        the number of registered virtual machines</label><summary>Enables enforcing
        the limitation on the number of registered virtual machines in the inventory.</summary><key>Config.HostAgent.plugins.vmsvc.enforceMaxRegisteredVms</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>false</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>plugins.vmsvc.filterExtraConfigHotEdit</label><summary>Filter
        out extraConfig keys being modified that are not on a pre-defined list of
        allowed keys when a virtual machine is powered on.</summary><key>Config.HostAgent.plugins.vmsvc.filterExtraConfigHotEdit</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>plugins.vmsvc.guestWatchdogTimeout</label><summary>Number
        of seconds to wait for the Guest OS to shutdown.</summary><key>Config.HostAgent.plugins.vmsvc.guestWatchdogTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>3600</max><defaultValue>900</defaultValue></optionType></optionDef><optionDef><label>plugins.vmsvc.productLockerWatchIntervalSeconds</label><summary>Interval
        between checks for whether the product locker files are changed, in seconds.
        Set to -1 to disable checks.</summary><key>Config.HostAgent.plugins.vmsvc.productLockerWatchInterval</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>-1</min><max>86400</max><defaultValue>300</defaultValue></optionType></optionDef><optionDef><label>vmsvc.vsanVmRefreshRetryInterval</label><summary>Number
        of seconds to wait for retrying vSAN VM refresh, option value &apos;0&apos;
        means disabling retry logic.</summary><key>Config.HostAgent.plugins.vmsvc.vsanVmRefreshRetryInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3600</max><defaultValue>1800</defaultValue></optionType></optionDef><optionDef><label>ssl.keyStore.allowAny</label><summary>Allow
        any certificates to be added to the host CA store. Disables CA checks.</summary><key>Config.HostAgent.ssl.keyStore.allowAny</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>ssl.keyStore.allowSelfSigned</label><summary>Allow
        non-CA self-signed certificates to be added to the host CA store.</summary><key>Config.HostAgent.ssl.keyStore.allowSelfSigned</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>ssl.keyStore.discardLeaf</label><summary>Discard
        leaf certificates when adding to CA store. Leaf certificates in a CA store
        are generally a misconfiguration.</summary><key>Config.HostAgent.ssl.keyStore.discardLeaf</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>ssl.minPrivateKeyLength</label><summary>The
        minimum length in bits to be used when generating a new host private key.</summary><key>Config.HostAgent.ssl.minPrivateKeyLength</key><optionType
        xsi:type=\"ChoiceOption\"><valueIsReadonly>false</valueIsReadonly><choiceInfo><label>RSA-2048</label><summary>RSA-2048</summary><key>RSA-2048</key></choiceInfo><choiceInfo><label>RSA-3072</label><summary>RSA-3072</summary><key>RSA-3072</key></choiceInfo><choiceInfo><label>RSA-4096</label><summary>RSA-4096</summary><key>RSA-4096</key></choiceInfo><defaultIndex>0</defaultIndex></optionType></optionDef><optionDef><label>ticketing.thumbprintTypes</label><summary>Hash
        algorithms with which to generate host thumbprints, specified as a comma-separated
        list. Options are sha1, sha256. If no hash is specified, all hashes that are
        considered secure are enabled.</summary><key>Config.HostAgent.ticketing.thumbprintTypes</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>sha1</defaultValue></optionType></optionDef><optionDef><label>vmacore.soap.maxSessionCount</label><summary>Maximum
        number of authenticated VIM API sessions at any given time - set to zero to
        disable limit.</summary><key>Config.HostAgent.vmacore.soap.maxSessionCount</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2147483647</max><defaultValue>500</defaultValue></optionType></optionDef><optionDef><label>vmacore.soap.sessionTimeout</label><summary>Number
        of minutes until a VIM API session times out due to inactivity - set to zero
        to disable timeout. Applies to new sessions only.</summary><key>Config.HostAgent.vmacore.soap.sessionTimeout</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2147483647</max><defaultValue>30</defaultValue></optionType></optionDef><optionDef><label>AllowWideVsmp</label><summary>Allow
        VMs with more VCPUs than host PCPUs, 0 to disable</summary><key>Cpu.AllowWideVsmp</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Bound
        lag quanta</label><summary>Number of global quanta before bound lag</summary><key>Cpu.BoundLagQuanta</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>100</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>CommRateThreshold</label><summary>threshold
        for inter-sched-context rate above which the contexts are considered to be
        related (in num/sec)</summary><key>Cpu.CommRateThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>50000</max><defaultValue>500</defaultValue></optionType></optionDef><optionDef><label>CoschedCostartThreshold</label><summary>costart
        threshold in usec, costart threshold should be less than costopThreshold</summary><key>Cpu.CoschedCostartThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>CoschedCostopThreshold</label><summary>maximum
        skew between vcpus in usec, 0 to disable</summary><key>Cpu.CoschedCostopThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100000</max><defaultValue>3000</defaultValue></optionType></optionDef><optionDef><label>CoschedCrossCall</label><summary>0:
        disable cosched on crosscall; 1: enable cosched on crosscall</summary><key>Cpu.CoschedCrossCall</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoschedHandoffLLC</label><summary>0:
        handoff by switching pcpu; 1: handoff to LLC if possible</summary><key>Cpu.CoschedHandoffLLC</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoschedHandoffSkip</label><summary>only
        skip handoff if ready time is smaller than this threshold, in usec, 0 to allow
        skip always</summary><key>Cpu.CoschedHandoffSkip</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>CoschedPollUsec</label><summary>interval
        between coscheduling skew checks, in usec</summary><key>Cpu.CoschedPollUsec</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1000</min><max>5000</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>Credit
        age period</label><summary>Period in milliseconds</summary><key>Cpu.CreditAgePeriod</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1000</min><max>10000</max><defaultValue>3000</defaultValue></optionType></optionDef><optionDef><label>FairnessRebalancePcpus</label><summary>max
        number of PCPUs to be considered when doing fairness rebalance, 0 to disable</summary><key>Cpu.FairnessRebalancePcpus</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>32</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>HTRebalancePeriod</label><summary>average
        milliseconds between opportunities for a pcpu to migrate vcpus from within
        a core</summary><key>Cpu.HTRebalancePeriod</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>5000</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>HTStolenAgeThreshold</label><summary>the
        amount of htStolen time a vcpu can keep without being aged (in seconds)</summary><key>Cpu.HTStolenAgeThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>500</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>HTWholeCoreThreshold</label><summary>a
        vcpu with vtime falling behind by this threshold (in ms) is eligible to use
        the whole core (HT only), 0 to disable (may violate resource settings)</summary><key>Cpu.HTWholeCoreThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>5000</max><defaultValue>800</defaultValue></optionType></optionDef><optionDef><label>HostRebalancePeriod</label><summary>average
        milliseconds between opportunities for a pcpu to migrate vcpus from within
        the whole system, 0 to disable</summary><key>Cpu.HostRebalancePeriod</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>5000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>L2RebalancePeriod</label><summary>average
        milliseconds between opportunities for a pcpu to migrate vcpus from within
        the shared L2 cache, 0 to disable</summary><key>Cpu.L2RebalancePeriod</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>5000</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>L3RebalancePeriod</label><summary>average
        milliseconds between opportunities for a pcpu to migrate vcpus from within
        the shared L3 cache, 0 to disable</summary><key>Cpu.L3RebalancePeriod</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>5000</max><defaultValue>20</defaultValue></optionType></optionDef><optionDef><label>LimitEnforcementThreshold</label><summary>Only
        allows low-vtime children ro run when a group/VM&apos;s vtimeLimit is smaller
        than the global virtual time by less than this threshold (in ms), 0 to disable</summary><key>Cpu.LimitEnforcementThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10000</max><defaultValue>200</defaultValue></optionType></optionDef><optionDef><label>MaxSampleRateLg</label><summary>Sampling
        system services at most (2^MaxSampleRateLg) times a second</summary><key>Cpu.MaxSampleRateLg</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>15</max><defaultValue>7</defaultValue></optionType></optionDef><optionDef><label>NonTimerWakeupRate</label><summary>Disable
        P state if the running vcpu&apos;s non-timer wakeup rate is higher than this
        threshold, 0 to disable</summary><key>Cpu.NonTimerWakeupRate</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>5000</max><defaultValue>500</defaultValue></optionType></optionDef><optionDef><label>PackageRebalancePeriod</label><summary>average
        milliseconds between opportunities for a pcpu to migrate vcpus from within
        a package, 0 to disable</summary><key>Cpu.PackageRebalancePeriod</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>5000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>PcpuMigrateIdlePcpus</label><summary>max
        number of PCPUs to be considered when doing pcpu idle rebalance, 0 to disable</summary><key>Cpu.PcpuMigrateIdlePcpus</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>32</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>Quantum</label><summary>Quantum
        in milliseconds</summary><key>Cpu.Quantum</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1000</max><defaultValue>200</defaultValue></optionType></optionDef><optionDef><label>UseMwait</label><summary>use
        MWAIT vs. HLT in the idle loop; 0: use HLT, 1: use MWAIT if possible, 2: choose
        by cpu type</summary><key>Cpu.UseMwait</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>Enable
        admission check per virtual CPU</label><summary>Perform additional admission
        control check that per virtual CPU virtual machine minimum does not exceed
        the speed of a single physical CPU</summary><key>Cpu.VMAdmitCheckPerVcpuMin</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>WakeupMigrateIdlePcpus</label><summary>max
        number of PCPUs to be considered when doing wakeup idle rebalance, 0 to disable</summary><key>Cpu.WakeupMigrateIdlePcpus</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>32</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>DCUI
        Access</label><summary>One or more comma-separated local users which are granted
        unconditional access to DCUI, even if they don&apos;t have administrator role
        on the host.</summary><key>DCUI.Access</key><optionType xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>root</defaultValue></optionType></optionDef><optionDef><label>HardwareAcceleratedInit</label><summary>Enable
        hardware accelerated VMFS data initialization (requires compliant hardware)</summary><key>DataMover.HardwareAcceleratedInit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>HardwareAcceleratedMove</label><summary>Enable
        hardware accelerated VMFS data movement (requires compliant hardware)</summary><key>DataMover.HardwareAcceleratedMove</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>MaxHeapSize</label><summary>Maximum
        size of the heap in MB used for data movement</summary><key>DataMover.MaxHeapSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>16</min><max>256</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>AlgoType</label><summary>Digest
        Crypto Hash Type (1=SHA-1, 2=SHA-256).</summary><key>Digest.AlgoType</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>2</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>BlockSize</label><summary>Blocksize
        in the original VMDK to compute crypto hash codes. In pages of 4K size. Value
        needs to be power of 2.</summary><key>Digest.BlockSize</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>2</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CollisionEnabled</label><summary>Enable
        collision detection (0=disabled, 1=enabled)</summary><key>Digest.CollisionEnabled</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>MaxDentryPerObj</label><summary>Maximum
        directory entries cached per directory</summary><key>DirentryCache.MaxDentryPerObj</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>60</min><max>30000</max><defaultValue>15000</defaultValue></optionType></optionDef><optionDef><label>AllowUsbClaimedAsSSD</label><summary>Permit
        claim rules to mark USB disks as SSD</summary><key>Disk.AllowUsbClaimedAsSSD</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>APD
        Token Retry Count</label><summary>APD Token Retry Count</summary><key>Disk.ApdTokenRetryCount</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>99999</max><defaultValue>25</defaultValue></optionType></optionDef><optionDef><label>AutoremoveOnPDL</label><summary>Autoremove
        paths to a disk that is in PDL (Permanent Device Loss)</summary><key>Disk.AutoremoveOnPDL</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>BandwidthCap</label><summary>cap
        on disk bandwidth (KB/s) usage</summary><key>Disk.BandwidthCap</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>4294967294</max><defaultValue>4294967294</defaultValue></optionType></optionDef><optionDef><label>Delay
        on busy</label><summary>Delay in milliseconds for completion of commands with
        a BUSY status</summary><key>Disk.DelayOnBusy</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>5000</max><defaultValue>400</defaultValue></optionType></optionDef><optionDef><label>DeviceEnableIOLatencyMsgs</label><summary>Enable
        or disable storage latency-related error messages from PSA</summary><key>Disk.DeviceEnableIOLatencyMsgs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>DeviceReclaimTime</label><summary>The
        number of seconds between device re-claim attempts</summary><key>Disk.DeviceReclaimTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>31536000</max><defaultValue>300</defaultValue></optionType></optionDef><optionDef><label>Disable
        4kn SSDs</label><summary>Disable use of 4kn SSDs</summary><key>Disk.Disable4knSSD</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>DiskDelayPDLHelper</label><summary>Delay
        PDL helper in secs</summary><key>Disk.DiskDelayPDLHelper</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>300</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>DiskMaxIOSize</label><summary>Max
        Disk READ/WRITE I/O size before splitting (in KB)</summary><key>Disk.DiskMaxIOSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>32</min><max>32767</max><defaultValue>32767</defaultValue></optionType></optionDef><optionDef><label>DiskReservationThreshold</label><summary>Time
        window within which refcounted reservations on a device are permitted (in
        msec)</summary><key>Disk.DiskReservationThreshold</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3000</max><defaultValue>45</defaultValue></optionType></optionDef><optionDef><label>DiskRetryPeriod</label><summary>Retry
        period in milliseconds for a command with retry status</summary><key>Disk.DiskRetryPeriod</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>500</min><max>50000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>DumpMaxRetries</label><summary>Max
        number of I/O retries during disk dump</summary><key>Disk.DumpMaxRetries</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>DumpPollDelay</label><summary>Number
        of microseconds to wait between polls during a disk dump.</summary><key>Disk.DumpPollDelay</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>100000</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>DumpPollMaxRetries</label><summary>Max
        number of device poll retries during disk dump</summary><key>Disk.DumpPollMaxRetries</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>100000</max><defaultValue>10000</defaultValue></optionType></optionDef><optionDef><label>EnableNaviReg</label><summary>Enable
        automatic NaviAgent registration with EMC CLARiiON and Invista</summary><key>Disk.EnableNaviReg</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>FailDiskRegistration</label><summary>Fail
        device registration if disk has only standby paths and supports only implicit
        asymmetric logical unit access.</summary><key>Disk.FailDiskRegistration</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Fast-path
        latency monitoring interval</label><summary>Time interval (in msec) to monitor
        the IO latency to evaluate eligibility for fast-path in PSA.</summary><key>Disk.FastPathRestoreInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>1000</max><defaultValue>100</defaultValue></optionType></optionDef><optionDef><label>IdleCredit</label><summary>Amount
        of idle credit that a virtual machine can gain for I/O requests</summary><key>Disk.IdleCredit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>512</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>Maximum
        LUN</label><summary>Only SCSI LUNs with LUN ID values below this value will
        be scanned</summary><key>Disk.MaxLUN</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4294967295</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>Maximum
        number of IO intervals</label><summary>Maximum number of IO intervals per
        device that can be stored in order to detect overlapping IOs to 4Kn disks</summary><key>Disk.MaxNumIOIntervals</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>64</min><max>65535</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>Maximum
        reset latency</label><summary>Delay in milliseconds before logging warnings
        and spawning new reset worlds if a reset is overdue or taking too long</summary><key>Disk.MaxResetLatency</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>500</min><max>600000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>Maximum
        commands in NMP</label><summary>Increase the maximum number of commands to
        be processed at once in NMP</summary><key>Disk.NmpMaxCmdExtension</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000000000</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>PVSCSIEnablePreemption</label><summary>Enable
        PVSCSI Preemption.</summary><key>Disk.PVSCSIEnablePreemption</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Path
        evaluation time</label><summary>The number of seconds between FC path evaluations</summary><key>Disk.PathEvalTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>31536000</max><defaultValue>300</defaultValue></optionType></optionDef><optionDef><label>PreventVMFSOverwrite</label><summary>Prevent
        overwriting VMFS partitions</summary><key>Disk.PreventVMFSOverwrite</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>QFullSampleSize</label><summary>I/O
        samples to monitor for detecting non-transient queue full condition. Should
        be nonzero to enable queue depth throttling.</summary><key>Disk.QFullSampleSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>64</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>QFullThreshold</label><summary>BUSY
        or QFULL threshold, upon which LUN queue depth will be throttled. Should be
        &lt;= QFullSampleSize if throttling is enabled.</summary><key>Disk.QFullThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>16</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>ReqCallThreshold</label><summary>Threshold
        in number of pending requests before calling into vmkernel to process the
        requests</summary><key>Disk.ReqCallThreshold</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>129</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>Reset
        latency</label><summary>Delay in milliseconds between reset thread wakeups</summary><key>Disk.ResetLatency</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>600000</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>Reset
        maximum retries</label><summary>Maximum number of bus reset retries. Set to
        0 for no limit.</summary><key>Disk.ResetMaxRetries</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10000</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Reset
        overdue log period</label><summary>Delay in seconds between logs of overdue
        reset</summary><key>Disk.ResetOverdueLogPeriod</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>86400</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>Reset
        period</label><summary>Delay in seconds between bus resets retries</summary><key>Disk.ResetPeriod</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>3600</max><defaultValue>30</defaultValue></optionType></optionDef><optionDef><label>Reset
        thread expires</label><summary>Life in seconds of an inactive reset handle
        thread</summary><key>Disk.ResetThreadExpires</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>86400</max><defaultValue>1800</defaultValue></optionType></optionDef><optionDef><label>Reset
        thread maximum</label><summary>Maximum number of reset handler threads</summary><key>Disk.ResetThreadMax</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>16</max><defaultValue>16</defaultValue></optionType></optionDef><optionDef><label>Reset
        thread minimum</label><summary>Minimum number of reset handler threads</summary><key>Disk.ResetThreadMin</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>16</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Retry
        unit attention</label><summary>Retry all SCSI commands that return a unit
        attention error</summary><key>Disk.RetryUnitAttention</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ReturnCCForNoSpace</label><summary>Return
        CC 0x7/0x27/0x7 in the event where a backing datastore has run out of space
        as opposed to posting a monitor event to halt the VM</summary><key>Disk.ReturnCCForNoSpace</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SchedCostUnit</label><summary>IO
        Scheduler block size for accounting</summary><key>Disk.SchedCostUnit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>4096</min><max>262144</max><defaultValue>32768</defaultValue></optionType></optionDef><optionDef><label>SchedQ
        cleanup interval</label><summary>Time interval (in secs) to cleanup per device
        unused schedQ list (default = 5 minutes).</summary><key>Disk.SchedQCleanupInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>31536000</max><defaultValue>300</defaultValue></optionType></optionDef><optionDef><label>Scheduled
        QControl sequence requests</label><summary>Number of consecutive requests
        from a virtual machine required to raise the outstanding commands to maximum</summary><key>Disk.SchedQControlSeqReqs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2048</max><defaultValue>128</defaultValue></optionType></optionDef><optionDef><label>Scheduled
        QControl VM switches</label><summary>Number of switches between commands issued
        by different virtual machines required to reduce outstanding commands to CONFIG_DISK_CIF</summary><key>Disk.SchedQControlVMSwitches</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2048</max><defaultValue>6</defaultValue></optionType></optionDef><optionDef><label>SchedQPriorityPercentage</label><summary>Percentage
        of priority commands to serve from priority queue</summary><key>Disk.SchedQPriorityPercentage</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>100</max><defaultValue>80</defaultValue></optionType></optionDef><optionDef><label>Scheduled
        quantum</label><summary>Number of consecutive requests from one world</summary><key>Disk.SchedQuantum</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>64</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>SchedReservationBurst</label><summary>Permit
        I/O bursts in mclock scheduler with reservations.</summary><key>Disk.SchedReservationBurst</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>SchedulerWithReservation</label><summary>Disk
        I/O scheduler (0:default 1:mclock)</summary><key>Disk.SchedulerWithReservation</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Sector
        maximum difference</label><summary>Distance in sectors at which the disk BW
        schedules affinity stops</summary><key>Disk.SectorMaxDiff</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2000000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>Shares
        high</label><summary>Shares for high disk priority</summary><key>Disk.SharesHigh</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>10000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>Shares
        low</label><summary>Shares for low disk priority</summary><key>Disk.SharesLow</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>10000</max><defaultValue>500</defaultValue></optionType></optionDef><optionDef><label>Shares
        normal</label><summary>Shares for normal disk priority</summary><key>Disk.SharesNormal</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>10000</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>Skip
        device reset</label><summary>Do not send Device/Virt RESET if No Cmds in Flight</summary><key>Disk.SkipResetNoCIF</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>SllThrottleTime</label><summary>Time
        (in msecs) I/Os to SLLs will be throttled in the event of a TASK_SET_FULL
        being received.</summary><key>Disk.SllThrottleTime</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>25</min><max>3000</max><defaultValue>800</defaultValue></optionType></optionDef><optionDef><label>Support
        sparse LUN</label><summary>Support for sparse LUNs if set to one</summary><key>Disk.SupportSparseLUN</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ThroughputCap</label><summary>Cap
        on disk throughput (IO/s) usage</summary><key>Disk.ThroughputCap</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>4294967294</max><defaultValue>4294967294</defaultValue></optionType></optionDef><optionDef><label>Use
        device reset</label><summary>Use device reset (instead of bus reset) to reset
        a SCSI device</summary><key>Disk.UseDeviceReset</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Enable
        PSA deferred work pools</label><summary>A bitmask: 0x1 - adapter submission
        pool, 0x2 - device completion pool, 0x4 - device queueing pool.</summary><key>Disk.UseIoPool</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>7</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Use
        LUN reset</label><summary>Use LUN reset (instead of device.bus reset) to reset
        a SCSI device</summary><key>Disk.UseLunReset</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Use
        report LUN</label><summary>Use the REPORT LUN command to increase scanning
        speed for devices</summary><key>Disk.UseReportLUN</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VSCSI
        Coalesce Count</label><summary>Frequency with which the coalesce callback
        is called.</summary><key>Disk.VSCSICoalesceCount</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100000</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>VSCSIDisableNvmeRetry</label><summary>Disable
        vNVME Retries in VSCSI.</summary><key>Disk.VSCSIDisableNvmeRetry</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Minimum
        time between VSCSI Polls when vCPUs halt</label><summary>When vCPU halt we
        poll VSCSI vHBAs for work, but at most do so this often. Time is in microseconds.</summary><key>Disk.VSCSIHaltPollInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1000</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>VSCSI
        Poll Period</label><summary>Time in microseconds between VSCSI polls.</summary><key>Disk.VSCSIPollPeriod</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>99999999</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>VSCSIResvCmdRetryInSecs</label><summary>Time
        (in secs) to retry on transient errors for Reservation commands for MSCS CAB
        configs.</summary><key>Disk.VSCSIResvCmdRetryInSecs</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>60</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VSCSIWriteSameBurstSize</label><summary>Max
        number of split IOs per write same request.</summary><key>Disk.VSCSIWriteSameBurstSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>FSSLightWeightProbe</label><summary>Enable
        light-weight efficient probe of ESX supported datastores</summary><key>FSS.FSSLightWeightProbe</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>BindToVmknic</label><summary>Bind
        the FT socket to a specific vmknic</summary><key>FT.BindToVmknic</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>FTCptConcurrentSend</label><summary>Send
        non-diff pages in parallel with diffing rather than after</summary><key>FT.FTCptConcurrentSend</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>FTCptDelayCheckpoint</label><summary>Delay
        checkpoint if no network packet waiting</summary><key>FT.FTCptDelayCheckpoint</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>FTCptDiffCap</label><summary>Max
        percent pages via diffs (EXPERIMENTAL, failover will not work if not 100)</summary><key>FT.FTCptDiffCap</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>100</defaultValue></optionType></optionDef><optionDef><label>FTCptDiffThreads</label><summary>Number
        of threads for diffing pages</summary><key>FT.FTCptDiffThreads</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>16</max><defaultValue>6</defaultValue></optionType></optionDef><optionDef><label>FTCptDisableFailover</label><summary>Disable
        failovers (testing only)</summary><key>FT.FTCptDisableFailover</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>6</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>FTCptDiskWriteTimeout</label><summary>Time
        in milliseconds for backup site to wait for a disk I/O to complete</summary><key>FT.FTCptDiskWriteTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>60000</max><defaultValue>3000</defaultValue></optionType></optionDef><optionDef><label>FTCptDontDelayPkts</label><summary>Do
        not delay network packets - for testing only</summary><key>FT.FTCptDontDelayPkts</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>FTCptDontSendPages</label><summary>Do
        not send over modified pages - for testing only</summary><key>FT.FTCptDontSendPages</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>FTCptEpochList</label><summary>List
        of potential epochs to try in order of increasing value</summary><key>FT.FTCptEpochList</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>5,10,20,100</defaultValue><validCharacters>0123456789,</validCharacters></optionType></optionDef><optionDef><label>FTCptEpochSample</label><summary>Single
        epoch sampling time in ms</summary><key>FT.FTCptEpochSample</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>60000</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>FTCptEpochWait</label><summary>Wait
        in ms after epoch sampling</summary><key>FT.FTCptEpochWait</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4294967295</max><defaultValue>8000</defaultValue></optionType></optionDef><optionDef><label>FTCptIORetryExtraInterval</label><summary>Extra
        sleep interval (in ms) between retries on disk I/O error</summary><key>FT.FTCptIORetryExtraInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>2000</max><defaultValue>200</defaultValue></optionType></optionDef><optionDef><label>FTCptIORetryInterval</label><summary>Sleep
        interval (in ms) between retries on disk I/O error</summary><key>FT.FTCptIORetryInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>2000</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>FTCptIORetryTimes</label><summary>Maximum
        retries on disk I/O error</summary><key>FT.FTCptIORetryTimes</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>5</min><max>50</max><defaultValue>15</defaultValue></optionType></optionDef><optionDef><label>FTCptLogTimeout</label><summary>Time
        in milliseconds to wait for FT log entries (read or write)</summary><key>FT.FTCptLogTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>500</min><max>30000</max><defaultValue>8000</defaultValue></optionType></optionDef><optionDef><label>FTCptMaxPktsDelay</label><summary>Max
        number of packets in the delayed queue before forcing a checkpoint</summary><key>FT.FTCptMaxPktsDelay</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10000</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>FTCptMinInterval</label><summary>Time
        in milliseconds to wait between two forced checkpoints</summary><key>FT.FTCptMinInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>2</min><max>1000</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>FTCptNetDelayNoCpt</label><summary>Delay
        to impose on virtual machine network output in ms</summary><key>FT.FTCptNetDelayNoCpt</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>5000</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>FTCptNumConnections</label><summary>#
        of data connections to use for page sending</summary><key>FT.FTCptNumConnections</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>FTCptNumaIndex</label><summary>Index
        dirty pages by NUMA node.  Workers will use the index to prefer local work.</summary><key>FT.FTCptNumaIndex</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>FTCptPagePolicy</label><summary>Page
        placement policy for side data.  &lt; 2^16: Use a specific node mask, 0x10000:
        Put pages anywhere, 0x10001: Match nodes with virtual machine, 0x10002: Avoid
        matching nodes with virtual machine</summary><key>FT.FTCptPagePolicy</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65538</max><defaultValue>65538</defaultValue></optionType></optionDef><optionDef><label>FTCptPoweroff</label><summary>Power
        off the Primary VM after the next checkpoint</summary><key>FT.FTCptPoweroff</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>FTCptRcvBufSize</label><summary>TCP
        receive buffer size for the backup</summary><key>FT.FTCptRcvBufSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>131080</min><max>16777216</max><defaultValue>562140</defaultValue></optionType></optionDef><optionDef><label>FTCptSndBufSize</label><summary>TCP
        send buffer size for the Primary VM</summary><key>FT.FTCptSndBufSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>131080</min><max>16777216</max><defaultValue>562140</defaultValue></optionType></optionDef><optionDef><label>FTCptStartTimeout</label><summary>Time
        in milliseconds for backup site to wait for data for the next checkpoint</summary><key>FT.FTCptStartTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1000</min><max>90000</max><defaultValue>90000</defaultValue></optionType></optionDef><optionDef><label>FTCptStatsInterval</label><summary>Time
        in milliseconds between stat printing</summary><key>FT.FTCptStatsInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>600</max><defaultValue>30</defaultValue></optionType></optionDef><optionDef><label>FTCptThreadPolicy</label><summary>Policy
        for placing helper threads.  &lt; 2^16: Use a fixed NUMA node mask, 0x10000:
        Put threads anywhere, 0x10001: Match threads to a dynamic node index</summary><key>FT.FTCptThreadPolicy</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65537</max><defaultValue>65536</defaultValue></optionType></optionDef><optionDef><label>FTCptVcpuMinUsage</label><summary>VCPU
        usage in percentage below which the VM will be considered for forced checkpoint</summary><key>FT.FTCptVcpuMinUsage</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>40</defaultValue></optionType></optionDef><optionDef><label>FTCptWaitOnSocket</label><summary>Wait
        when socket is empty</summary><key>FT.FTCptWaitOnSocket</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Vmknic</label><summary>Vmknic
        for FT vmkernel VNIC</summary><key>FT.Vmknic</key><optionType xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>ChecksumIoSize</label><summary>Size
        in blocks of a checksum read I/O</summary><key>HBR.ChecksumIoSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1024</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>ChecksumMaxIo</label><summary>Maximum
        number of I/O chunks read in parallel for checksum</summary><key>HBR.ChecksumMaxIo</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>256</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>ChecksumPerSlice</label><summary>Maximum
        number of I/O chunks we read in each slice for checksum</summary><key>HBR.ChecksumPerSlice</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>64</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>ChecksumRegionSize</label><summary>Size
        in blocks of one checksum region, corresponding to one network request</summary><key>HBR.ChecksumRegionSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4096</max><defaultValue>256</defaultValue></optionType></optionDef><optionDef><label>ChecksumUseAllocInfo</label><summary>Use
        disk allocation info to help speed up the checksum process</summary><key>HBR.ChecksumUseAllocInfo</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ChecksumUseChecksumInfo</label><summary>Use
        disk checksum info to help speed up transfering valid blocks of data.</summary><key>HBR.ChecksumUseChecksumInfo</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ChecksumZoneSize</label><summary>Size
        in regions of one checksum zone for which allocation information will be cached</summary><key>HBR.ChecksumZoneSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>32</min><max>1048576</max><defaultValue>32768</defaultValue></optionType></optionDef><optionDef><label>CopySnapDiskMaxExtentCount</label><summary>Number
        of extents for a single snapshot disk that can be copied in parallel</summary><key>HBR.CopySnapDiskMaxExtentCount</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>16</defaultValue></optionType></optionDef><optionDef><label>CopySnapFidHashBuckets</label><summary>Number
        of hash buckets to use to track the snapshot disks open to copy to demand
        log.</summary><key>HBR.CopySnapFidHashBuckets</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1024</max><defaultValue>256</defaultValue></optionType></optionDef><optionDef><label>DemandlogCompletedHashBuckets</label><summary>Number
        of hash buckets to use to track extents that have been written to the demand
        log.</summary><key>HBR.DemandlogCompletedHashBuckets</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65536</max><defaultValue>16384</defaultValue></optionType></optionDef><optionDef><label>DemandlogExtentHashBuckets</label><summary>Number
        of hash buckets to use to track extents that haven&apos;t been read.</summary><key>HBR.DemandlogExtentHashBuckets</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65536</max><defaultValue>16384</defaultValue></optionType></optionDef><optionDef><label>DemandlogIoTimeoutSecs</label><summary>Timeout
        for IOs for demand log operations.</summary><key>HBR.DemandlogIoTimeoutSecs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000</max><defaultValue>120</defaultValue></optionType></optionDef><optionDef><label>DemandlogReadRetries</label><summary>Number
        of times to retry an internal read (for the demand log) before aborting the
        delta.</summary><key>HBR.DemandlogReadRetries</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000</max><defaultValue>20</defaultValue></optionType></optionDef><optionDef><label>DemandlogRetryDelayMs</label><summary>Delay
        in milliseconds for retrying a demand log write.</summary><key>HBR.DemandlogRetryDelayMs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100000</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>DemandlogTransferIoSize</label><summary>Size
        in blocks of a demandlog transfer read I/O</summary><key>HBR.DemandlogTransferIoSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>16</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>DemandlogTransferMaxCompletion</label><summary>Maximum
        number of demandlog chunks that are allowed in completion phase per disk</summary><key>HBR.DemandlogTransferMaxCompletion</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>512</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>DemandlogTransferMaxIo</label><summary>Maximum
        number of demandlog transfer I/O chunks issued in parallel</summary><key>HBR.DemandlogTransferMaxIo</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>DemandlogTransferMaxNetwork</label><summary>Maximum
        number of demandlog chunks transferred in parallel</summary><key>HBR.DemandlogTransferMaxNetwork</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4096</max><defaultValue>256</defaultValue></optionType></optionDef><optionDef><label>DemandlogTransferPerSlice</label><summary>Maximum
        number of demandlog chunks issued per slice</summary><key>HBR.DemandlogTransferPerSlice</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>16</defaultValue></optionType></optionDef><optionDef><label>DemandlogWriteRetries</label><summary>Number
        of times to retry a demand log write before aborting the delta.</summary><key>HBR.DemandlogWriteRetries</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000</max><defaultValue>20</defaultValue></optionType></optionDef><optionDef><label>DisconnectedEventDelayMs</label><summary>Time
        to wait (while attempting reconnection) before posting a &apos;no connection
        to VR server&apos; event</summary><key>HBR.DisconnectedEventDelayMs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>600000</max><defaultValue>60000</defaultValue></optionType></optionDef><optionDef><label>ErrThrottleChecksumIO</label><summary>Throttle
        Checksum I/O errors.</summary><key>HBR.ErrThrottleChecksumIO</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ErrThrottleDceRead</label><summary>Throttle
        DCE Read errors.</summary><key>HBR.ErrThrottleDceRead</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>BitmapAllocTimeoutMS</label><summary>A
        timeout in MS for how long we will wait to allocate a bitmap</summary><key>HBR.HbrBitmapAllocTimeoutMS</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10000</max><defaultValue>3000</defaultValue></optionType></optionDef><optionDef><label>BitmapVMMaxStorageGB</label><summary>An
        estimation of the maximum storage allocated per VM in gigabytes</summary><key>HBR.HbrBitmapVMMaxStorageGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>131072</max><defaultValue>65536</defaultValue></optionType></optionDef><optionDef><label>DemandLogIOPerVM</label><summary>Number
        of concurrent demand log copies per VM</summary><key>HBR.HbrDemandLogIOPerVM</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>HbrLowerExtentBreakTB</label><summary>Disks
        with capacity between the min extent break and this number of gigabytes will
        have the lower extent size.</summary><key>HBR.HbrLowerExtentBreakGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65536</max><defaultValue>8192</defaultValue></optionType></optionDef><optionDef><label>HbrLowerExtentSizeKB</label><summary>Lower
        extent size used for disks in kilobytes.</summary><key>HBR.HbrLowerExtentSizeKB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>16</defaultValue></optionType></optionDef><optionDef><label>HbrMaxExtentSizeKB</label><summary>Maximum
        extent size in kilobytes. Used for disks with capacity over the upper extent
        break.</summary><key>HBR.HbrMaxExtentSizeKB</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>HbrMaxGuestXferWhileDeltaMB</label><summary>Maximum
        single SCSI command transfer size (in megabytes) that will be tolerated while
        a delta is taking place.</summary><key>HBR.HbrMaxGuestXferWhileDeltaMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>256</min><max>3072</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>HbrMaxUnmapExtents</label><summary>Maximum
        expected number of extents for SCSI UNMAP commands.</summary><key>HBR.HbrMaxUnmapExtents</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100000</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>HbrMaxUnmapsInFlight</label><summary>Maximum
        expected number of SCSI UNMAP commands in flight on a single disk.</summary><key>HBR.HbrMaxUnmapsInFlight</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1048576</max><defaultValue>128</defaultValue></optionType></optionDef><optionDef><label>HbrMaxUpdateSizeKB</label><summary>Maximum
        size of a single network update in kilobytes.</summary><key>HBR.HbrMaxUpdateSizeKB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>64</min><max>128</max><defaultValue>128</defaultValue></optionType></optionDef><optionDef><label>HbrMinExtentBreakGB</label><summary>Disks
        with capacity under this number of gigabytes will have the min extent size.</summary><key>HBR.HbrMinExtentBreakGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65536</max><defaultValue>2048</defaultValue></optionType></optionDef><optionDef><label>HbrMinExtentSizeKB</label><summary>Minimum
        extent size used for disks in kilobytes.</summary><key>HBR.HbrMinExtentSizeKB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>HbrOptimizeFullSync</label><summary>Skip
        transfer of changed blocks during full sync to avoid sending them twice between
        the full sync and the subsequent delta.</summary><key>HBR.HbrOptimizeFullSync</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ResourceHeapPerVMSizeKB</label><summary>The
        additional amount of memory in KB per VM to add to the resource heap size</summary><key>HBR.HbrResourceHeapPerVMSizeKB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4096</max><defaultValue>128</defaultValue></optionType></optionDef><optionDef><label>ResourceHeapSizeMB</label><summary>A
        base value in MB for the size of the resource heap</summary><key>HBR.HbrResourceHeapSizeMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>2</min><max>256</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>ResourceHeapUtilization</label><summary>Expected
        usable percentage of the resource heap (minus overheads, fragmentation)</summary><key>HBR.HbrResourceHeapUtilization</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>200</max><defaultValue>95</defaultValue></optionType></optionDef><optionDef><label>HbrResourceMaxCompletionContexts</label><summary>The
        maximum number of resource contexts allowed in completion phase for all VMs.</summary><key>HBR.HbrResourceMaxCompletionContexts</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>16</min><max>16384</max><defaultValue>8192</defaultValue></optionType></optionDef><optionDef><label>HbrResourceMaxDiskContexts</label><summary>The
        maximum number of resource contexts allowed in disk phase for all VMs.</summary><key>HBR.HbrResourceMaxDiskContexts</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>16</min><max>8192</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>RuntimeHeapMaxBaseMB</label><summary>A
        base value in MB for the maximum size of the runtime heap</summary><key>HBR.HbrRuntimeHeapMaxBaseMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>RuntimeHeapMinBaseMB</label><summary>A
        base value in MB for the minimum size of the runtime heap</summary><key>HBR.HbrRuntimeHeapMinBaseMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>StaticHeapMaxBaseMB</label><summary>A
        base value in MB for the maximum size of the static heap</summary><key>HBR.HbrStaticHeapMaxBaseMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>3072</max><defaultValue>726</defaultValue></optionType></optionDef><optionDef><label>StaticHeapMinBaseMB</label><summary>A
        base value in MB for the minimum size of the static heap</summary><key>HBR.HbrStaticHeapMinBaseMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>HbrThrottleGenericErrResetTime</label><summary>Time
        in MS between the last logged generic HBR error and the throttle reset.</summary><key>HBR.HbrThrottleGenericErrResetTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>65536</max><defaultValue>16384</defaultValue></optionType></optionDef><optionDef><label>HbrUpperExtentBreakTB</label><summary>Disks
        with capacity between the lower extent break and this number of gigabytes
        will have the upper extent size.</summary><key>HBR.HbrUpperExtentBreakGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65536</max><defaultValue>32768</defaultValue></optionType></optionDef><optionDef><label>HbrUpperExtentSizeKB</label><summary>Upper
        extent size used for disks in kilobytes.</summary><key>HBR.HbrUpperExtentSizeKB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>HelperQueueMaxRequests</label><summary>Maximum
        number of helper requests the helper queue can support</summary><key>HBR.HelperQueueMaxRequests</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>128</min><max>16384</max><defaultValue>8192</defaultValue></optionType></optionDef><optionDef><label>HelperQueueMaxWorlds</label><summary>Maximum
        number of world processing helper queue requests</summary><key>HBR.HelperQueueMaxWorlds</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>16</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>LocalReadIoTimeoutSecs</label><summary>Timeout
        for IOs for dce local reads.</summary><key>HBR.LocalReadIoTimeoutSecs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000</max><defaultValue>120</defaultValue></optionType></optionDef><optionDef><label>MigrateFlushTimerSecs</label><summary>Time
        between attempts to flush the state to the persistent file during migration.</summary><key>HBR.MigrateFlushTimerSecs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>600</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>NetworkUseCubic</label><summary>Use
        the cubic TCP congestion algorithm for HBR sockets</summary><key>HBR.NetworkUseCubic</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetworkerRecvHashBuckets</label><summary>Number
        of hash buckets to use to track commands waiting to receive a response.</summary><key>HBR.NetworkerRecvHashBuckets</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65536</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>OpportunisticBlockListSize</label><summary>Number
        of blocks to keep around in a LRU list for opportunistic replication</summary><key>HBR.OpportunisticBlockListSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>500</min><max>10000</max><defaultValue>4000</defaultValue></optionType></optionDef><optionDef><label>ProgressReportIntervalMs</label><summary>Interval
        between per-disk progress updates to hostd</summary><key>HBR.ProgressReportIntervalMs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1000</min><max>600000</max><defaultValue>5000</defaultValue></optionType></optionDef><optionDef><label>PsfIoTimeoutSecs</label><summary>Timeout
        for IOs for persistent state file/demand log metadata.</summary><key>HBR.PsfIoTimeoutSecs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000</max><defaultValue>300</defaultValue></optionType></optionDef><optionDef><label>ReconnectFailureDelaySecs</label><summary>Additional
        delay in seconds added per reconnection failure for a session</summary><key>HBR.ReconnectFailureDelaySecs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>300</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>ReconnectMaxDelaySecs</label><summary>Maximum
        delay in seconds between reconnection attempts for a session</summary><key>HBR.ReconnectMaxDelaySecs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>30</min><max>300</max><defaultValue>90</defaultValue></optionType></optionDef><optionDef><label>ResourceServerHashBuckets</label><summary>Number
        of hash buckets to use to track remote HBR servers.</summary><key>HBR.ResourceServerHashBuckets</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65536</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>RetryMaxDelaySecs</label><summary>Maximum
        server request retry delay in seconds (for non-fatal errors)</summary><key>HBR.RetryMaxDelaySecs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>120</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>RetryMinDelaySecs</label><summary>Minimum
        server request retry delay in seconds (for non-fatal errors)</summary><key>HBR.RetryMinDelaySecs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>60</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>SyncTransferRetrySleepSecs</label><summary>Time
        in seconds to wait after a failure before retrying a sync operation.</summary><key>HBR.SyncTransferRetrySleepSecs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>600</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>TransferDiskMaxCompletion</label><summary>Maximum
        number of blocks that are allowed in the completion phase per disk</summary><key>HBR.TransferDiskMaxCompletion</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>512</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>TransferDiskMaxIo</label><summary>Maximum
        number of blocks that will be read in parallel</summary><key>HBR.TransferDiskMaxIo</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>TransferDiskMaxNetwork</label><summary>Maximum
        number of blocks that will be transferred in parallel</summary><key>HBR.TransferDiskMaxNetwork</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4096</max><defaultValue>2048</defaultValue></optionType></optionDef><optionDef><label>TransferDiskPerSlice</label><summary>Maximum
        number of blocks that will be read in each slice</summary><key>HBR.TransferDiskPerSlice</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>16</defaultValue></optionType></optionDef><optionDef><label>TransferFileExtentSize</label><summary>Chunk
        size for config file transfers</summary><key>HBR.TransferFileExtentSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>512</min><max>1048576</max><defaultValue>8192</defaultValue></optionType></optionDef><optionDef><label>TransferMaxContExtents</label><summary>Maximum
        number of contiguous extents that will be coalesced into a single update</summary><key>HBR.TransferMaxContExtents</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>16</defaultValue></optionType></optionDef><optionDef><label>UnmapOptimization</label><summary>Use
        optimizations for SCSI Unmap.</summary><key>HBR.UnmapOptimization</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>WireChecksum</label><summary>Use
        wire checksums</summary><key>HBR.WireChecksum</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>XferBitmapCheckIntervalSecs</label><summary>Time
        in seconds to wait before checking the transfer bitmap for availability of
        dirty blocks.</summary><key>HBR.XferBitmapCheckIntervalSecs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>600</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>HppPReservationCmdRetryTime</label><summary>Time
        (in secs) to retry on transient errors for Persistent reservation commands
        for MSCS CAB configs</summary><key>Hpp.HppPReservationCmdRetryTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>300</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CloseIscsiConnOnTaskMgmtFailure</label><summary>Close
        iSCSI connection on task management failure</summary><key>ISCSI.CloseIscsiConnOnTaskMgmtFailure</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Maximum
        I/O Size in KB</label><summary>The maximum I/O size of Software iSCSI in KB.
        Requires rebooting the host.</summary><key>ISCSI.MaxIoSizeKB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>128</min><max>512</max><defaultValue>128</defaultValue></optionType></optionDef><optionDef><label>SocketRcvBufLenKB</label><summary>Socket
        receive buffer length in KB for iSCSI connections</summary><key>ISCSI.SocketRcvBufLenKB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>256</min><max>6144</max><defaultValue>256</defaultValue></optionType></optionDef><optionDef><label>SocketSndBufLenKB</label><summary>Socket
        send buffer length in KB for iSCSI connections</summary><key>ISCSI.SocketSndBufLenKB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>600</min><max>6144</max><defaultValue>600</defaultValue></optionType></optionDef><optionDef><label>Best
        virtual CPU routing</label><summary>IRQ best virtual CPU routing</summary><key>Irq.BestVcpuRouting</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>IRQActionAffinityWeight</label><summary>relative
        weight for action-vcpu affinity</summary><key>Irq.IRQActionAffinityWeight</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>IRQAvoidExclusive</label><summary>Avoid
        placing interrupts on physical CPUs with exclusive affinity set.</summary><key>Irq.IRQAvoidExclusive</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>IRQBHConflictWeight</label><summary>relative
        weight for irq/BH conflict</summary><key>Irq.IRQBHConflictWeight</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>IRQ
        rebalance period</label><summary>Time in milliseconds between attempts to
        rebalance interrupts</summary><key>Irq.IRQRebalancePeriod</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>20000</max><defaultValue>50</defaultValue></optionType></optionDef><optionDef><label>IRQVcpuConflictWeight</label><summary>relative
        weight for irq/vcpu conflict</summary><key>Irq.IRQVcpuConflictWeight</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>10</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>LPageAlwaysTryForNPT</label><summary>Enable
        always try to alloc large page for NPT</summary><key>LPage.LPageAlwaysTryForNPT</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>LPageDefragEnable</label><summary>Enable
        large page defragmentation</summary><key>LPage.LPageDefragEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>LPageMarkLowNodes</label><summary>Enable
        marking of nodes with low large pages free</summary><key>LPage.LPageMarkLowNodes</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>MaxSharedPages</label><summary>Maximum
        number of shared pages in a 2MB region that may be broken to back the region
        with a large page</summary><key>LPage.MaxSharedPages</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>512</max><defaultValue>510</defaultValue></optionType></optionDef><optionDef><label>MaxSwappedPagesInitVal</label><summary>Initial
        value for maximum number of swapped pages in a 2MB region that may be read
        to back the region with a large page</summary><key>LPage.MaxSwappedPagesInitVal</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>512</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>freePagesThresholdForRemote</label><summary>Maximum
        number of free small pages on local nodes to allow remote lpages</summary><key>LPage.freePagesThresholdForRemote</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>2048</defaultValue></optionType></optionDef><optionDef><label>blkAttrCacheSizePercent</label><summary>BlkAttr
        cache size percent growth rate with peak value (100%) caching almost all blkattrs
        for the diskgroup.</summary><key>LSOM.blkAttrCacheSizePercent</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>enableLargeWb</label><summary>Enable
        support for large write buffer for new disk groups</summary><key>LSOM.enableLargeWb</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>lsomDeviceNeedsRepairCount</label><summary>Number
        of times the device can be repaired for transient IO errors.</summary><key>LSOM.lsomDeviceNeedsRepairCount</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>64</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>lsomEnableFullRebuildAvoidance</label><summary>Enable
        LSOM full rebuild avoidance for transient IO errors. (0:disabled 1:enabled)</summary><key>LSOM.lsomEnableFullRebuildAvoidance</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>lsomEnableRebuildOnLSE</label><summary>Remediate
        the device error by automatically re-creating diskgroup on encountering Medium
        Error on the device</summary><key>LSOM.lsomEnableRebuildOnLSE</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>lsomPlogEnableDeadmanTimer</label><summary>Configuration
        if an I/O is stuck for a long time. (0:No Action 1:PSOD 2:Disk offline)</summary><key>LSOM.lsomPlogEnableDeadmanTimer</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>lsomRebuildOnEvacFailure</label><summary>Remediate
        the device error by automatically re-creating diskgroup on encountering Unrecoverable
        Read Error on the device even if evacuation of the device failed</summary><key>LSOM.lsomRebuildOnEvacFailure</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Generate
        live dump</label><summary>Create a live dump if a Quick Boot attempt fails.</summary><key>LoadESX.generateLiveDump</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>AllocGuestLargePage</label><summary>Enable
        large page backing of guest memory</summary><key>Mem.AllocGuestLargePage</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Vmmemctl
        maximum percent</label><summary>Vmmemctl limit as percentage of virtual machine
        maximum size</summary><key>Mem.CtlMaxPercent</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>99</max><defaultValue>65</defaultValue></optionType></optionDef><optionDef><label>Idle
        tax</label><summary>Idle memory tax rate</summary><key>Mem.IdleTax</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>99</max><defaultValue>75</defaultValue></optionType></optionDef><optionDef><label>IdleTaxType</label><summary>idle
        tax type. 0=flat, 1=variable</summary><key>Mem.IdleTaxType</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>MemCBTBitmapMaxAlloc</label><summary>Maximum
        memory in MB to allocate for CBT bitmaps.</summary><key>Mem.MemCBTBitmapMaxAlloc</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>256</min><max>2048</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>MemDefragClientsPerDir</label><summary>Clients
        that are allowed to defrags per directory.</summary><key>Mem.MemDefragClientsPerDir</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>512</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>MemEagerZero</label><summary>Zero
        out userworld and guest memory pages immediately after free</summary><key>Mem.MemEagerZero</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>MemMaxResvThreshold</label><summary>Max
        memory reservartion threshold used for indicating health state</summary><key>Mem.MemMaxResvThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>16384</defaultValue></optionType></optionDef><optionDef><label>MemMinFreePct</label><summary>Percentage
        of host memory to reserve for accelerating memory allocations when free memory
        is low, 0 for automatic</summary><key>Mem.MemMinFreePct</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>50</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>MemZipEnable</label><summary>Enable
        the memory compression cache</summary><key>Mem.MemZipEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>MemZipMaxAllocPct</label><summary>Sets
        the maximum size for the compression cache as a percentage of allocated VM
        memory size</summary><key>Mem.MemZipMaxAllocPct</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>5</min><max>100</max><defaultValue>50</defaultValue></optionType></optionDef><optionDef><label>MemZipMaxPct</label><summary>Sets
        the maximum target size for the compression cache as a percentage of VM size</summary><key>Mem.MemZipMaxPct</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>5</min><max>100</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>ReallocPolicy</label><summary>Memory
        scheduling policy. 0: default, 1: GFMS, 2: Legacy</summary><key>Mem.ReallocPolicy</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SampleActivePctMin</label><summary>lower
        bound for sampled active memory</summary><key>Mem.SampleActivePctMin</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>SampleDirtiedPctMin</label><summary>lower
        bound for sampled active dirtied memory</summary><key>Mem.SampleDirtiedPctMin</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Share
        service console buffer size</label><summary>Specify number of MPNs to be used
        by COW P2M buffer</summary><key>Mem.ShareCOSBufSize</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>2</min><max>32</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>Share
        force salting</label><summary>PShare salting lets you limit the transparent
        page sharing only between a set of VMs. PShare salting is controlled by the
        VMX sched.mem.pshare.salt option. The PShare salting option has three states:
        0 - no salting or isolation between VMs; 1 - VMs that have the sched.mem.pshare.salt
        option set are able to share memory with VMs with the same salt; 2 - VMs that
        do not have the sched.mem.pshare.salt option set cannot share memory with
        any other VM, page sharing is possible only inside the VM. If the  sched.mem.pshare.salt
        is present but empty, the VM gets its own unique salt.</summary><key>Mem.ShareForceSalting</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>ShareRateMax</label><summary>per-VM
        upper limit on pshare scan rate in pages/sec. (0 to disable)</summary><key>Mem.ShareRateMax</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>32768</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>ShareScanGHz</label><summary>max
        page scan rate in MB/sec per GHz of host CPU, 0 to disable</summary><key>Mem.ShareScanGHz</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>32</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>ShareScanTime</label><summary>desired
        time in minutes to scan entire VM</summary><key>Mem.ShareScanTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>600</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>VMOverheadGrowthLimit</label><summary>Default
        limit (in MB) on VM overhead memory growth. Valid values are 0 to maximum
        memory supported, and 0xffffffff which means &quot;unlimited&quot;.</summary><key>Mem.VMOverheadGrowthLimit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>4294967295</defaultValue></optionType></optionDef><optionDef><label>BindToVmknic</label><summary>Bind
        the vMotion socket to a specific vmknic.  0 for never, 1 to bind only with
        FT, 2 to bind with FT or for multi-vmknic support, 3 to always bind</summary><key>Migrate.BindToVmknic</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>CptCacheMaxSizeMB</label><summary>Maximum
        checkpoint cache size in MB</summary><key>Migrate.CptCacheMaxSizeMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>8</min><max>1024</max><defaultValue>544</defaultValue></optionType></optionDef><optionDef><label>DebugChecksumMismatch</label><summary>Debug
        checksum mismatch.</summary><key>Migrate.DebugChecksumMismatch</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>DetectZeroPages</label><summary>Whether
        vMotion should detect zero pages during page transmission</summary><key>Migrate.DetectZeroPages</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Enabled</label><summary>Enable
        hot migration support</summary><key>Migrate.Enabled</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>GetPageSysAlertThresholdMS</label><summary>Threshold
        in milliseconds for the source host to prepare a page for transmission above
        which a SysAlert is triggered</summary><key>Migrate.GetPageSysAlertThresholdMS</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1000</min><max>100000</max><defaultValue>10000</defaultValue></optionType></optionDef><optionDef><label>LowBandwidthSysAlertThreshold</label><summary>Threshold
        in KB/s for VMotion bandwidth below which a SysAlert is triggered</summary><key>Migrate.LowBandwidthSysAlertThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100000</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>LowMemWaitSysAlertThresholdMS</label><summary>Threshold
        in milliseconds for the dest host to leave the low-memory state above which
        a SysAlert is triggered</summary><key>Migrate.LowMemWaitSysAlertThresholdMS</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1000</min><max>100000</max><defaultValue>10000</defaultValue></optionType></optionDef><optionDef><label>MigrateBitmapEncodingType</label><summary>Encoding
        type for changed bitmap transfer</summary><key>Migrate.MigrateBitmapEncodingType</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>MigrateCpuMinPctDefault</label><summary>Desired
        default shared CPU reservation (in %) for VMotions</summary><key>Migrate.MigrateCpuMinPctDefault</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>400</max><defaultValue>30</defaultValue></optionType></optionDef><optionDef><label>MigrateCpuPctPerGb</label><summary>Desired
        per Gbit shared CPU reservation (in %) for VMotions</summary><key>Migrate.MigrateCpuPctPerGb</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>MigrateCpuSharesHighPriority</label><summary>CPU
        shares for a high priority VMotion</summary><key>Migrate.MigrateCpuSharesHighPriority</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>100000</max><defaultValue>60000</defaultValue></optionType></optionDef><optionDef><label>MigrateCpuSharesRegular</label><summary>CPU
        shares for a regular VMotion</summary><key>Migrate.MigrateCpuSharesRegular</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>100000</max><defaultValue>30000</defaultValue></optionType></optionDef><optionDef><label>MigrateStreamHelperBwUtilMax</label><summary>Maximum
        network bandwidth (Mbps) that each stream helper can saturate</summary><key>Migrate.MigrateStreamHelperBwUtilMax</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>15000</max><defaultValue>15000</defaultValue></optionType></optionDef><optionDef><label>MonActionWaitSysAlertThresholdMS</label><summary>Threshold
        in milliseconds for the monitor to process a pre-copy action after which a
        SysAlert is triggered</summary><key>Migrate.MonActionWaitSysAlertThresholdMS</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>100000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>NetExpectedLineRateMBps</label><summary>Expected
        network throughput, in MBps, for bandwidth-delay calculation</summary><key>Migrate.NetExpectedLineRateMBps</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>2000</max><defaultValue>133</defaultValue></optionType></optionDef><optionDef><label>NetLatencyModeThreshold</label><summary>Lowest
        possible round-trip time, in ms, before vMotion must operate in latency-aware
        mode.</summary><key>Migrate.NetLatencyModeThreshold</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1000</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>Net
        time-out</label><summary>Timeout in seconds for migration network operations</summary><key>Migrate.NetTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>3600</max><defaultValue>20</defaultValue></optionType></optionDef><optionDef><label>NFC
        net time-out</label><summary>Time-out in seconds for NFC migration network
        operations</summary><key>Migrate.NfcNetTimeout</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>3600</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>OutstandingReadKBMax</label><summary>Maximum
        socket-backed mbuf bytes vMotion will allow to be outstanding while drained
        concurrently with reads, 0 for unlimited</summary><key>Migrate.OutstandingReadKBMax</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2048</max><defaultValue>128</defaultValue></optionType></optionDef><optionDef><label>PanicOnChecksumMismatch</label><summary>1
        for world panic, 2 for vmkernel panic</summary><key>Migrate.PanicOnChecksumMismatch</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>PreCopyCountDelay</label><summary>Delay
        preCopy next action every n action posts</summary><key>Migrate.PreCopyCountDelay</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>PreCopyMinProgressPerc</label><summary>Minimum
        allowed transmit to dirty page ratio per pre-copy iteration</summary><key>Migrate.PreCopyMinProgressPerc</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1000</max><defaultValue>130</defaultValue></optionType></optionDef><optionDef><label>PreCopyPagesPerSend</label><summary>Maximum
        number of pages to send per precopy transmit</summary><key>Migrate.PreCopyPagesPerSend</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1024</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>PreCopySwitchoverTimeGoal</label><summary>Goal
        time in milliseconds to send changed pages after pre-copy completes</summary><key>Migrate.PreCopySwitchoverTimeGoal</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>100000</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>PreallocLPages</label><summary>Attempt
        to prealloc destination pages via large page allocation</summary><key>Migrate.PreallocLPages</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ProhibitInstantClone</label><summary>Prohibit
        instant clone from a VM</summary><key>Migrate.ProhibitInstantClone</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>RcvBufSize</label><summary>TCP
        receive buffer size for the destination</summary><key>Migrate.RcvBufSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>65536</min><max>1000000</max><defaultValue>562540</defaultValue></optionType></optionDef><optionDef><label>SdpsDynamicDelaySec</label><summary>Delay,
        in seconds, between polling when considering enabling SDPS in the first preCopy
        iteration.</summary><key>Migrate.SdpsDynamicDelaySec</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10000</max><defaultValue>30</defaultValue></optionType></optionDef><optionDef><label>SdpsEnabled</label><summary>Stuns
        VMotion source in small increments during precopy, 0=disabled, 1=always enabled,
        2=dynamic</summary><key>Migrate.SdpsEnabled</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>SdpsTargetRate</label><summary>Percent
        by which transmit should be made to exceed dirty</summary><key>Migrate.SdpsTargetRate</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>10000</max><defaultValue>500</defaultValue></optionType></optionDef><optionDef><label>SndBufSize</label><summary>TCP
        send buffer size for the source</summary><key>Migrate.SndBufSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>65536</min><max>1000000</max><defaultValue>562540</defaultValue></optionType></optionDef><optionDef><label>TcpTsoDeferTx</label><summary>Use
        TCP tso defer optimization for transmit</summary><key>Migrate.TcpTsoDeferTx</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>TryToUseDefaultHeap</label><summary>Attempt
        use the default migration heap when beginning new migrations</summary><key>Migrate.TryToUseDefaultHeap</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VASpaceReserveCount</label><summary>Number
        of migrations to reserve virtual address space for at module load time</summary><key>Migrate.VASpaceReserveCount</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>2</min><max>64</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>VASpaceReserveSize</label><summary>Megabytes
        of virtual address space to reserve per migration at module load time</summary><key>Migrate.VASpaceReserveSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>64</min><max>4096</max><defaultValue>4096</defaultValue></optionType></optionDef><optionDef><label>VMotionLatencySensitivity</label><summary>Make
        vMotion helper worlds latency sensitive, avoid transmit delays.</summary><key>Migrate.VMotionLatencySensitivity</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VMotionMaxStreamHelpers</label><summary>Maximum
        number of helpers to allocate for VMotion streams when using Autoscale</summary><key>Migrate.VMotionMaxStreamHelpers</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>112</max><defaultValue>112</defaultValue></optionType></optionDef><optionDef><label>VMotionResolveSwapType</label><summary>Attempt
        to resolve swap type during VMotion initialization</summary><key>Migrate.VMotionResolveSwapType</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VMotionStreamHelpers</label><summary>Number
        of helpers to allocate for VMotion streams, 0 to dynamically allocate atleast
        one per stream IP</summary><key>Migrate.VMotionStreamHelpers</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>112</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Vmknic</label><summary>vmknic
        for vMotion vmkernel VNIC</summary><key>Migrate.Vmknic</key><optionType xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>APD
        Handling Enable</label><summary>Enable Storage APD Handling.</summary><key>Misc.APDHandlingEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>APD
        Timeout</label><summary>Number of seconds a device can be in APD before failing
        User World I/O.</summary><key>Misc.APDTimeout</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>20</min><max>999999</max><defaultValue>140</defaultValue></optionType></optionDef><optionDef><label>BH
        time-out</label><summary>Time-out for bottom-half handlers in milliseconds</summary><key>Misc.BHTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>5000</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Blue
        screen time-out</label><summary>Time-out in seconds. Set to 0 for no time-out.</summary><key>Misc.BlueScreenTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>65535</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>ConsolePort</label><summary>Name
        of serial port to use for visor console (COM1, COM2)</summary><key>Misc.ConsolePort</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>none</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>DebugLogToSerial</label><summary>Send
        vmkernel LOG messages to the serial port</summary><key>Misc.DebugLogToSerial</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>DebugShellPort</label><summary>Name
        of serial port to use for debug shell (COM1, COM2)</summary><key>Misc.DebugShellPort</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>none</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>DefaultHardwareVersion</label><summary>Default
        virtual machine compatibility</summary><key>Misc.DefaultHardwareVersion</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>DegradedPathEvalTime</label><summary>Evaluation
        time (in secs) for paths to mark the path as degraded</summary><key>Misc.DegradedPathEvalTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>500</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>DegradedPathReEvalInterval</label><summary>Re-evaluation
        interval (in secs) for the degraded paths</summary><key>Misc.DegradedPathReEvalInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>60</min><max>600</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>GDBPort</label><summary>Name
        of serial port to use for GDB debugging (COM1, COM2)</summary><key>Misc.GDBPort</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>none</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>GuestLibAllowHostInfo</label><summary>Allow
        guest to read host-level metrics</summary><key>Misc.GuestLibAllowHostInfo</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>HeapMgrGuardPages</label><summary>Number
        of guard pages to insert between heap VA regions</summary><key>Misc.HeapMgrGuardPages</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>512</max><defaultValue>512</defaultValue></optionType></optionDef><optionDef><label>HeapPanicDestroyNonEmpty</label><summary>Panic
        when a non-empty heap gets destroyed</summary><key>Misc.HeapPanicDestroyNonEmpty</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Heartbeat
        interval</label><summary>Interval in msec to check CPU lockups</summary><key>Misc.HeartbeatInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>86400000</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>Heartbeat
        Panic IPI Count</label><summary>Number of IPIs sent to target pcpu prior to
        invoking NMI PSOD</summary><key>Misc.HeartbeatPanicIpiCount</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>5</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>Panic
        time-out</label><summary>Interval in seconds after which to panic if no heartbeats
        received</summary><key>Misc.HeartbeatPanicTimeout</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>86400</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>Heartbeat
        time-out</label><summary>Time-out for sending NMI to the locked CPU</summary><key>Misc.HeartbeatTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>86400</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>HordeEnabled</label><summary>Enables
        horde mode</summary><key>Misc.HordeEnabled</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Misc.HostName</label><summary>Host
        name</summary><key>Misc.HostName</key><optionType xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>localhost</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>HppDegradedPathThresholdPer</label><summary>Percentage
        threshold of transient errors to mark path as degraded</summary><key>Misc.HppDegradedPathThresholdPer</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>20</defaultValue></optionType></optionDef><optionDef><label>HppManageDegradedPaths</label><summary>Choose
        paths with less errors for I/Os during transient issues on HPP claimed paths</summary><key>Misc.HppManageDegradedPaths</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>HwclockPeriodicSync</label><summary>Sync
        the hardware clock periodically to match the current system time</summary><key>Misc.HwclockPeriodicSync</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>HyperClockAllowSystemTimeAux</label><summary>Allow
        auxiliary input to system time HyperClock</summary><key>Misc.HyperClockAllowSystemTimeAux</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>I/O
        Filter watchdog timeout</label><summary>Timeout for the I/O filter watchdog
        in seconds. 0 means the watchdog is disabled. 120 seconds is the minimum timeout
        value.</summary><key>Misc.IoFilterWatchdogTimeout</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3600</max><defaultValue>120</defaultValue></optionType></optionDef><optionDef><label>LogDumpShutdownTimeout</label><summary>The
        maximum amount of time during shutdown that the kernel logger will spend dumping
        logs from the log buffer</summary><key>Misc.LogDumpShutdownTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1800</max><defaultValue>180</defaultValue></optionType></optionDef><optionDef><label>LogPort</label><summary>Name
        of serial port to use for logging (COM1, COM2)</summary><key>Misc.LogPort</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>none</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>LogTimestampUptime</label><summary>Use
        uptime rather than UTC for vmkernel log</summary><key>Misc.LogTimestampUptime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Log
        to serial</label><summary>Send VMkernel log messages to the serial port</summary><key>Misc.LogToSerial</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Log
        world prefix</label><summary>Include running world on every log statement</summary><key>Misc.LogWldPrefix</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>MCEMonitorInterval</label><summary>Interval[0
        - 0x7fffffff ms] to poll for Machine Check Errors(0=never)</summary><key>Misc.MCEMonitorInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2147483647</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>Maximum
        Hardware Version</label><summary>Maximum virtual machine compatibility</summary><key>Misc.MaximumHardwareVersion</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>Minimal
        panic</label><summary>Do not attempt core dump after purple screen</summary><key>Misc.MinimalPanic</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NMILint1IntAction</label><summary>Override
        how a hardware generated NMI is handled: 0=default (panic, unless changed
        by boot-time option), 1=enter debugger, 2=panic, 3=log and ignore (not recommended),
        4=log and ignore if undiagnosed</summary><key>Misc.NMILint1IntAction</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NmpDegradedPathThresholdPer</label><summary>Percentage
        threshold of transient errors to mark path as degraded</summary><key>Misc.NmpDegradedPathThresholdPer</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>20</defaultValue></optionType></optionDef><optionDef><label>NmpManageDegradedPaths</label><summary>Choose
        paths with less errors for I/Os during transient issues on NMP claimed paths</summary><key>Misc.NmpManageDegradedPaths</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>PSPDeactivateFlakyPath</label><summary>Deactivate
        flaky path if IOs are failing with HOST ERROR</summary><key>Misc.PSPDeactivateFlakyPath</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Panic
        Logs to serial</label><summary>Send Panic log messages to the serial port</summary><key>Misc.PanicLogToSerial</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Power
        button</label><summary>Action to take on a momentary press of the soft power
        button (0=ignore, 1=request graceful system shutdown and power-off)</summary><key>Misc.PowerButton</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Power-off
        enable</label><summary>Action to take on system power-off request (0=halt
        only, 1=power off)</summary><key>Misc.PowerOffEnable</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>PreferredHostName</label><summary>Preferred
        Host name</summary><key>Misc.PreferredHostName</key><optionType xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>Reboot
        method</label><summary>Preferred reboot method (any, psci, acpi, rcr_hard,
        kb, ps2, uefi, or rcr_power)</summary><key>Misc.RebootMethod</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>any</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>SIOControlFlag1</label><summary>Storage
        I/O Control Internal Flag</summary><key>Misc.SIOControlFlag1</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2147483647</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SIOControlFlag2</label><summary>Storage
        I/O Control Internal Flag</summary><key>Misc.SIOControlFlag2</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2147483647</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SIOControlLoglevel</label><summary>Storage
        I/O Control Log Level</summary><key>Misc.SIOControlLoglevel</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>7</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SIOControlOptions</label><summary>Storage
        I/O Control Options</summary><key>Misc.SIOControlOptions</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>ScreenSaverDelay</label><summary>Delay
        in minutes before screensaver kicks in</summary><key>Misc.ScreenSaverDelay</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>60</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SevAllowDebugging</label><summary>Allow
        a SEV guest to enable the debug policy.</summary><key>Misc.SevAllowDebugging</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>ShaperStatsEnabled</label><summary>Enable
        stats in shaper module</summary><key>Misc.ShaperStatsEnabled</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ShellPort</label><summary>Name
        of serial port to use for visor shell (COM1, COM2)</summary><key>Misc.ShellPort</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>none</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>TestNativeFCPaeCapable</label><summary>native_fc
        test module is pae capable</summary><key>Misc.TestNativeFCPaeCapable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>TimerTolerance</label><summary>Default
        timer lateness tolerance in microseconds</summary><key>Misc.TimerTolerance</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>1000000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>ForceBPB</label><summary>Force
        use of BPB.</summary><key>Misc.forceBPB</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>ForceMPTI</label><summary>Force
        use of Monitor Page Table Isolation.</summary><key>Misc.forceMPTI</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>vmknvmeCwYield</label><summary>Yield
        every n command in NVMe completion world</summary><key>Misc.vmknvmeCwYield</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VmmDisableL1DFlush</label><summary>Disable
        L1D flush on VM entry</summary><key>Misc.vmmDisableL1DFlush</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>vsanWitnessVirtualAppliance</label><summary>Indicates
        a vSAN witness host running in a Virtual Appliance. VM services (create/register/power
        on) are blocked</summary><key>Misc.vsanWitnessVirtualAppliance</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>DatastoreNamespaceManager
        Timeout</label><summary>Timeout for DatastoreNamespaceManager operations in
        milliseconds</summary><key>Misc.DsNsMgrTimeout</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10000</min><max>1800000</max><defaultValue>1200000</defaultValue></optionType></optionDef><optionDef><label>Misc.HostAgentUpdateLevel</label><summary>The
        update level of Host Agent.</summary><key>Misc.HostAgentUpdateLevel</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>true</valueIsReadonly><defaultValue></defaultValue></optionType></optionDef><optionDef><label>VM
        MetadataManager Timeout</label><summary>Timeout for VM MetadataManager operations
        in milliseconds</summary><key>Misc.MetadataUpdateTimeoutMsec</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>600000</max><defaultValue>30000</defaultValue></optionType></optionDef><optionDef><label>APD
        start count</label><summary>Number of sequential heartbeat failures after
        which APD start event is triggered</summary><key>NFS.ApdStartCount</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>5</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>Disk
        file lock update frequency</label><summary>Time (in seconds) between updates
        to a disk lock file</summary><key>NFS.DiskFileLockUpdateFreq</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>8</min><max>3600</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>Heartbeat
        delta</label><summary>Time in seconds since the last successful update before
        a heartbeat is sent</summary><key>NFS.HeartbeatDelta</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>3</min><max>30</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>Heartbeat
        frequency</label><summary>Time in seconds between heartbeats</summary><key>NFS.HeartbeatFrequency</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>5</min><max>86400</max><defaultValue>12</defaultValue></optionType></optionDef><optionDef><label>Maximum
        heartbeat failures</label><summary>Number of sequential failures before a
        volume is marked down</summary><key>NFS.HeartbeatMaxFailures</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>6</min><max>10</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>Heartbeat
        time-out</label><summary>Time in seconds before an outstanding heartbeat is
        stopped</summary><key>NFS.HeartbeatTimeout</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>3</min><max>30</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>LockBreakTimeout</label><summary>Time
        (in seconds) to wait to check for expired races when breaking lock</summary><key>NFS.LockBreakTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3600</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>Maximum
        number of lock renew failures</label><summary>Number of update failures before
        a disk file lock is declared stale</summary><key>NFS.LockRenewMaxFailureNumber</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>100</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>LockSWMRTimeout</label><summary>Time
        (in seconds) to wait to check for expired races when acquiring SWMR lock</summary><key>NFS.LockSWMRTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3600</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>LockSharedTimeout</label><summary>Time
        (in seconds) to wait to check for expired races when sharing (read) lock</summary><key>NFS.LockSharedTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3600</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>LockUpdateTimeout</label><summary>Time
        (in seconds) before we abort an outstanding lock update</summary><key>NFS.LockUpdateTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>8</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>LogNfsStat3</label><summary>Log
        nfsstat3 code</summary><key>NFS.LogNfsStat3</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>MaxQueueDepth</label><summary>Maximum
        per-Volume queue depth</summary><key>NFS.MaxQueueDepth</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4294967295</max><defaultValue>4294967295</defaultValue></optionType></optionDef><optionDef><label>Maximum
        NFS v3 volumes count</label><summary>Maximum number of mounted NFS v3 volumes</summary><key>NFS.MaxVolumes</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>8</min><max>256</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>MountTimeout</label><summary>Mount
        timeout in seconds</summary><key>NFS.MountTimeout</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>3</min><max>60</max><defaultValue>30</defaultValue></optionType></optionDef><optionDef><label>NFSMaxOutstandingIOs</label><summary>Maximum
        number of NFSv3 outstanding IOs on the host</summary><key>NFS.NFSMaxOutstandingIOs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>32</min><max>131072</max><defaultValue>65536</defaultValue></optionType></optionDef><optionDef><label>Socket
        receive buffer size</label><summary>Default size of socket receive buffer
        (KB)</summary><key>NFS.ReceiveBufferSize</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>64</min><max>5120</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>Socket
        send buffer size</label><summary>Default size of socket send buffer (KB)</summary><key>NFS.SendBufferSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>32</min><max>5120</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>SyncRetries</label><summary>Number
        of retries before synchronous IO fails (10 seconds per retry)</summary><key>NFS.SyncRetries</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>3</min><max>360</max><defaultValue>25</defaultValue></optionType></optionDef><optionDef><label>Remount
        volume frequency</label><summary>Time in seconds before attempting to remount
        a volume</summary><key>NFS.VolumeRemountFrequency</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>30</min><max>3600</max><defaultValue>30</defaultValue></optionType></optionDef><optionDef><label>EOSDelay</label><summary>Request
        EOS safety delay in seconds</summary><key>NFS41.EOSDelay</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>90</max><defaultValue>30</defaultValue></optionType></optionDef><optionDef><label>IOTaskRetry</label><summary>Synchronous
        I/O task number of retries</summary><key>NFS41.IOTaskRetry</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>100</max><defaultValue>25</defaultValue></optionType></optionDef><optionDef><label>MaxQueueDepth</label><summary>Maximum
        per-Volume queue depth</summary><key>NFS41.MaxQueueDepth</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4294967295</max><defaultValue>4294967295</defaultValue></optionType></optionDef><optionDef><label>MaxRead</label><summary>Maximum
        read transfer size in bytes (use the smaller of this value and the server
        advertised value)</summary><key>NFS41.MaxRead</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>256</min><max>4294967295</max><defaultValue>4294967295</defaultValue></optionType></optionDef><optionDef><label>Maximum
        NFS v4.1 volumes count</label><summary>Maximum number of mounted NFS v4.1
        volumes</summary><key>NFS41.MaxVolumes</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>8</min><max>256</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>MaxWrite</label><summary>Maximum
        write transfer size in bytes (use the smaller of this value and the server
        advertised value)</summary><key>NFS41.MaxWrite</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>256</min><max>4294967295</max><defaultValue>4294967295</defaultValue></optionType></optionDef><optionDef><label>MountTimeout</label><summary>Mount
        timeout in seconds</summary><key>NFS41.MountTimeout</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>60</max><defaultValue>30</defaultValue></optionType></optionDef><optionDef><label>RecvBufSize</label><summary>Socket
        receive buffer size in kilobytes (using default if set to zero)</summary><key>NFS41.RecvBufSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2048</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>SendBufSize</label><summary>Socket
        send buffer size in kilobytes (using default if set to zero)</summary><key>NFS41.SendBufSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2048</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>AdvertisementDuration</label><summary>duration
        of RARP advertisements</summary><key>Net.AdvertisementDuration</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>AllowPT</label><summary>Whether
        to enable UPT/NPA</summary><key>Net.AllowPT</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>BMCNetworkEnable</label><summary>Enable
        BMC Network for Redfish</summary><key>Net.BMCNetworkEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>BlockGuestBPDU</label><summary>Block
        guest sourced BPDU frames</summary><key>Net.BlockGuestBPDU</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Coalesce
        default on</label><summary>Dynamic coalescing on by default</summary><key>Net.CoalesceDefaultOn</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoalesceFavorNoVmmVmkTx</label><summary>Favor
        disabling all vmm-&gt;vmk tx transitions; boost its score by factor of this/64.</summary><key>Net.CoalesceFavorNoVmmVmkTx</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>64</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoalesceFineTimeoutCPU</label><summary>Set
        which CPU the fine timer will run on</summary><key>Net.CoalesceFineTimeoutCPU</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>512</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>CoalesceFineTxTimeout</label><summary>set
        the fine coalesce timeout in microseconds</summary><key>Net.CoalesceFineTxTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4294967295</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>CoalesceFlexMrq</label><summary>Whether
        to dynamically switch on/off multiRxQCalib.</summary><key>Net.CoalesceFlexMrq</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoalesceLowRxRate</label><summary>No
        Rx coalescing calibration when the number of pkts Rx per timeout is lower
        than this number.</summary><key>Net.CoalesceLowRxRate</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>256</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>CoalesceLowTxRate</label><summary>No
        tx coalescing calibration when the number of pkts tx per timeout is lower
        than this number.</summary><key>Net.CoalesceLowTxRate</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>256</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>CoalesceMatchedQs</label><summary>Whether
        to use matched TxRxQ-pairs mode when applicable.</summary><key>Net.CoalesceMatchedQs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoalesceMrqLt</label><summary>Whether
        to set a RxQ&apos;s coalesce to zero based on per-RxQ Low Traffic.</summary><key>Net.CoalesceMrqLt</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoalesceMrqMetricAllowTxOnly</label><summary>Whether
        to allow&apos;s individual RxQ&apos;s perf metric to be tx pkt cnt only; if
        not, it will be tx + rx, or rx only.</summary><key>Net.CoalesceMrqMetricAllowTxOnly</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoalesceMrqMetricRxOnly</label><summary>Whether
        to force individual RxQ&apos;s perf metric to be rx pkt cnt only.</summary><key>Net.CoalesceMrqMetricRxOnly</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>CoalesceMrqOverallStop</label><summary>Whether
        to use overall performance to stop RxQ Calib.</summary><key>Net.CoalesceMrqOverallStop</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>CoalesceMrqRatioMetric</label><summary>Whether
        Tx perf score is attributed to RxQ according to rxPktCnt ratio.</summary><key>Net.CoalesceMrqRatioMetric</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoalesceMrqTriggerReCalib</label><summary>Whether
        to let individual RxQ&apos;s perf change trigger re-calib.</summary><key>Net.CoalesceMrqTriggerReCalib</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoalesceMultiRxQCalib</label><summary>When
        not in matched TxRxQ-pairs mode, whether to uses separate RxQ Calib.</summary><key>Net.CoalesceMultiRxQCalib</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoalesceNoVmmVmkTx</label><summary>Whether
        to try disable all vmm-&gt;vmk tx transitions.</summary><key>Net.CoalesceNoVmmVmkTx</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoalesceParams</label><summary>Set
        parameters for the default virtual NIC coalescing scheme.</summary><key>Net.CoalesceParams</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>CoalesceRBCRate</label><summary>Target
        event rate for RateBasedCoalescing</summary><key>Net.CoalesceRBCRate</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>100000</max><defaultValue>4000</defaultValue></optionType></optionDef><optionDef><label>CoalesceRxLtStopCalib</label><summary>Whether
        Rx Low Traffic stops Rx calibration.</summary><key>Net.CoalesceRxLtStopCalib</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>CoalesceRxQDepthCap</label><summary>Cap
        of Rx coalescing size.</summary><key>Net.CoalesceRxQDepthCap</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>80</max><defaultValue>40</defaultValue></optionType></optionDef><optionDef><label>CoalesceScheme</label><summary>Set
        the default virtual NIC coalescing scheme.</summary><key>Net.CoalesceScheme</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>rbc</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>CoalesceTimeoutType</label><summary>set
        the coalesce timeout type: fine(1 ms by default) or coarse (4 ms by default)</summary><key>Net.CoalesceTimeoutType</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>2</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>CoalesceTxAlwaysPoll</label><summary>Whether
        always poll Tx at coalesce timeout handler.</summary><key>Net.CoalesceTxAlwaysPoll</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CoalesceTxQDepthCap</label><summary>Cap
        of Tx coalescing size.</summary><key>Net.CoalesceTxQDepthCap</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>80</max><defaultValue>40</defaultValue></optionType></optionDef><optionDef><label>Coalesce
        Tx time-out</label><summary>Set the coalesce time-out in microseconds</summary><key>Net.CoalesceTxTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4294967295</max><defaultValue>4000</defaultValue></optionType></optionDef><optionDef><label>DCBEnable</label><summary>Enable
        DCB for FCoE</summary><key>Net.DCBEnable</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>DVFilterBindIpAddress</label><summary>DVFilter
        internal communication endpoint</summary><key>Net.DVFilterBindIpAddress</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>DVFilterPriorityRdLockEnable</label><summary>Use
        priority locking in dvfilter to read lock portsets</summary><key>Net.DVFilterPriorityRdLockEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>DVSLargeHeapMBPerGB</label><summary>Maximum
        MB of dvsLargeHeap memory to be allocated per GB of physical memory</summary><key>Net.DVSLargeHeapMBPerGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>20</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>DVSLargeHeapMaxSize</label><summary>Max
        size for the dvsLargeHeap</summary><key>Net.DVSLargeHeapMaxSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>64</min><max>2048</max><defaultValue>300</defaultValue></optionType></optionDef><optionDef><label>DontOffloadInnerIPv6</label><summary>Don&apos;t
        offload inner IPv6 CSO/TSO packets to physical NICs</summary><key>Net.DontOffloadInnerIPv6</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>E1000IntrCoalesce</label><summary>Whether
        to enable interrupt coalescing for e1000 vNIC.</summary><key>Net.E1000IntrCoalesce</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>E1000TxCopySize</label><summary>e1000
        tx less than or equal to this will be fully copied with no need for completion.</summary><key>Net.E1000TxCopySize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>2048</defaultValue></optionType></optionDef><optionDef><label>E1000TxZeroCopy</label><summary>Use
        tx zero copy for non-tso packets for e1000.</summary><key>Net.E1000TxZeroCopy</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>EnableDMASgCons</label><summary>When
        non-zero, enable the DMA SG constraints support in uplink layer</summary><key>Net.EnableDMASgCons</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>EnableOuterCsum</label><summary>Enable
        uplink layer outer checksumming</summary><key>Net.EnableOuterCsum</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>EnsMbufpoolMaxMBPerGB</label><summary>Maximum
        MB of the ENS slab memory to be allocated per GB of physical memory</summary><key>Net.EnsMbufpoolMaxMBPerGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>500</max><defaultValue>200</defaultValue></optionType></optionDef><optionDef><label>EnsMbufpoolMinMBPerGB</label><summary>Minimum
        MB of the ENS slab memory to be allocated per GB of physical memory</summary><key>Net.EnsMbufpoolMinMBPerGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>500</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>Etherswitch
        fast path</label><summary>Allow Etherswitch fast path</summary><key>Net.EtherswitchAllowFastPath</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Ethernet
        switch hash size</label><summary>Number of ports on the etherswitch x 2^N
        is the size of the hash table for looking up MACs</summary><key>Net.EtherswitchHashSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>EtherswitchHeapMax</label><summary>The
        maximum size (in Megabytes) to which the etherswitch heap can grow. (REQUIRES
        REBOOT!)</summary><key>Net.EtherswitchHeapMax</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>86</min><max>2047</max><defaultValue>512</defaultValue></optionType></optionDef><optionDef><label>Etherswitch
        per-pCPU dispatch data number</label><summary>The dispatch data number in
        the etherswitch per-pCPU dispatch data cache. (REQUIRES REBOOT!)</summary><key>Net.EtherswitchNumPerPCPUDispatchData</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>3</min><max>63</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>FollowHardwareMac</label><summary>If
        set to 1, the management interface MAC address will update whenever the hardware
        MAC address changes.</summary><key>Net.FollowHardwareMac</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>GuestIPHack</label><summary>Enable
        guest arp inspection IOChain to get IP</summary><key>Net.GuestIPHack</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Guest
        Tx copy break</label><summary>Transmits smaller than this will be copied rather
        than mapped</summary><key>Net.GuestTxCopyBreak</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>60</min><max>4294967295</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>IGMPQueries</label><summary>Number
        of IGMP Queries to send during after VMotion/Teaming failover</summary><key>Net.IGMPQueries</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>IGMPQueryInterval</label><summary>Interval(in
        seconds) for IGMP/MLD general query in multicast snooping</summary><key>Net.IGMPQueryInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>32</min><max>3600</max><defaultValue>125</defaultValue></optionType></optionDef><optionDef><label>IGMPRouterIP</label><summary>Router
        IP Address for IGMP (generally not necessary to set this)</summary><key>Net.IGMPRouterIP</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>0.0.0.0</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>IGMPV3MaxSrcIPNum</label><summary>Max
        per-group srouce IP number for IGMP V3</summary><key>Net.IGMPV3MaxSrcIPNum</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>32</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>IGMPVersion</label><summary>IGMP
        Version (2 or 3)</summary><key>Net.IGMPVersion</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>2</min><max>3</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>LACPActorSystemPriority</label><summary>The
        value of LACP system priority</summary><key>Net.LACPActorSystemPriority</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65535</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>LACPEnableIndividualPort</label><summary>Allow
        to set lag status down when all member link status is down</summary><key>Net.LACPEnableIndividualPort</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>LRODefBackoffPeriod</label><summary>After
        adaptive LRO decided not to do LRO, how many intervals to wait before trying
        again.</summary><key>Net.LRODefBackoffPeriod</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>65535</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>LRODefMaxLength</label><summary>LRO
        default max length</summary><key>Net.LRODefMaxLength</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65535</max><defaultValue>65535</defaultValue></optionType></optionDef><optionDef><label>LRODefThreshold</label><summary>After
        this # packets, evaluate whether to continue SW LRO</summary><key>Net.LRODefThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>65535</max><defaultValue>4000</defaultValue></optionType></optionDef><optionDef><label>LRODefUseRatioDenom</label><summary>If
        SW LRO reduce pkt count to be smaller than ratio, continue to do LRO. Denominator
        of ratio.</summary><key>Net.LRODefUseRatioDenom</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>LRODefUseRatioNumer</label><summary>If
        SW LRO reduce pkt count to be smaller than ratio, continue to do LRO. Numerator
        of ratio.</summary><key>Net.LRODefUseRatioNumer</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>LinkFlappingThreshold</label><summary>Max
        number of link down events per minute before considering a link unstable (0
        to deactivate)</summary><key>Net.LinkFlappingThreshold</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>65535</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>LinkStatePollTimeout</label><summary>Link
        State poll timer period in milliseconds.</summary><key>Net.LinkStatePollTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>90000</max><defaultValue>500</defaultValue></optionType></optionDef><optionDef><label>MLDRouterIP</label><summary>Router
        IPv6 Address for MLD (generally not necessary to set this)</summary><key>Net.MLDRouterIP</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>FE80::FFFF:FFFF:FFFF:FFFF</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>MLDV2MaxSrcIPNum</label><summary>Max
        per-group srouce IP number for MLD V2</summary><key>Net.MLDV2MaxSrcIPNum</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>32</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>MLDVersion</label><summary>MLD
        Version (1 or 2)</summary><key>Net.MLDVersion</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>2</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>MaxBeaconVlans</label><summary>maximum
        number of VLANs to probe with beacons.</summary><key>Net.MaxBeaconVlans</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4096</max><defaultValue>100</defaultValue></optionType></optionDef><optionDef><label>Maximum
        simultaneous beacons</label><summary>Maximum number of beacons to send in
        one beacon cycle</summary><key>Net.MaxBeaconsAtOnce</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4096</max><defaultValue>100</defaultValue></optionType></optionDef><optionDef><label>MaxGlobalRxQueueCount</label><summary>Global
        max length of rx queues for all virtual ports on a ESX host that support queueing</summary><key>Net.MaxGlobalRxQueueCount</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>100000</defaultValue></optionType></optionDef><optionDef><label>Maximum
        net Tx queue length</label><summary>Maximum length of the Tx queue for the
        physical NICs</summary><key>Net.MaxNetifTxQueueLen</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>10000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>Maximum
        page in queue length</label><summary>Maximum number of paging requests to
        queue for guest DMA</summary><key>Net.MaxPageInQueueLen</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>500</max><defaultValue>75</defaultValue></optionType></optionDef><optionDef><label>MaxPktRxListQueue</label><summary>Maximum
        packet we can queue in rxList</summary><key>Net.MaxPktRxListQueue</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>200000</max><defaultValue>3500</defaultValue></optionType></optionDef><optionDef><label>Maximum
        port Rx queue length</label><summary>Maximum length of the rx queue for virtual
        ports whose clients support queuing</summary><key>Net.MaxPortRxQueueLen</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>500</max><defaultValue>80</defaultValue></optionType></optionDef><optionDef><label>MinEtherLen</label><summary>Minimum
        size ethernet frame to transmit</summary><key>Net.MinEtherLen</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>60</min><max>1518</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>NcpLlcSap</label><summary>beacon/color
        NCP messages created with this SAP (DSAP/SSAP)</summary><key>Net.NcpLlcSap</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NetBHRxStormThreshold</label><summary>Declare
        Rx Storm after this number of consecutive rx pkt drops during queuing in NetBH
        rxList.</summary><key>Net.NetBHRxStormThreshold</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>200000</max><defaultValue>320</defaultValue></optionType></optionDef><optionDef><label>NetDebugRARPTimerInter</label><summary>RARP
        timer will be triggered at this interval.</summary><key>Net.NetDebugRARPTimerInter</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>16777215</max><defaultValue>30000</defaultValue></optionType></optionDef><optionDef><label>NetDeferTxCompletion</label><summary>Whether
        to defer tx completion to tx world. 1 for Try Completion. 2 For Always (Only
        in MQ Tx World case).</summary><key>Net.NetDeferTxCompletion</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetDeferTxCompletionNonPerQ</label><summary>Whether
        to defer tx completion to tx world when ctxPerDev = &apos;1&apos; or &apos;2&apos;.
        1) for Try Completion. 2) For Always.</summary><key>Net.NetDeferTxCompletionNonPerQ</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetDiscUpdateIntrvl</label><summary>Set
        interval (in milliseconds) of networking discovery to update the VLAN information</summary><key>Net.NetDiscUpdateIntrvl</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4294967295</max><defaultValue>300</defaultValue></optionType></optionDef><optionDef><label>NetEnableSwCsumForLro</label><summary>Whether
        enable software checksum for LRO</summary><key>Net.NetEnableSwCsumForLro</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetEsxfwPassOutboundGRE</label><summary>Whether
        outbound GRE traffic is passed by ESXi firewall</summary><key>Net.NetEsxfwPassOutboundGRE</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetInStressTest</label><summary>If
        set to 1, suppress certain logs to avoid log spew.</summary><key>Net.NetInStressTest</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NetLatencyAwareness</label><summary>Whether
        to check virtual machine&apos;s latency settings or not for vmxnet2/3</summary><key>Net.NetLatencyAwareness</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetMaxRarpsPerInterval</label><summary>Max
        number of RARPs dispatched per timer callback.</summary><key>Net.NetMaxRarpsPerInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>4294967295</max><defaultValue>128</defaultValue></optionType></optionDef><optionDef><label>NetNetqNumaIOCpuPinThreshold</label><summary>CPU
        threshold for pinning device queues in NUMA I/O</summary><key>Net.NetNetqNumaIOCpuPinThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>60</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NetNetqRxRebalRSSLoadThresholdPerc</label><summary>Threshold
        percentage to rebalance RSS(Receive Side Scaling) queue</summary><key>Net.NetNetqRxRebalRSSLoadThresholdPerc</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>NetNetqTxPackKpps</label><summary>Max
        TX queue load (in thousand packet per second) to allow packing on the corresponding
        RX queue</summary><key>Net.NetNetqTxPackKpps</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>10000</max><defaultValue>300</defaultValue></optionType></optionDef><optionDef><label>NetNetqTxUnpackKpps</label><summary>Threshold
        (in thousand packet per second) for TX queue load to trigger unpacking of
        the corresponding RX queue</summary><key>Net.NetNetqTxUnpackKpps</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>10000</max><defaultValue>600</defaultValue></optionType></optionDef><optionDef><label>NetNiocAllowOverCommit</label><summary>Whether
        allow NIOC overcommit when a vNIC is in connected state for DVS</summary><key>Net.NetNiocAllowOverCommit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetPTMgrWakeupInterval</label><summary>How
        often the PTMgr will wakeup and trigger the UPT mode switch in second.</summary><key>Net.NetPTMgrWakeupInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>5</min><max>15</max><defaultValue>6</defaultValue></optionType></optionDef><optionDef><label>Packet
        allocation retry count</label><summary>Number of attempts for allocating packet
        within the page</summary><key>Net.NetPktAllocTries</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>10</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>NetPktSlabFreePercentThreshold</label><summary>Percent
        of free network memory pool, below which an event is reported.</summary><key>Net.NetPktSlabFreePercentThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>2</min><max>50</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>NetPortFlushIterLimit</label><summary>when
        input is serialized, this bounds the number of times a thread flushes the
        deferred list.</summary><key>Net.NetPortFlushIterLimit</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>127</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>NetPortFlushPktLimit</label><summary>when
        input is serialized, this bounds the number of pkts a thread flushes from
        the deferred list.</summary><key>Net.NetPortFlushPktLimit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>NetPortTrackTxRace</label><summary>if
        enabled(1), collect statistics on potential tx race between concurrent threads.</summary><key>Net.NetPortTrackTxRace</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NetRCFAllowBPF</label><summary>Allow
        to run BPF code in RCF</summary><key>Net.NetRCFAllowBPF</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetRCFInsnType</label><summary>The
        instruction type of bytecode in RCF</summary><key>Net.NetRCFInsnType</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NetRmDistMacFilter</label><summary>Activate/Deactivate
        the MAC filter on distributed NetRM</summary><key>Net.NetRmDistMacFilter</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetRmDistSamplingRate</label><summary>Sampling
        rate on distributed NetRM</summary><key>Net.NetRmDistSamplingRate</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10000</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NetRxCopyInTx</label><summary>Whether
        to enable rx copy in tx worldlet/world.</summary><key>Net.NetRxCopyInTx</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NetSchedCoalesceTxUsecs</label><summary>Maximum
        number of microseconds the device can delay tx completions</summary><key>Net.NetSchedCoalesceTxUsecs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>125</max><defaultValue>33</defaultValue></optionType></optionDef><optionDef><label>NetSchedDefaultResPoolSharesPct</label><summary>Percent
        share given to unclassified traffic</summary><key>Net.NetSchedDefaultResPoolSharesPct</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>99</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>NetSchedDefaultSchedName</label><summary>Default
        networking packet scheduler</summary><key>Net.NetSchedDefaultSchedName</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>fifo</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>NetSchedECNEnabled</label><summary>Enable
        net scheduler to send congestion notification to switch ports.</summary><key>Net.NetSchedECNEnabled</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetSchedECNThreshold</label><summary>Percentage
        queue utilization at which net scheduler will start sending congestion notifications
        to switch ports.</summary><key>Net.NetSchedECNThreshold</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>70</defaultValue></optionType></optionDef><optionDef><label>NetSchedHClkLeafQueueDepthPkt</label><summary>Minimum
        number of packets each HClk leaf node can hold</summary><key>Net.NetSchedHClkLeafQueueDepthPkt</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>10000</max><defaultValue>640</defaultValue></optionType></optionDef><optionDef><label>NetSchedHClkMQ</label><summary>Enable
        multiple hardware queue for hclk netsched. (0 is off. 1 and 2 means MQ enabled.
        With 1, user specifies the number of queues, while 2 is dynamic based on link
        speed.)</summary><key>Net.NetSchedHClkMQ</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>NetSchedHClkMaxHwQueue</label><summary>Maximum
        number hardware queue that HClock can use. Only used when NetSchedHClkMQ is
        1.</summary><key>Net.NetSchedHClkMaxHwQueue</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>NetSchedHClkVnicMQ</label><summary>Enable
        multiple VNIC queue for hardware send queue selection</summary><key>Net.NetSchedHClkVnicMQ</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetSchedHeapMaxSizeMB</label><summary>Size
        of the netsched subsystem heap in MB</summary><key>Net.NetSchedHeapMaxSizeMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>96</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>NetSchedInFlightMaxBytesDefault</label><summary>Number
        of bytes fed to the nic for nics with a normal (1Gbps) linkspeed</summary><key>Net.NetSchedInFlightMaxBytesDefault</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1500</min><max>1500000</max><defaultValue>200000</defaultValue></optionType></optionDef><optionDef><label>NetSchedInFlightMaxBytesInsane</label><summary>Number
        of bytes fed to the nic for nics that don&apos;t support tx completion coalescing</summary><key>Net.NetSchedInFlightMaxBytesInsane</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1500</min><max>1500000</max><defaultValue>1500000</defaultValue></optionType></optionDef><optionDef><label>NetSchedMaxPktSend</label><summary>Maximum
        number of packets that we can send to the driver at a time</summary><key>Net.NetSchedMaxPktSend</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>4096</max><defaultValue>256</defaultValue></optionType></optionDef><optionDef><label>NetSchedQoSSchedName</label><summary>Default
        networking packet scheduler for QoS</summary><key>Net.NetSchedQoSSchedName</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>hclk</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>NetSchedSpareBasedShares</label><summary>Enable
        shares scheduling only on spare bandwidth. Don&apos;t bill while doing reservation
        scheduling</summary><key>Net.NetSchedSpareBasedShares</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetSendRARPOnPortEnablement</label><summary>Ensure
        one RARP is sent immediately when a port is enabled</summary><key>Net.NetSendRARPOnPortEnablement</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetShaperQueuePerL3L4Flow</label><summary>Enable
        queuing per L3/L4 flow hashing</summary><key>Net.NetShaperQueuePerL3L4Flow</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetShaperQueueSizeMax</label><summary>Maximum
        shaper queue size</summary><key>Net.NetShaperQueueSizeMax</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>5000</max><defaultValue>500</defaultValue></optionType></optionDef><optionDef><label>NetShaperQueueSizeMin</label><summary>Minimum
        shaper queue size</summary><key>Net.NetShaperQueueSizeMin</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>500</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>NetSplitRxMode</label><summary>Whether
        to enable automatic splitRxMode</summary><key>Net.NetSplitRxMode</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetTraceEnable</label><summary>Enable
        virtual network tracing</summary><key>Net.NetTraceEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NetTuneHostMode</label><summary>Tuning
        mode for networking</summary><key>Net.NetTuneHostMode</key><optionType xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>default</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>NetTuneInterval</label><summary>Tuning
        interval in seconds</summary><key>Net.NetTuneInterval</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>3600</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>NetTuneThreshold</label><summary>Threshold
        for activating a tuned mode</summary><key>Net.NetTuneThreshold</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>1n
        2n 50</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>Net
        Tx do not cluster size</label><summary>Transmits smaller than this will not
        be subject to clustering.coalescing</summary><key>Net.NetTxDontClusterSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>8192</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NetTxStaticRelation</label><summary>Whether
        the world should have a static relation to the VM VCPU</summary><key>Net.NetTxStaticRelation</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NetVMTxType</label><summary>World
        for asynchronous Tx for net devices. 1 for one tx context per vNIC. 2 for
        one tx context per VM</summary><key>Net.NetVMTxType</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>3</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>NetpollSwLRO</label><summary>Whether
        to perform SW LRO on pkts in netPoll</summary><key>Net.NetpollSwLRO</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>No
        local checksum</label><summary>Do not checksum local tx.rx frames</summary><key>Net.NoLocalCSum</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Notify
        switch</label><summary>Broadcasts an arp request on net handle enable</summary><key>Net.NotifySwitch</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>PTSwitchingTimeout</label><summary>Timeout
        (in ms) when asking the VMX/guest to switch in/out of passthru</summary><key>Net.PTSwitchingTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>60000</max><defaultValue>20000</defaultValue></optionType></optionDef><optionDef><label>PVRDMAVmknic</label><summary>Vmknic
        for PVRDMA</summary><key>Net.PVRDMAVmknic</key><optionType xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>PktAgingListQuantumSize</label><summary>Quantum
        size for PktAgingList expressed in power of 2</summary><key>Net.PktAgingListQuantumSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>4</min><max>32</max><defaultValue>20</defaultValue></optionType></optionDef><optionDef><label>PktagingDropPolicy</label><summary>Dropping
        policy for vmxnet3 rx burst queue. 1 for PKTAGING_TAIL_DROP. 2 for PKTAGING_RED</summary><key>Net.PktagingDropPolicy</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Port
        disable time-out</label><summary>Maximum time to wait for ports to complete
        I/O before disabling</summary><key>Net.PortDisableTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2147483647</max><defaultValue>5000</defaultValue></optionType></optionDef><optionDef><label>PortsetLockModel</label><summary>The
        lock model version of a portset</summary><key>Net.PortsetLockModel</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Provisioning
        Vmknics</label><summary>vmknics used by NFC for provisioning operations.</summary><key>Net.ProvisioningVmknics</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>ReversePathFwdCheck</label><summary>Block
        the multicast/broadcast packets that come back from physical switches in a
        teamed environment</summary><key>Net.ReversePathFwdCheck</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ReversePathFwdCheckPromisc</label><summary>Block
        duplicate packet in a teamed environment when the virtual switch is set to
        Promiscuous mode.</summary><key>Net.ReversePathFwdCheckPromisc</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SendIGMPReportToUplink</label><summary>Enable
        sending IGMP report to uplink</summary><key>Net.SendIGMPReportToUplink</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>TcpipCopySmallTx</label><summary>Copy
        and tx complete small packets for tcp tx</summary><key>Net.TcpipCopySmallTx</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TcpipDefLROEnabled</label><summary>LRO
        enabled for TCP/IP</summary><key>Net.TcpipDefLROEnabled</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TcpipDefLROMaxLength</label><summary>LRO
        default max length for TCP/IP</summary><key>Net.TcpipDefLROMaxLength</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65535</max><defaultValue>32768</defaultValue></optionType></optionDef><optionDef><label>TcpipDgramRateLimiting</label><summary>Enable
        Tx rate limiting for UDP sockets</summary><key>Net.TcpipDgramRateLimiting</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TcpipEnableABC</label><summary>Enable
        Appropriate Byte Counting for TCP (RFC 3465)</summary><key>Net.TcpipEnableABC</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TcpipEnableFlowtable</label><summary>Enable
        route caching through the use of flowtable</summary><key>Net.TcpipEnableFlowtable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TcpipEnableSendScaling</label><summary>Enable
        Send-Side Scaling (requires RSS)</summary><key>Net.TcpipEnableSendScaling</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TcpipEnsMultipleRxContexts</label><summary>Use
        multiple ENS contexts for vmknic RX processing</summary><key>Net.TcpipEnsMultipleRxContexts</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>TcpipEnsNetQRSS</label><summary>Request
        NetQ RSS for vmknics.</summary><key>Net.TcpipEnsNetQRSS</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TcpipHWLRONoDelayAck</label><summary>Delayed
        ack timer not armed for Hardware LRO (socket option needs to be set in addition).</summary><key>Net.TcpipHWLRONoDelayAck</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TcpipHeapMax</label><summary>Max
        megabytes the tcpip module heap can grow to. (REQUIRES REBOOT!)</summary><key>Net.TcpipHeapMax</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>32</min><max>16384</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>TCP/IP
        heap size</label><summary>Size of the TCP/IP module heap in megabytes (requires
        reboot)</summary><key>Net.TcpipHeapSize</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>128</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>TcpipIGMPDefaultVersion</label><summary>Default
        version of IGMP, in the absence of a querier</summary><key>Net.TcpipIGMPDefaultVersion</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>3</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>TcpipIGMPRejoinInterval</label><summary>Delay
        in seconds between automatic IGMP rejoins when no querier is present</summary><key>Net.TcpipIGMPRejoinInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>3600</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>TcpipLODispatchQueueMaxLen</label><summary>Max
        # of pkts queued into the per-protocol queue used for dispatching loopback
        traffic (REQUIRES REBOOT!)</summary><key>Net.TcpipLODispatchQueueMaxLen</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>50</min><max>512</max><defaultValue>128</defaultValue></optionType></optionDef><optionDef><label>TcpipLRONoDelayAck</label><summary>Delayed
        ack timer not armed for LRO</summary><key>Net.TcpipLRONoDelayAck</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TcpipLogPackets</label><summary>Turns
        on packet logging for a vmknic on debug builds, in a circular &amp; in-memory
        buffer (Takes effect during vmknic creation time)</summary><key>Net.TcpipLogPackets</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>TcpipLogPacketsCount</label><summary>Number
        of packets to log in the in-memory logger. 24570 packets take up about 1.2
        MB, and Tx &amp; Rx use separate buffers. (Takes effect during vmknic creation
        time)</summary><key>Net.TcpipLogPacketsCount</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1024</min><max>49140</max><defaultValue>24570</defaultValue></optionType></optionDef><optionDef><label>Maximum
        number of TCP/IP stack instances</label><summary>The maximum number of TCP/IP
        stack instances that can exist concurrently. If  you increase this number,
        you must also increase the TcpipHeapSize by about 2.5 MB per instance. Requires
        rebooting the host.</summary><key>Net.TcpipMaxNetstackInstances</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>48</min><max>513</max><defaultValue>48</defaultValue></optionType></optionDef><optionDef><label>TcpipNoBcopyRx</label><summary>Avoid
        bcopy in tcp rx</summary><key>Net.TcpipNoBcopyRx</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TcpipPendPktSocketFreeTimeout</label><summary>Time
        Delay in seconds, for freeing UDP sockets that have pending packets for Tx
        completion</summary><key>Net.TcpipPendPktSocketFreeTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>300</max><defaultValue>300</defaultValue></optionType></optionDef><optionDef><label>TcpipRxDispatchQueueMaxLen</label><summary>Max
        # of pkts queued into a tcpip vmknic by an execution context (applied when
        vmknic is created)</summary><key>Net.TcpipRxDispatchQueueMaxLen</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>20000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>TcpipRxDispatchQueues</label><summary>Max
        # of dispatch queues used for RX. For low memory systems, this should be minimum
        value(REQUIRES REBOOT!)</summary><key>Net.TcpipRxDispatchQueues</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>8</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>TcpipRxDispatchQuota</label><summary>Max
        # of pkts dispatched into the tcpip stack by an execution context</summary><key>Net.TcpipRxDispatchQuota</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1000</max><defaultValue>200</defaultValue></optionType></optionDef><optionDef><label>TcpipTxDispatchQuota</label><summary>Max
        # of pkts dispatched from the tcpip stack by an execution context</summary><key>Net.TcpipTxDispatchQuota</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1000</max><defaultValue>100</defaultValue></optionType></optionDef><optionDef><label>TcpipTxqBackoffTimeoutMs</label><summary>Duration
        (in milli seconds) for which backoff is effective when the tx queue has reached
        the NET_TCPIP_TXQ_MAX_USAGE_THRESHOLD</summary><key>Net.TcpipTxqBackoffTimeoutMs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>20</min><max>1000</max><defaultValue>70</defaultValue></optionType></optionDef><optionDef><label>TcpipTxqMaxUsageThreshold</label><summary>Tx
        queue usage threshold in percent at which to start throttling</summary><key>Net.TcpipTxqMaxUsageThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>50</min><max>100</max><defaultValue>80</defaultValue></optionType></optionDef><optionDef><label>TeamPolicyUpDelay</label><summary>Delay
        (ms) before considering an `uplink up&apos; event relevant</summary><key>Net.TeamPolicyUpDelay</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1800000</max><defaultValue>100</defaultValue></optionType></optionDef><optionDef><label>TeamingNUMAAware</label><summary>Enable
        the NUMA awareness in Teaming</summary><key>Net.TeamingNUMAAware</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TrafficFilterIpAddress</label><summary>Alternate
        DVFilter internal communication endpoint</summary><key>Net.TrafficFilterIpAddress</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>TsoDumpPkt</label><summary>detailed
        dump of every &lt;n&gt; pkts</summary><key>Net.TsoDumpPkt</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2147483647</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>UplinkAbortDisconnectTimeout</label><summary>Timeout
        (ms) waiting for pending calls to finish when disconnecting.</summary><key>Net.UplinkAbortDisconnectTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>6000000</max><defaultValue>5000</defaultValue></optionType></optionDef><optionDef><label>UplinkKillAsyncTimeout</label><summary>Timeout
        (ms) waiting for async when world is killed.</summary><key>Net.UplinkKillAsyncTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>6000000</max><defaultValue>10000</defaultValue></optionType></optionDef><optionDef><label>UplinkTSOSplit</label><summary>Enable
        uplink layer convert TSO packets to CSO ones on pNIC not supporting TSO but
        supporting CSO</summary><key>Net.UplinkTSOSplit</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>UplinkTxQueuesDispEnabled</label><summary>Enables
        dispatching of port traffic on multiple tx queues</summary><key>Net.UplinkTxQueuesDispEnabled</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>UseHwCsumForIPv6Csum</label><summary>When
        non-zero, use pNIC HW_CSUM, if available, as IPv6 csum offload</summary><key>Net.UseHwCsumForIPv6Csum</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>UseHwIPv6Csum</label><summary>When
        non-zero, use pNIC HW IPv6 csum offload if available</summary><key>Net.UseHwIPv6Csum</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>UseHwTSO</label><summary>When
        non-zero, use pNIC HW TSO offload if available</summary><key>Net.UseHwTSO</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>UseHwTSO6</label><summary>When
        non-zero, use pNIC HW IPv6 TSO offload if available</summary><key>Net.UseHwTSO6</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Populate
        legacy entries</label><summary>Enable or disable populating legacy entries
        in /proc/vmware/net</summary><key>Net.UseLegacyProc</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Use
        proc</label><summary>Populate /proc/vmware/net</summary><key>Net.UseProc</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VLANMTUCheckMode</label><summary>Set
        the unicast/broadcast checking mode in VLAN MTU check</summary><key>Net.VLANMTUCheckMode</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VmklnxLROEnabled</label><summary>LRO
        enabled in vmklinux</summary><key>Net.VmklnxLROEnabled</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VmklnxLROMaxAggr</label><summary>LRO
        max aggr in vmklinux</summary><key>Net.VmklnxLROMaxAggr</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>24</max><defaultValue>6</defaultValue></optionType></optionDef><optionDef><label>VmknicDoLroSplit</label><summary>whether
        for vmknic LRO avoids aggregating all pkts into a single (&gt; 2 ms) large
        pkt.</summary><key>Net.VmknicDoLroSplit</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VmknicLroSplitBnd</label><summary>when
        VmknicDoLroSplit is non-zero, while pktList is larger than this number, lroSplit
        is not done.</summary><key>Net.VmknicLroSplitBnd</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>2</min><max>255</max><defaultValue>12</defaultValue></optionType></optionDef><optionDef><label>Vmxnet2HwLRO</label><summary>Whether
        to perform HW LRO on pkts going to a LPD capable vmxnet2</summary><key>Net.Vmxnet2HwLRO</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Vmxnet2PinRxBuf</label><summary>Pin
        RX buffers for vmxnet2 clients (windows guest only)</summary><key>Net.Vmxnet2PinRxBuf</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Vmxnet2SwLRO</label><summary>Whether
        to perform SW LRO on pkts going to a LPD capable vmxnet2</summary><key>Net.Vmxnet2SwLRO</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3AllowTruncation</label><summary>Allow
        truncated packets to be delivered to the guest</summary><key>Net.Vmxnet3AllowTruncation</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3CopyTrailer</label><summary>Copy
        additional bytes of pkt not included in the total length field of ip header</summary><key>Net.Vmxnet3CopyTrailer</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3ESPRSSAllowed</label><summary>Allow
        RSS for IPSEC (ESP) over IPv4 if requested by guest/vmx.</summary><key>Net.Vmxnet3ESPRSSAllowed</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3EnsRxMultipleContexts</label><summary>Use
        multiple ENS contexts for vnic RX processing.</summary><key>Net.Vmxnet3EnsRxMultipleContexts</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3HwLRO</label><summary>Whether
        to enable HW LRO on pkts going to a LPD capable vmxnet3</summary><key>Net.Vmxnet3HwLRO</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3MaxPendingRxBurst</label><summary>max
        # packets to drain from Burst Queue per call</summary><key>Net.Vmxnet3MaxPendingRxBurst</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>64</min><max>4096</max><defaultValue>128</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3MaxRxBurstQueueLength</label><summary>Maximum
        length of burst queue allowed when configured via vmx option</summary><key>Net.Vmxnet3MaxRxBurstQueueLength</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>65536</max><defaultValue>16384</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3NonTsoPacketGtMtuAllowed</label><summary>Allow
        non-TSO/LRO packets greater than vNic MTU</summary><key>Net.Vmxnet3NonTsoPacketGtMtuAllowed</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3PageInBound</label><summary>max
        # pageIn requests to handle per helper call for vmxnet3.</summary><key>Net.Vmxnet3PageInBound</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1024</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3RSSHashCache</label><summary>Enable
        RSS hash cache.</summary><key>Net.Vmxnet3RSSHashCache</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3RxBurstQueueEnableThreshold</label><summary>Maximum
        number of entries allowed in Rx ring buffer after which vmxnet3 Rx burst queuing
        will be disabled in vNIC backend</summary><key>Net.Vmxnet3RxBurstQueueEnableThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4096</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3RxBurstQueueLimit</label><summary>Maximum
        number of packets allowed to be queued in vmxnet3 vNIC backend in rx path</summary><key>Net.Vmxnet3RxBurstQueueLimit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>16384</max><defaultValue>512</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3RxPollBound</label><summary>max
        # pkts to receive per timeout for vmxnet3.</summary><key>Net.Vmxnet3RxPollBound</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4096</max><defaultValue>256</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3SetRSSHash</label><summary>While
        using multiqueue delivery, set RSS hash while delivering the packet to the
        guest.</summary><key>Net.Vmxnet3SetRSSHash</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3SwLRO</label><summary>Whether
        to perform SW LRO on pkts going to a LPD capable vmxnet3</summary><key>Net.Vmxnet3SwLRO</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3UDPRSSAllowed</label><summary>Allow
        RSS for UDP over IPv4/IPv6 if requested by guest/vmx. May result in out-of-order
        packets for IP fragments.</summary><key>Net.Vmxnet3UDPRSSAllowed</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3WinIntrHints</label><summary>whether
        intr hints are used for Windows vmxnet3.</summary><key>Net.Vmxnet3WinIntrHints</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Vmxnet3usePNICHash</label><summary>Reuse
        pnic computed RSS hash.</summary><key>Net.Vmxnet3usePNICHash</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VmxnetBiDirNeedsTsoTx</label><summary>Need
        to see Tso Tx to qualify for tsoSplit bidirectional traffic condition.</summary><key>Net.VmxnetBiDirNeedsTsoTx</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VmxnetBiDirNoTsoSplit</label><summary>For
        bidirectional traffic, don&apos;t do tsoSplit.</summary><key>Net.VmxnetBiDirNoTsoSplit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VmxnetCopyTxRunLimit</label><summary>non-Win
        vmxnet2/3 tx will have at most so many fully copied tx&apos;s in a row (65536
        and larger means never).</summary><key>Net.VmxnetCopyTxRunLimit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>16</defaultValue></optionType></optionDef><optionDef><label>VmxnetDoLroSplit</label><summary>whether
        for vmxnet LRO avoids aggregating all pkts into a single (&gt; 2 mss) large
        pkt.</summary><key>Net.VmxnetDoLroSplit</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VmxnetDoTsoSplit</label><summary>whether
        to split TSO pkts before LPD; 1: halved; 3: VmxnetTsoSplitSize; 2: hybrid.</summary><key>Net.VmxnetDoTsoSplit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VmxnetLROBackoffPeriod</label><summary>After
        adaptive LRO decided not to do LRO, how many intervals to wait before trying
        again.</summary><key>Net.VmxnetLROBackoffPeriod</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>65535</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>VmxnetLROMaxLength</label><summary>LRO
        default max length for TCP/IP</summary><key>Net.VmxnetLROMaxLength</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>65535</max><defaultValue>32000</defaultValue></optionType></optionDef><optionDef><label>VmxnetLROThreshold</label><summary>After
        this # packets, evaluate whether to continue SW LRO</summary><key>Net.VmxnetLROThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>65535</max><defaultValue>4000</defaultValue></optionType></optionDef><optionDef><label>VmxnetLROUseRatioDenom</label><summary>If
        SW LRO reduce pkt count to be smaller than ratio, continue to do LRO. Denominator
        of ratio.</summary><key>Net.VmxnetLROUseRatioDenom</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>VmxnetLROUseRatioNumer</label><summary>If
        SW LRO reduce pkt count to be smaller than ratio, continue to do LRO. Numerator
        of ratio.</summary><key>Net.VmxnetLROUseRatioNumer</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>VmxnetLroSplitBnd</label><summary>when
        VmxnetDoLroSplit is non-zero, while pktList is larger than this number, lroSplit
        is not done.</summary><key>Net.VmxnetLroSplitBnd</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>2</min><max>255</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>VmxnetPromDisableLro</label><summary>Whether
        to disable SW LRO when vNIC goes into promiscuous mode.</summary><key>Net.VmxnetPromDisableLro</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VmxnetSwLROSL</label><summary>Whether
        to use ShortLived for vmxnet SW LRO</summary><key>Net.VmxnetSwLROSL</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VmxnetTsoSplitBnd</label><summary>when
        VmxnetDoTsoSplit is 1 or 2, use targetSize as the tsoSplit threshold if the
        overall pkt list already has this number of pkts.</summary><key>Net.VmxnetTsoSplitBnd</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>2</min><max>255</max><defaultValue>12</defaultValue></optionType></optionDef><optionDef><label>VmxnetTsoSplitSize</label><summary>split
        (byte) size; only used if DoTsoSplit &gt;= 2.</summary><key>Net.VmxnetTsoSplitSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1500</min><max>65535</max><defaultValue>17500</defaultValue></optionType></optionDef><optionDef><label>VmxnetTxCopySize</label><summary>vmxnet
        tx &lt;= than this will be fully copied with no need for completion.</summary><key>Net.VmxnetTxCopySize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>256</defaultValue></optionType></optionDef><optionDef><label>VmxnetWinCopyTxRunLimit</label><summary>Win
        vmxnet2/3 tx will have at most so many fully copied tx&apos;s in a row (65536
        and larger means never).</summary><key>Net.VmxnetWinCopyTxRunLimit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>65535</defaultValue></optionType></optionDef><optionDef><label>VmxnetWinUDPTxFullCopy</label><summary>whether
        Windows vmxnet UDP tx is fullCopy.</summary><key>Net.VmxnetWinUDPTxFullCopy</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>vNicNumDeferredReset</label><summary>max
        # normalPkts per poll.</summary><key>Net.vNicNumDeferredReset</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4096</max><defaultValue>12</defaultValue></optionType></optionDef><optionDef><label>vNicTxPollBound</label><summary>max
        # normalPkts per poll.</summary><key>Net.vNicTxPollBound</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4096</max><defaultValue>192</defaultValue></optionType></optionDef><optionDef><label>vmxnetThroughputWeight</label><summary>How
        far to favor throughput in vmxnet behavior.</summary><key>Net.vmxnetThroughputWeight</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Network
        I/O control physical NIC opt out option</label><summary>List of physical NICs
        to opt out of network I/O control</summary><key>Net.IOControlPnicOptOut</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue></optionType></optionDef><optionDef><label>NmpPReservationCmdRetryTime</label><summary>Time
        (in secs) to retry on transient errors for Persistent reservation commands
        for MSCS CAB configs</summary><key>Nmp.NmpPReservationCmdRetryTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>300</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NmpSatpAluaCmdRetryTime</label><summary>Time
        (in secs) to retry on transient errors</summary><key>Nmp.NmpSatpAluaCmdRetryTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>50</max><defaultValue>20</defaultValue></optionType></optionDef><optionDef><label>NmpSatpAluaTransRetryTime</label><summary>Time
        (in secs) to wait for ALUA transition to complete when target reports ALUA
        transitioning state</summary><key>Nmp.NmpSatpAluaTransRetryTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>30</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>CoreCapRatioPct</label><summary>The
        capacity of a core in percent. When exceeded, locality migration is rejected.
        Set to 0 to disable this check</summary><key>Numa.CoreCapRatioPct</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>90</defaultValue></optionType></optionDef><optionDef><label>CostopSkewAdjust</label><summary>way
        to handle costop skew, 0:do nothing, 1:interleave vcpus among clients, 2:allow
        vcpus on all nodes</summary><key>Numa.CostopSkewAdjust</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>FollowCoresPerSocket</label><summary>1:
        if the vNUMA topology should strickly follow core-per-socket config, 0: to
        remove the restriction</summary><key>Numa.FollowCoresPerSocket</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>LTermFairnessInterval</label><summary>duration
        of long term fairness interval in terms of NUMA rebalance period, 0 indicates
        that long term fairness is disabled</summary><key>Numa.LTermFairnessInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>LTermMigImbalThreshold</label><summary>imbalance
        in long term owed, in percentage, required to trigger migration for long term
        fairness</summary><key>Numa.LTermMigImbalThreshold</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>LargeInterleave</label><summary>Always
        use large page interleaving; 0 to disable.</summary><key>Numa.LargeInterleave</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Dynamic
        latency probe period</label><summary>Time (in ms) in between dynamic latency
        probing</summary><key>Numa.LatencyProbePeriod</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>10</min><max>100000</max><defaultValue>500</defaultValue></optionType></optionDef><optionDef><label>LocalityWeightActionAffinity</label><summary>Benefit
        of improving action affinity by 1.</summary><key>Numa.LocalityWeightActionAffinity</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>200</max><defaultValue>130</defaultValue></optionType></optionDef><optionDef><label>LocalityWeightMem</label><summary>Benefit
        of improving memory locality by 1 pct.</summary><key>Numa.LocalityWeightMem</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Migration
        imbalance threshold</label><summary>Minimum percent load imbalance between
        nodes to trigger migration</summary><key>Numa.MigImbalanceThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>200</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>MigPreventLTermThresh</label><summary>long
        term owed for a VM, in percentage, above which NUMA migration and swaps are
        disabled for that VM</summary><key>Numa.MigPreventLTermThresh</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Migration
        thrash threshold</label><summary>Maximum post-migration load imbalance as
        a percentage of pre-migration imbalance to prevent thrashing</summary><key>Numa.MigThrashThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>50</defaultValue></optionType></optionDef><optionDef><label>Minimum
        load improvement for single migration</label><summary>Minimum percent load
        balance improvement to allow single migration.swap</summary><key>Numa.MigThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>Monitor
        migration enable</label><summary>Allow NUMASched monitor migrations. Set to
        1 to enable; set to 0 to disable.</summary><key>Numa.MonMigEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Page
        migration enable</label><summary>Permit NUMASched to manipulate page migration.
        Set to 1 to enable; set to 0 to disable.</summary><key>Numa.PageMigEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>PageMigLinearRun</label><summary>page
        migration candidates for linear scan, 0 to disable</summary><key>Numa.PageMigLinearRun</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10000</max><defaultValue>95</defaultValue></optionType></optionDef><optionDef><label>PageMigRandomRun</label><summary>page
        migration candidates for random scan, 0 to disable</summary><key>Numa.PageMigRandomRun</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10000</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>PageMigRateMax</label><summary>max
        page migration rate</summary><key>Numa.PageMigRateMax</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>250000</max><defaultValue>8000</defaultValue></optionType></optionDef><optionDef><label>PreferHT</label><summary>Prefer
        using HyperThreads on the same NUMA node over full cores on multiple nodes;
        0 to disable.</summary><key>Numa.PreferHT</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Rebalancer
        core count</label><summary>Minimum number of cores per node required to enable
        NUMA rebalancer</summary><key>Numa.RebalanceCoresNode</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>8</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>Rebalancer
        total host core count</label><summary>Minimum number of total host cores required
        to enable NUMA rebalancer</summary><key>Numa.RebalanceCoresTotal</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>32</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>Enable
        rebalancer</label><summary>Enable or disable NUMA scheduler rebalancer</summary><key>Numa.RebalanceEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Rebalance
        period</label><summary>Frequency of NUMA node rebalancing in milliseconds</summary><key>Numa.RebalancePeriod</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>100</min><max>60000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>SwapConsiderPeriod</label><summary>time
        between reconsidering a client for swap, in units of NUMA rebalance period</summary><key>Numa.SwapConsiderPeriod</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10000</max><defaultValue>15</defaultValue></optionType></optionDef><optionDef><label>SwapInterval</label><summary>frequency
        of NUMA node swap rebalancing, in units of NUMA rebalance period</summary><key>Numa.SwapInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>10000</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>Enable
        virtual machine swaps for CPU</label><summary>Enable or disable virtual machine
        swaps across nodes to balance CPU load</summary><key>Numa.SwapLoadEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Enable
        virtual machine swaps for memory</label><summary>Enable or disable virtual
        machine swaps across nodes to improve memory locality</summary><key>Numa.SwapLocalityEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>SwapMigrateOnly</label><summary>frequency
        of NUMA VM migration only considerations, in units of NUMA rebalance period,
        0 to disable pure migrations</summary><key>Numa.SwapMigrateOnly</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>Configured
        OSData Location</label><summary>The configured location of the OSData partition.</summary><key>OSData.configuredLocation</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue></optionType></optionDef><optionDef><label>CStateMaxLatency</label><summary>In
        Custom policy, avoid a C-state whose latency is larger than this value (us)</summary><key>Power.CStateMaxLatency</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000000</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>CStatePredictionCoef</label><summary>In
        Custom policy, predict non-timer wakeup with error probability p, where CStatePredictionCoef
        = -ln(1 - p) * (1 &lt;&lt; 20)</summary><key>Power.CStatePredictionCoef</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2000000</max><defaultValue>110479</defaultValue></optionType></optionDef><optionDef><label>CStateResidencyCoef</label><summary>In
        Custom policy, avoid a C-state whose latency * CStateResidencyCoef &gt; predicted
        residence time</summary><key>Power.CStateResidencyCoef</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000000</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>CpuPolicy</label><summary>Host
        power management policy: High Performance, Balanced, Low Power, or Custom</summary><key>Power.CpuPolicy</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>Balanced</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>MaxCpuLoad</label><summary>In
        Custom policy, CPU utilization threshold below which CPU frequency can be
        dynamically adjusted</summary><key>Power.MaxCpuLoad</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>MaxFreqPct</label><summary>In
        Custom policy, do not use P-states faster than the given percentage of full
        CPU speed, rounded up to the next available P-state</summary><key>Power.MaxFreqPct</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>100</defaultValue></optionType></optionDef><optionDef><label>MinFreqPct</label><summary>In
        Custom policy, do not use P-states slower than the given percentage of full
        CPU speed</summary><key>Power.MinFreqPct</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>PerfBias</label><summary>In
        Custom policy, Performance Energy Bias Hint, where 0-15 directly specifies
        preference on a scale where 0=MaxPerf and 15=MinPower, while 16-18 chooses
        an automatically determined value from a preset policy: 16=Low Power, 17=Balanced,
        18=High Performance</summary><key>Power.PerfBias</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>18</max><defaultValue>17</defaultValue></optionType></optionDef><optionDef><label>PerfBiasEnable</label><summary>Use
        Performance Energy Bias Hint</summary><key>Power.PerfBiasEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TimerHz</label><summary>In
        Custom policy, dynamic power management timer sampling rate</summary><key>Power.TimerHz</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1000</max><defaultValue>100</defaultValue></optionType></optionDef><optionDef><label>UseCStates</label><summary>In
        Custom policy, use ACPI C-states when processor is idle</summary><key>Power.UseCStates</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>UsePStates</label><summary>In
        Custom policy, use ACPI P-states to save power when processor is busy</summary><key>Power.UsePStates</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>RdmFilter.HbaIsShared</label><summary>Allow
        local disks to be RDM candidates for Virtual Machines</summary><key>RdmFilter.HbaIsShared</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>ScratchConfig.ConfiguredScratchLocation</label><summary>The
        directory configured to be used for scratch space. Changes will take effect
        on next reboot.</summary><key>ScratchConfig.ConfiguredScratchLocation</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue></optionType></optionDef><optionDef><label>ScratchConfig.CurrentScratchLocation</label><summary>The
        directory currently being used for scratch space.</summary><key>ScratchConfig.CurrentScratchLocation</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>true</valueIsReadonly><defaultValue></defaultValue></optionType></optionDef><optionDef><label>ChangeQErrSetting</label><summary>Change
        the QErr value of devices to 0x0.</summary><key>Scsi.ChangeQErrSetting</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CompareLUNNumber</label><summary>Consider
        LUN number when determining LUN identity.</summary><key>Scsi.CompareLUNNumber</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>EnableCmdSanityCheck</label><summary>Enable
        Scsi command basic sanity checks. This option can crash the system if Scsi
        Command signature mismatches</summary><key>Scsi.EnableCmdSanityCheck</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>ExtendAPDCondition</label><summary>Trigger
        APD condition when paths are in unavailable states</summary><key>Scsi.ExtendAPDCondition</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>FailVMIOonAPD</label><summary>Fast
        fail virtual machine I/Os on APD Timeout.</summary><key>Scsi.FailVMIOonAPD</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>LogCmdErrors</label><summary>Log
        SCSI Device command errors.</summary><key>Scsi.LogCmdErrors</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>LogCmdRCErrorsFreq</label><summary>Number
        of consecutive RC errors to be seen before logging SCSI Device command.</summary><key>Scsi.LogCmdRCErrorsFreq</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>LogMPCmdErrors</label><summary>Log
        SCSI Multi-path plugin command errors.</summary><key>Scsi.LogMPCmdErrors</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>LogScsiAborts</label><summary>Log
        SCSI abort errors and success.</summary><key>Scsi.LogScsiAborts</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>LunCleanupInterval</label><summary>Timeout
        for purging stale LUNs. Any LUN which was seen more than the configured number
        of days ago, will be deleted by the daily cleanup operation</summary><key>Scsi.LunCleanupInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>100</max><defaultValue>7</defaultValue></optionType></optionDef><optionDef><label>MaxReserveBacktrace</label><summary>Log
        a backtrace if caller exceeds SCSI_MAX_RESERVE_TIME or SCSI_MAX_RESERVE_TOTALTIME
        (debug only)</summary><key>Scsi.MaxReserveBacktrace</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Maximum
        reserve time</label><summary>Maximum time (in milliseconds) a system-initiated
        reservation is normally held</summary><key>Scsi.MaxReserveTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>50</min><max>500</max><defaultValue>200</defaultValue></optionType></optionDef><optionDef><label>MaxReserveTotalTime</label><summary>Maximum
        time (in msecs) a system-initiated reservation normally takes from issue to
        release (debug only)</summary><key>Scsi.MaxReserveTotalTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>50</min><max>500</max><defaultValue>250</defaultValue></optionType></optionDef><optionDef><label>NvmeAdjustLocalNSQDepth</label><summary>Allow
        dividing the controller queue depth among the namespaces behind the controller
        for NVMe Local devices.</summary><key>Scsi.NvmeAdjustLocalNSQDepth</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>NvmeLogVerbose</label><summary>Enable
        verbose logging  for NVMe devices. This is a bitwise value and can be combined.
        1 = Log every command, 2 = Log ANA log page, 4 = Log ANA log page namespace
        list, 8 = Verbose logging</summary><key>Scsi.NvmeLogVerbose</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>15</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NvmeMaxUnmapBlockDescriptorCount</label><summary>Set
        maximum deallocate(unmap) descriptor count limit</summary><key>Scsi.NvmeMaxUnmapBlockDescriptorCount</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>256</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>NvmeMaxUnmapLbaCount</label><summary>Set
        maximum deallocate(unmap) size limit (in blocks)</summary><key>Scsi.NvmeMaxUnmapLbaCount</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Passthrough
        locking</label><summary>SCSI passthrough locking</summary><key>Scsi.PassthroughLocking</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>PcpusPerCompletionWorld</label><summary>Allocate
        number of storage adapter completion worlds based on pcpus per world across
        NUMA nodes.</summary><key>Scsi.PcpusPerCompletionWorld</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>64</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>ReserveBacktrace</label><summary>Log
        a backtrace for all Reserve/Release pairs (debug only)</summary><key>Scsi.ReserveBacktrace</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SCSIBlockUnsupportedOpcodesAndPages</label><summary>Enable
        or disable blocking unsupported SCSI opcodes and vpd/mode pages</summary><key>Scsi.SCSIBlockUnsupportedOpcodesAndPages</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>SCSIEnableDescToFixedConv</label><summary>Enable
        or disable conversion of descriptor format sense to fixed for older plugins</summary><key>Scsi.SCSIEnableDescToFixedConv</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>SCSIEnableDeviceLatencyHistogram</label><summary>Enable
        or disable updation of device latency histograms</summary><key>Scsi.SCSIEnableDeviceLatencyHistogram</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>SCSIStrictSPCVersionChecksForPEs</label><summary>Only
        LUNs with version &gt;= SCSI_ANSI_SCSI3_SPC4 can be PEs</summary><key>Scsi.SCSIStrictSPCVersionChecksForPEs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SCSI
        time-out re-stop time</label><summary>Delay (in milliseconds) after a stop
        due to time-out before the stop is re-issued</summary><key>Scsi.SCSITimeout_ReabortTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>99999999</max><defaultValue>5000</defaultValue></optionType></optionDef><optionDef><label>SCSI
        time-out scan time</label><summary>Time (in milliseconds) to sleep between
        checking for timed-out asynchronous I/O</summary><key>Scsi.SCSITimeout_ScanTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>99999999</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>SCSIioTraceBufSizeMB</label><summary>Logchannel
        buffer size for per device IO tracing in MB</summary><key>Scsi.SCSIioTraceBufSizeMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>2</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ScanOnDriverLoad</label><summary>Scan
        new SCSI buses on device driver load</summary><key>Scsi.ScanOnDriverLoad</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ScanSync</label><summary>Force
        LU scanning operations to be synchronous if set.</summary><key>Scsi.ScanSync</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>ScsiAllowDeviceSpinup</label><summary>Allow
        device spin up, if device is in spun down state.</summary><key>Scsi.ScsiAllowDeviceSpinup</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ScsiPathSplitUseSimpleCloneBuffer</label><summary>Use
        simple clone buffers to split IOs at path layer whenever possible.</summary><key>Scsi.ScsiPathSplitUseSimpleCloneBuffer</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ScsiRestartStalledQueueLatency</label><summary>Delay
        in ms before restarting a stalled queue </summary><key>Scsi.ScsiRestartStalledQueueLatency</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>60000</max><defaultValue>500</defaultValue></optionType></optionDef><optionDef><label>ScsiTMHardTimeout</label><summary>Timeout
        in milliseconds before signalling upper layers of wedged I/O (0 = Signalling
        disabled).</summary><key>Scsi.ScsiTMHardTimeout</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>600000</max><defaultValue>120000</defaultValue></optionType></optionDef><optionDef><label>ScsiUseVPDXCopyInfo</label><summary>Use
        Scsi VPD query for XCopy Info.</summary><key>Scsi.ScsiUseVPDXCopyInfo</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ScsiVVolPESNRO</label><summary>Default
        schedNumReqOutstanding value for a PE LUN.</summary><key>Scsi.ScsiVVolPESNRO</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>32</min><max>4096</max><defaultValue>256</defaultValue></optionType></optionDef><optionDef><label>TimeoutTMThreadExpires</label><summary>Life
        in seconds of timeout task mgmt handler thread</summary><key>Scsi.TimeoutTMThreadExpires</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>86400</max><defaultValue>1800</defaultValue></optionType></optionDef><optionDef><label>TimeoutTMThreadLatency</label><summary>Delay
        in ms before waking up new task mgmt thread </summary><key>Scsi.TimeoutTMThreadLatency</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>600000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>TimeoutTMThreadMax</label><summary>Max
        number of timeout task-mgmt handler threads</summary><key>Scsi.TimeoutTMThreadMax</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>16</max><defaultValue>16</defaultValue></optionType></optionDef><optionDef><label>TimeoutTMThreadMin</label><summary>Min
        number of timeout task-mgmt handler threads</summary><key>Scsi.TimeoutTMThreadMin</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>16</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TimeoutTMThreadRetry</label><summary>Delay
        in milliseconds before retrying taskmgmt which failed or for which the I/O
        did not complete</summary><key>Scsi.TimeoutTMThreadRetry</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1000</min><max>10000</max><defaultValue>2000</defaultValue></optionType></optionDef><optionDef><label>TransFailLogPct</label><summary>Percent
        of Transient failures seen on Scsi Device that will be logged.</summary><key>Scsi.TransFailLogPct</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>20</defaultValue></optionType></optionDef><optionDef><label>UseAdaptiveRetries</label><summary>Use
        adaptive retries for transient errors.</summary><key>Scsi.UseAdaptiveRetries</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Account
        lock failures</label><summary>Maximum allowed failed login attempts before
        locking out a user&apos;s account. Zero disables account locking.</summary><key>Security.AccountLockFailures</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>Account
        unlock time</label><summary>Duration in seconds to lock out a user&apos;s
        account after exceeding the maximum allowed failed login attempts.</summary><key>Security.AccountUnlockTime</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>999999999</max><defaultValue>900</defaultValue></optionType></optionDef><optionDef><label>Default
        shell access</label><summary>The default value of the &apos;shellAccess&apos;
        field if it is not specified explicitly while creating a new user account,
        when the caller has shell access.</summary><key>Security.DefaultShellAccess</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>Password
        history</label><summary>Number of passwords to remember for each user. Zero
        disables password history.</summary><key>Security.PasswordHistory</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>Password
        maximum age</label><summary>Maximum number of days between password changes.
        Affects all existing and new users.</summary><key>Security.PasswordMaxDays</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>99999</max><defaultValue>99999</defaultValue></optionType></optionDef><optionDef><label>Password
        quality control</label><summary>Raw options for pam_passwdqc PAM module. This
        value is used as is in PAM&apos;s configuration file, so use with caution.</summary><key>Security.PasswordQualityControl</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>retry=3
        min=disabled,disabled,disabled,7,7</defaultValue></optionType></optionDef><optionDef><label>SSH
        session limit</label><summary>Maximum number of SSH sessions for all users
        except user &apos;root&apos;.</summary><key>Security.SshSessionLimit</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>100</max><defaultValue>50</defaultValue></optionType></optionDef><optionDef><label>MaxConnPerIP</label><summary>Max
        number of TCP/IP connection per IP</summary><key>SunRPC.MaxConnPerIP</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>256</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>SendLowat</label><summary>Send
        buffer lowat (%)</summary><key>SunRPC.SendLowat</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>100</max><defaultValue>25</defaultValue></optionType></optionDef><optionDef><label>SetNoDelayedAck</label><summary>Set
        socket option to disable TCP delayed acknowledgements (Use this option under
        guidance of VMware support. Requires Remount)</summary><key>SunRPC.SetNoDelayedAck</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>WorldAffinity</label><summary>TX
        Affinity: 0 - Disabled, 1 - Issuing world, 2 - Exact RX world, 3 - Loose RX
        world</summary><key>SunRPC.WorldAffinity</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>SvMotionAvgDisksPerVM</label><summary>Initial
        Storage vMotion Heap Size is proportional to this setting</summary><key>SvMotion.SvMotionAvgDisksPerVM</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>4</min><max>1024</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.auditRecord.RemoteEnable</label><summary>Enable
        transmitting audit records to remote hosts.</summary><key>Syslog.global.auditRecord.remoteEnable</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.auditRecord.StorageCapacity</label><summary>Audit
        record storage capacity (in MiB).</summary><key>Syslog.global.auditRecord.storageCapacity</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>4</min><max>100</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.auditRecord.StorageDirectory</label><summary>Audit
        record storage directory.</summary><key>Syslog.global.auditRecord.storageDirectory</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>[]
        /scratch/auditLog</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.auditRecord.StorageEnable</label><summary>Enable
        audit record storage.</summary><key>Syslog.global.auditRecord.storageEnable</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.certificate.checkCRL</label><summary>Enable
        checking the revocation status of all the certificates in an SSL certificate
        chain.</summary><key>Syslog.global.certificate.checkCRL</key><optionType xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.certificate.checkSSLCerts</label><summary>Enforce
        checking of SSL certificates when transmitting messages to remote hosts.</summary><key>Syslog.global.certificate.checkSSLCerts</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.certificate.strictX509Compliance</label><summary>Enable
        strict compliance with X.509.</summary><key>Syslog.global.certificate.strictX509Compliance</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.defaultRotate</label><summary>Number
        of older log files to keep.</summary><key>Syslog.global.defaultRotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.defaultSize</label><summary>Size
        of each log file before switching to a new one (in KiB).</summary><key>Syslog.global.defaultSize</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>10240</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.droppedMsgs.FileRotate</label><summary>Number
        of older dropped message log files to keep.</summary><key>Syslog.global.droppedMsgs.fileRotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.droppedMsgs.FileSize</label><summary>Size
        of each dropped message log file before switching to a new one (in KiB).</summary><key>Syslog.global.droppedMsgs.fileSize</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>10240</max><defaultValue>100</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.logCheckSSLCerts</label><summary>DEPRECATED
        - use Syslog.global.certificate.checkSSLCerts. Enforce checking of SSL certificates
        when transmitting messages to remote hosts.</summary><key>Syslog.global.logCheckSSLCerts</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.logDir</label><summary>Datastore
        path of the directory to output logs to. Example: [datastoreName]/logdir</summary><key>Syslog.global.logDir</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>[]
        /scratch/log</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.logDirUnique</label><summary>Enable
        placing log files in a unique subdirectory of logdir, based on hostname.</summary><key>Syslog.global.logDirUnique</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.logFilters</label><summary>Double
        vertical bar (||) separated list of log filters. The format of a log filter
        is: numLogs | ident | logRegexp. &apos;numLogs&apos; sets the maximum number
        of log entries for the specified log messages. After reaching this number,
        the specified log messages are filtered and ignored. &apos;ident&apos; specifies
        one or more system components to apply the filter to the log messages that
        these components generate. &apos;logRegexp&apos; specifies a case-sensitive
        phrase with Python regular expression syntax to filter the log messages by
        their content.</summary><key>Syslog.global.logFilters</key><optionType xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue></optionType></optionDef><optionDef><label>Syslog.global.logFiltersEnable</label><summary>Enable
        the use of log filters.</summary><key>Syslog.global.logFiltersEnable</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.logHost</label><summary>Comma
        (,) separated list of remote hosts to transmit messages to. Format is: proto://hostname|ipv4|&apos;[&apos;ipv6&apos;]&apos;[:port][?formatter=value[&amp;framing=value]].
        Protocol must be one of (tcp|udp|ssl). If a port is not provided, ssl and
        tcp will use 1514; udp will use 514. Formatter must be one of (RFC_3164|RFC_5424).
        Framing must be one of (octet_counting|non_transparent). The default formatter
        is RFC 3164; the default framing is non_transparent.</summary><key>Syslog.global.logHost</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue></optionType></optionDef><optionDef><label>Syslog.global.logLevel</label><summary>Log
        filtering level. This should only be changed when troubleshooting an issue
        with the syslog daemon. Values may be &apos;debug&apos; (most detailed level),
        &apos;info&apos; (default detail level), &apos;warning&apos; (only warnings
        or errors), or &apos;error&apos; (only errors).</summary><key>Syslog.global.logLevel</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>error</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.msgQueueDropMark</label><summary>The
        message queue drop mark (as a percentage).</summary><key>Syslog.global.msgQueueDropMark</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>90</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.remoteHost.connectRetryDelay</label><summary>Delay
        before retrying to connect to a remote host after a connection attempt has
        failed (in seconds). </summary><key>Syslog.global.remoteHost.connectRetryDelay</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>2147483647</max><defaultValue>180</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.remoteHost.maxMsgLen</label><summary>Maximum
        remote host transmission length (in bytes) when using the TCP and TLS (SSL)
        protocols. Messages longer than this will be truncated.</summary><key>Syslog.global.remoteHost.maxMsgLen</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>1024</min><max>16384</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>Syslog.global.vsanBacking</label><summary>Allow
        the logging and audit record storage directories to be placed on a VSAN. WARNING!
        Enabling this parameter may cause ESXi to hang.</summary><key>Syslog.global.vsanBacking</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.LogEFI.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.LogEFI.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.Xorg.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.Xorg.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.apiForwarder.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.apiForwarder.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.attestd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.attestd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.auth.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.auth.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.catalog.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.catalog.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.clomd-whatif.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.clomd-whatif.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.clomd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.clomd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.clusterAgent.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.clusterAgent.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.cmmdsTimeMachine.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.cmmdsTimeMachine.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.cmmdsTimeMachineDump.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.cmmdsTimeMachineDump.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.cmmdsd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.cmmdsd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.crx-cli.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.crx-cli.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.dhclient.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.dhclient.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.dpd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.dpd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.entropyd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.entropyd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.envoy-access.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.envoy-access.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.envoy.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.envoy.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.epd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.epd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.esxcli.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.esxcli.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.esxgdpd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.esxgdpd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.esxioCommd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.esxioCommd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.esxtokend.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.esxtokend.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.esxupdate.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.esxupdate.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.etcd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.etcd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.fdm.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.fdm.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.gstored.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.gstored.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.hbrsrv.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.hbrsrv.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.healthd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.healthd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.healthdPlugins.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.healthdPlugins.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.hostd-probe.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.hostd-probe.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.hostd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.hostd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.hostdCgiServer.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.hostdCgiServer.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.hostprofiletrace.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.hostprofiletrace.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.infravisor.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.infravisor.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.iofiltervpd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.iofiltervpd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.ioinsight.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.ioinsight.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.keypersist.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.keypersist.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.kmxa.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.kmxa.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.kmxd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.kmxd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.lacp.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.lacp.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.lifecycle.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.lifecycle.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.loadESX.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.loadESX.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.localcli.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.localcli.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.metald.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.metald.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.nfcd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.nfcd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.osfsd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.osfsd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.rhttpproxy.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.rhttpproxy.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.sandboxd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.sandboxd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.sdrsInjector.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.sdrsInjector.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.sensord.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.sensord.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.settingsd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.settingsd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.shell.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.shell.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.sockrelay.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.sockrelay.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.spherelet.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.spherelet.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.storageRM.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.storageRM.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.swapobjd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.swapobjd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.syslog.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.syslog.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.trx.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.trx.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.usb.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.usb.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vdfs-proxy.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vdfs-proxy.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vdfs-server.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vdfs-server.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vds-vsipioctl.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vds-vsipioctl.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vdtc.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vdtc.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vitd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vitd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vltd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vltd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vmauthd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vmauthd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vmkdevmgr.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vmkdevmgr.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vmkernel.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vmkernel.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vmkeventd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vmkeventd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vmksummary.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vmksummary.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vmkwarning.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vmkwarning.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vobd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vobd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vprobe.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vprobe.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vpxa.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vpxa.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vsanEsxcli.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vsanEsxcli.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vsananalyticsevents.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vsananalyticsevents.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vsandevicemonitord.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vsandevicemonitord.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vsanesxcmd.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vsanesxcmd.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vsanfs.configdump.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vsanfs.configdump.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vsanfs.mgmt.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vsanfs.mgmt.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vsanfs.vdfsop.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vsanfs.vdfsop.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vsanmgmt.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vsanmgmt.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vsansystem.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vsansystem.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vsantraceUrgent.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vsantraceUrgent.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vsantraced.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vsantraced.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.vvold.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.vvold.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        rotations</label><summary>Number of older log files to keep for this logger.</summary><key>Syslog.loggers.watchdog.rotate</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Logger
        size</label><summary>Size of each log file before switching to another for
        this logger (in KiB).</summary><key>Syslog.loggers.watchdog.size</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>102400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>USB
        Arbitrator auto start disable</label><summary>Disable automatic start of USB
        Arbitrator.  If set USB passthrough will not be available until USB arbitrator
        is started at the command line.</summary><key>USB.arbitratorAutoStartDisabled</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>USB.devsShared</label><summary>Enable
        sharing (aka non-exclusive claiming) of USB devices with specified vendor
        and model ids.  0x0 is a wild card model which matches all models from the
        specified vendor.  The string must contain colon delimited numeric fields,
        respectively the vendor_id and product id.  If the latter is omitted from
        the last pair it is assumed to be 0x0.</summary><key>USB.devsShared</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>0x04b3:0</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>USB.quirks</label><summary>Additional
        USB device quirks to be added to the vmkusb native driver default quirks.
        \ Device quirks are software workarounds for hardware errata.  String format
        is &lt;vid&gt;:&lt;pid&gt;:&lt;low rev&gt;:&lt;high rev&gt;:&lt;quirk name&gt;,
        with colon delimited fields.  vid and pid are the \\&quot;usb id\\&quot; numbers
        for the USB device vendor and product, respectively (and e.g., 0x0e0f for
        vendor VMware), and low and high rev are the revisions (inclusive) between
        which to apply the quirk (e.g., 0 and 0xffff).  Quirk name is a string constant
        starting with UQ_.  Contact VMware support for a full list of valid quirk
        names.</summary><key>USB.quirks</key><optionType xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>ActiveDirectoryPreferredDomainControllers</label><summary>Preferred
        Domain Controllers for Active Directory</summary><key>UserVars.ActiveDirectoryPreferredDomainControllers</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>*</validCharacters></optionType></optionDef><optionDef><label>ActiveDirectoryVerifyCAMCertificate</label><summary>Enable
        or disable verification of SSL certificate for vSphere Authentication Proxy
        server</summary><key>UserVars.ActiveDirectoryVerifyCAMCertificate</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Direct
        Console User Interface (DCUI) timeout</label><summary>An idle time in seconds
        before DCUI is automatically logged out. Setting 0 disables the timeout.</summary><key>UserVars.DcuiTimeOut</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>86400</max><defaultValue>600</defaultValue></optionType></optionDef><optionDef><label>ESXiShellInteractiveTimeOut</label><summary>Idle
        time before an interactive shell is automatically logged out (in seconds,
        0 disables).  Takes effect only for newly logged in sessions.</summary><key>UserVars.ESXiShellInteractiveTimeOut</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>86400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>ESXiShellTimeOut</label><summary>Time
        before automatically disabling local and remote shell access (in seconds,
        0 disables).  Takes effect after the services are restarted.</summary><key>UserVars.ESXiShellTimeOut</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>86400</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>ESXiVPsAllowedCiphers</label><summary>ESXi
        VPs allowed ciphers. List of allowed ciphers to be used by the VPs. Must be
        in the form accepted by the SSL_CTX_set_cipher_list API.</summary><key>UserVars.ESXiVPsAllowedCiphers</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>ECDHE+AESGCM:ECDHE+AES</defaultValue><validCharacters>*</validCharacters></optionType></optionDef><optionDef><label>ESXiVPsDisabledProtocols</label><summary>ESXi
        VPs disabled protocols (Deprecated). All protocols prior to tlsv1.2 are no
        longer supported and must remain disabled.</summary><key>UserVars.ESXiVPsDisabledProtocols</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>sslv3,tlsv1,tlsv1.1</defaultValue><validCharacters>*</validCharacters></optionType></optionDef><optionDef><label>EsximageNetRateLimit</label><summary>Set
        the maximum rate, in bytes/sec, for downloading VIBs (0=no limit)</summary><key>UserVars.EsximageNetRateLimit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2147483647</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>EsximageNetRetries</label><summary>Set
        the number of times to retry in case of failure while downloading VIBs</summary><key>UserVars.EsximageNetRetries</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1024</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>EsximageNetTimeout</label><summary>Set
        the timeout in seconds for downloading VIBs (0=no timeout)</summary><key>UserVars.EsximageNetTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1024</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>Hardware
        Health Ignored Sensors</label><summary>List of comma-seperated sensor ID&apos;s
        to ignore for alarm generation.</summary><key>UserVars.HardwareHealthIgnoredSensors</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue></defaultValue><validCharacters>*</validCharacters></optionType></optionDef><optionDef><label>Hardware
        Health Sync Interval</label><summary>Interval in minutes for periodic synchronization
        of hardware sensor state with VC alarm state. Setting 0 disables synchronization.</summary><key>UserVars.HardwareHealthSyncTime</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>43200</max><defaultValue>360</defaultValue></optionType></optionDef><optionDef><label>**
        FIXME EsxHostAdvSettings.UserVars.HostClientCEIPOptIn.label (option.vmsg)
        - Host Client CEIP opt-in state</label><summary>** FIXME EsxHostAdvSettings.UserVars.HostClientCEIPOptIn.summary
        (option.vmsg) - Whether or not to opt-in for the Customer Experience Improvement
        Program in Host Client, 0 for ask, 1 for yes, 2 for no</summary><key>UserVars.HostClientCEIPOptIn</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>**
        FIXME EsxHostAdvSettings.UserVars.HostClientDefaultConsole.label (option.vmsg)
        - Default console type when clicking on screen shot</label><summary>** FIXME
        EsxHostAdvSettings.UserVars.HostClientDefaultConsole.summary (option.vmsg)
        - The default console to use when clicking on a VM screen shot in Host Client,
        WebMKS or VMRC</summary><key>UserVars.HostClientDefaultConsole</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>webmks</defaultValue><validCharacters>*</validCharacters></optionType></optionDef><optionDef><label>**
        FIXME EsxHostAdvSettings.UserVars.HostClientEnableMOTDNotification.label (option.vmsg)
        - Show Host Client MOTD notification</label><summary>** FIXME EsxHostAdvSettings.UserVars.HostClientEnableMOTDNotification.summary
        (option.vmsg) - Whether or not to enable MOTD notification on login for Host
        Client</summary><key>UserVars.HostClientEnableMOTDNotification</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>**
        FIXME EsxHostAdvSettings.UserVars.HostClientEnableVisualEffects.label (option.vmsg)
        - Enable Host Client Visual Effects</label><summary>** FIXME EsxHostAdvSettings.UserVars.HostClientEnableVisualEffects.summary
        (option.vmsg) - Whether or not to enable visual effects for Host Client</summary><key>UserVars.HostClientEnableVisualEffects</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>**
        FIXME EsxHostAdvSettings.UserVars.HostClientSessionTimeout.label (option.vmsg)
        - Host Client session timeout</label><summary>** FIXME EsxHostAdvSettings.UserVars.HostClientSessionTimeout.summary
        (option.vmsg) - Default timeout for Host Client sessions in seconds</summary><key>UserVars.HostClientSessionTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>7200</max><defaultValue>900</defaultValue></optionType></optionDef><optionDef><label>**
        FIXME EsxHostAdvSettings.UserVars.HostClientShowOnlyRecentObjects.label (option.vmsg)
        - Show recent objects in Host Client</label><summary>** FIXME EsxHostAdvSettings.UserVars.HostClientShowOnlyRecentObjects.summary
        (option.vmsg) - Whether or not to show only recent objects in Host Client</summary><key>UserVars.HostClientShowOnlyRecentObjects</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>**
        FIXME EsxHostAdvSettings.UserVars.HostClientWelcomeMessage.label (option.vmsg)
        - Welcome message displayed on login in Host Client</label><summary>** FIXME
        EsxHostAdvSettings.UserVars.HostClientWelcomeMessage.summary (option.vmsg)
        - The welcome message that is displayed when a user logs into the Host Client</summary><key>UserVars.HostClientWelcomeMessage</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>Welcome
        to {{hostname}}</defaultValue><validCharacters>*</validCharacters></optionType></optionDef><optionDef><label>HostdStatsstoreRamdiskSize</label><summary>Explicitly
        specify size for the ramdisk hostd uses to store stats (in megabytes, 0 default).
        Takes effect after hostd service is restarted.</summary><key>UserVars.HostdStatsstoreRamdiskSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1024</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>ProductLockerLocation</label><summary>Path
        to VMware Tools and vSphere Client repository</summary><key>UserVars.ProductLockerLocation</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>/locker/packages/vmtoolsRepo/</defaultValue><validCharacters>*</validCharacters></optionType></optionDef><optionDef><label>SuppressCoredumpWarning</label><summary>Do
        not show warning for disabled or unconfigured coredump target</summary><key>UserVars.SuppressCoredumpWarning</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SuppressHyperthreadWarning</label><summary>Do
        not show warning for potential security vulnerability due to hyperthreading</summary><key>UserVars.SuppressHyperthreadWarning</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SuppressSgxAddPackageWarning</label><summary>Do
        not show warning for SGX disabled due to the addition of a CPU package to
        the host.</summary><key>UserVars.SuppressSgxAddPackageWarning</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SuppressSgxDisabledWarning</label><summary>Do
        not show warning for SGX disabled due to Intel Errata CFW101.</summary><key>UserVars.SuppressSgxDisabledWarning</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>SuppressShellWarning</label><summary>Do
        not show warning for enabled local and remote shell access</summary><key>UserVars.SuppressShellWarning</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>ToolsRamdisk</label><summary>Use
        VMware Tools repository from /tools ramdisk.</summary><key>UserVars.ToolsRamdisk</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>CacheStatsEnable</label><summary>Vitual
        Flash Read Cache statistics enable ?</summary><key>VFLASH.CacheStatsEnable</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>CacheStatsFromVFC</label><summary>Use
        cache statistics from virtual Flash Read Cache module ?</summary><key>VFLASH.CacheStatsFromVFC</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>MaxCacheFileSizeMB</label><summary>Maximum
        file size (in MB) of virtual Flash Read supported</summary><key>VFLASH.MaxCacheFileSizeMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>4</min><max>409600</max><defaultValue>409600</defaultValue></optionType></optionDef><optionDef><label>MaxDiskFileSizeGB</label><summary>Maximum
        supported disk size (in GB) with virtual Flash Read Cache configuration</summary><key>VFLASH.MaxDiskFileSizeGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>16384</max><defaultValue>16384</defaultValue></optionType></optionDef><optionDef><label>MaxHeapSizeMB</label><summary>Maximum
        size (in MB) to which the virtual flash heap is allowed to grow</summary><key>VFLASH.MaxHeapSizeMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>16</min><max>128</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>MaxResourceGBForVmCache</label><summary>Maximum
        supported virtual flash resource (in GB) to be allocated for VM caches</summary><key>VFLASH.MaxResourceGBForVmCache</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>500</min><max>65536</max><defaultValue>2048</defaultValue></optionType></optionDef><optionDef><label>ResourceUsageThreshold</label><summary>Threshold
        (in percentage) of virtual flash resource usage</summary><key>VFLASH.ResourceUsageThreshold</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>99</max><defaultValue>80</defaultValue></optionType></optionDef><optionDef><label>VMFS.UnresolvedVolumeLiveCheck</label><summary>Enable/disable
        liveliness check during unresolved volume query.</summary><key>VMFS.UnresolvedVolumeLiveCheck</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>EnableBlockDelete</label><summary>Enable
        VMFS block delete when UNMAP is issued from guest OS</summary><key>VMFS3.EnableBlockDelete</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>FailVolumeOpenIfAPD</label><summary>Fail
        VMFS volume open operation if the underlying device is deemed to be under
        an all-paths-down condition</summary><key>VMFS3.FailVolumeOpenIfAPD</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Allow
        multi-writer Generation Based Locking</label><summary>Enable support for more
        than 8 hosts using multi-writer mode locks on virtual-disks</summary><key>VMFS3.GBLAllowMW</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>HardwareAcceleratedLocking</label><summary>Enable
        hardware accelerated VMFS locking (requires compliant hardware). Please see
        http://kb.vmware.com/kb/2094604 before disabling this option</summary><key>VMFS3.HardwareAcceleratedLocking</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>LFBCSlabSizeMax</label><summary>Maximum
        size (in MB) to which the VMFS affinity manager cluster cache is allowed to
        grow.</summary><key>VMFS3.LFBCSlabSizeMaxMB</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>8</defaultValue></optionType></optionDef><optionDef><label>MaxAddressableSpaceTB</label><summary>Maximum
        size of all open files that VMFS cache will support before eviction mechanisms
        kick in</summary><key>VMFS3.MaxAddressableSpaceTB</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>32</min><max>128</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>MaxHeapSizeMB</label><summary>Maximum
        size (in MB) to which the VMFS heap is allowed to grow</summary><key>VMFS3.MaxHeapSizeMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>16</min><max>768</max><defaultValue>768</defaultValue></optionType></optionDef><optionDef><label>MaxextendedTxnsUsingfs3Heap</label><summary>Maximum
        number of extended transactions for which log space can be allocated from
        VMFS3 heap when the extendedTxnRegion is full</summary><key>VMFS3.MaxextendedTxnsUsingfs3Heap</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>20</min><max>40</max><defaultValue>20</defaultValue></optionType></optionDef><optionDef><label>MinAddressableSpaceTB</label><summary>Minimum
        size of all open files that VMFS cache will support (guaranteed)</summary><key>VMFS3.MinAddressableSpaceTB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>OpenWithoutJournal</label><summary>Open
        file system when out of space for journal allocation, allowing reads and no
        meta-data updates</summary><key>VMFS3.OpenWithoutJournal</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>PBCapMissRatioIntervalSec</label><summary>Frequency
        (in seconds) that the Capacity Miss Ratio is computed for the VMFS Pointer
        Block cache.</summary><key>VMFS3.PBCapMissRatioIntervalSec</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1800</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>StAtExclLockEnd</label><summary>
        Generate Back Trace in FS3_EndIOExclusive</summary><key>VMFS3.StAtExclLockEnd</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>Use
        ATS For HB On VMFS5</label><summary>Use ATS for Heartbeat on ATS supported
        VMFS5 volumes</summary><key>VMFS3.UseATSForHBOnVMFS5</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.allowCoreDumpOnUsb</label><summary>Enable/Disable
        creation of core dump file on USB devices.</summary><key>VMkernel.Boot.allowCoreDumpOnUsb</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.atsSupport</label><summary>Enable/Disable
        PCIe Address Translation Services</summary><key>VMkernel.Boot.atsSupport</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.autoCreateDumpFile</label><summary>If
        enabled and if no suitable dump partition or dump file exists, create a dump
        file.</summary><key>VMkernel.Boot.autoCreateDumpFile</key><optionType xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.autoPartition</label><summary>Enable/Disable
        auto-partitioning of empty local disks.</summary><key>VMkernel.Boot.autoPartition</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.autoPartitionCreateUSBCoreDumpPartition</label><summary>Enable/Disable
        auto-partitioning of core dump partition for USB boot devices. Requires that
        autoPartition is set to TRUE as well.</summary><key>VMkernel.Boot.autoPartitionCreateUSBCoreDumpPartition</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.autoPartitionDiskDumpPartitionSize</label><summary>Disk
        dump partition size in MB that gets configured during the auto-partition process.</summary><key>VMkernel.Boot.autoPartitionDiskDumpPartitionSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>2560</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.bootDeviceRescanTimeout</label><summary>Boot
        device rescan timeout (in minutes).</summary><key>VMkernel.Boot.bootDeviceRescanTimeout</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.busSpeedMayVary</label><summary>Allow
        different APIC timer speeds on different CPUs.</summary><key>VMkernel.Boot.busSpeedMayVary</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.cacheFlushImmOnAllHalt</label><summary>Flush
        caches immediately if all cores sharing LLC halt (AMD only)</summary><key>VMkernel.Boot.cacheFlushImmOnAllHalt</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.checkCPUIDLimit</label><summary>Refuse
        to run on CPUID limited cpus.</summary><key>VMkernel.Boot.checkCPUIDLimit</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.checkPages</label><summary>Check
        that free and free-lpage-pool pages are not corrupted.</summary><key>VMkernel.Boot.checkPages</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.com1_baud</label><summary>Baud
        rate for COM1 (0 -&gt; automatic)</summary><key>VMkernel.Boot.com1_baud</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.com2_baud</label><summary>Baud
        rate for COM2 (0 -&gt; automatic)</summary><key>VMkernel.Boot.com2_baud</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.debugBreak</label><summary>Break
        into debugger during vmkernel initialization.</summary><key>VMkernel.Boot.debugBreak</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.debugLogToSerial</label><summary>0=Serial
        debug logging off, 1=Serial debug logging on, 2=Defer to config option DebugLogToSerial.</summary><key>VMkernel.Boot.debugLogToSerial</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.deviceBindParallel</label><summary>Enable
        parallel binding of devices across drivers in the device manager.</summary><key>VMkernel.Boot.deviceBindParallel</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.disableACSCheck</label><summary>Bypass
        ACS capability checks on all PCIE devices</summary><key>VMkernel.Boot.disableACSCheck</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.disableCFOH</label><summary>Disable
        Cache Flush on Halt</summary><key>VMkernel.Boot.disableCFOH</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.disableHwrng</label><summary>Disable
        hardware random number generator (RDRAND, RDSEED). Overrides VMkernel.Boot.entropySources.</summary><key>VMkernel.Boot.disableHwrng</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.diskDumpSlotSize</label><summary>Disk
        dump slot size in MB. 0 = automatically sized, otherwise requested size &gt;=
        100 MB.</summary><key>VMkernel.Boot.diskDumpSlotSize</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.dmaEngineExposeIdentityMapping</label><summary>Whether
        to expose whether DMA engines do identity mapping.</summary><key>VMkernel.Boot.dmaEngineExposeIdentityMapping</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.dmaMapperPolicy</label><summary>DMA
        mapping policy to use.</summary><key>VMkernel.Boot.dmaMapperPolicy</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>debug</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.dumpSize</label><summary>Maximum
        core dump file size in MB. Used for automatic core dump file creation. 0 =
        automatically sized.</summary><key>VMkernel.Boot.dumpSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.enableACSCheckForRP</label><summary>Enable
        ACS capability checks for Root Port</summary><key>VMkernel.Boot.enableACSCheckForRP</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.entropySources</label><summary>Which
        entropy sources to enable. 0=defaults, otherwise bitmask values: 1=interrupts,
        2=RDRAND, 4=RDSEED, 8=entropyd. If RDSEED is supported, the default is FIPS
        compliance. Otherwise the default is all entropy sources except entropyd.</summary><key>VMkernel.Boot.entropySources</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.execInstalledOnly</label><summary>Execute
        only those files that have been installed via a vib package and have not been
        modified.</summary><key>VMkernel.Boot.execInstalledOnly</key><optionType xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMKernel.Boot.fakePMemPct</label><summary>Amount
        of fake persistent memory (in pct of all volatile memory)</summary><key>VMkernel.Boot.fakePMemPct</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.forceHyperthreadingMitigation</label><summary>Restrict
        the simultaneous use of logical processors from the same hyperthreaded core
        regardless of detected security vulnerabilities.</summary><key>VMkernel.Boot.forceHyperthreadingMitigation</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.fsCheck</label><summary>Run
        filesystem checks on system partitions.</summary><key>VMkernel.Boot.fsCheck</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.gdbPort</label><summary>gdb
        port; com1 or com2</summary><key>VMkernel.Boot.gdbPort</key><optionType xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>default</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.heapCheckTimerInterval</label><summary>Interval
        in seconds between heap timer checks</summary><key>VMkernel.Boot.heapCheckTimerInterval</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.heapFreePoisonByte</label><summary>Byte
        pattern used to poison freed memory</summary><key>VMkernel.Boot.heapFreePoisonByte</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>255</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.heapMetaPoisonByte</label><summary>Byte
        pattern used to poison red zones for allocations</summary><key>VMkernel.Boot.heapMetaPoisonByte</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>90</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.heapMetadataProtect</label><summary>Use
        poisoned red zones to protect against under/overruns</summary><key>VMkernel.Boot.heapMetadataProtect</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.heapPoisonFreeMem</label><summary>Poison
        free memory to catch use after free bugs</summary><key>VMkernel.Boot.heapPoisonFreeMem</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.heapPoisonTimerChecks</label><summary>Check
        heap poisoned areas for corruption on regular intervals</summary><key>VMkernel.Boot.heapPoisonTimerChecks</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.hyperthreading</label><summary>Enable
        hyperthreading if available.</summary><key>VMkernel.Boot.hyperthreading</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.hyperthreadingMitigation</label><summary>Restrict
        the simultaneous use of logical processors from the same hyperthreaded core
        as necessary to mitigate a security vulnerability.</summary><key>VMkernel.Boot.hyperthreadingMitigation</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.hyperthreadingMitigationIntraVM</label><summary>Restrict
        the simultaneous use of logical processors from the same hyperthreaded core
        as necessary to mitigate a security vulnerability within a single VM.</summary><key>VMkernel.Boot.hyperthreadingMitigationIntraVM</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.ignoreMsrFaults</label><summary>Ignore
        general protection faults as a result of rdmsr and wrmsr instructions</summary><key>VMkernel.Boot.ignoreMsrFaults</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.inputPassthru</label><summary>Pass
        HID input devices through to user worlds via character device</summary><key>VMkernel.Boot.inputPassthru</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.intrBalancingEnabled</label><summary>Indicates
        if interrupt balancing is enabled.</summary><key>VMkernel.Boot.intrBalancingEnabled</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.ioAbilityChecks</label><summary>Enforce
        checking of whether regions can be DMA mapped.</summary><key>VMkernel.Boot.ioAbilityChecks</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.iovDisableIR</label><summary>Disable
        Interrupt Remapping in the IOMMU.</summary><key>VMkernel.Boot.iovDisableIR</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.iovEnablePostedIntr</label><summary>Enable
        support for posted interrupts in the IOMMU.</summary><key>VMkernel.Boot.iovEnablePostedIntr</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.ipmiEnabled</label><summary>Enable
        IPMI</summary><key>VMkernel.Boot.ipmiEnabled</key><optionType xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.isPerFileSchedModelActive</label><summary>Enable
        per file scheduling model on this host</summary><key>VMkernel.Boot.isPerFileSchedModelActive</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.kbddev</label><summary>Enable
        VMkernel char driver interface between host keyboard and Guest</summary><key>VMkernel.Boot.kbddev</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.leaveWakeGPEsDisabled</label><summary>Disallow
        a wake GPE from also being a runtime GPE</summary><key>VMkernel.Boot.leaveWakeGPEsDisabled</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>LogEFI
        Level</label><summary>Log level for LogEFI.</summary><key>VMkernel.Boot.logEFILevel</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.logPort</label><summary>Serial
        port to enable for logging; com1 or com2</summary><key>VMkernel.Boot.logPort</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>default</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.maxLogEntries</label><summary>Size
        of the kernel log buffer in 256-byte lines. 0=Use default. Min is 1024. Max
        is 32768.</summary><key>VMkernel.Boot.maxLogEntries</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.maxPCPUS</label><summary>Number
        of PCPUs vmkernel should use.</summary><key>VMkernel.Boot.maxPCPUS</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.maxPCPUsNUMAInterleaving</label><summary>Enable
        NUMA-node interleaving of enabled PCPUs.</summary><key>VMkernel.Boot.maxPCPUsNUMAInterleaving</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.maxVMs</label><summary>Max
        number of VMs VMKernel should support. 0 == determine at runtime</summary><key>VMkernel.Boot.maxVMs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.memCheckEveryWord</label><summary>Check
        every single word when checking mem.</summary><key>VMkernel.Boot.memCheckEveryWord</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.memLowReservedMB</label><summary>Amount
        of low memory (&lt; 4 GB) which gets reserved. 0 == determine at runtime</summary><key>VMkernel.Boot.memLowReservedMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.memmapMaxEarlyPoisonMemMB</label><summary>Memory
        that should be poisoned during early initialization.</summary><key>VMkernel.Boot.memmapMaxEarlyPoisonMemMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>65536</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.memmapMaxPhysicalMemMB</label><summary>Maximum
        physical memory (in MB) addressable by kernel, used to calculate the cut-off
        MPN, when added to the first valid memory MPN.</summary><key>VMkernel.Boot.memmapMaxPhysicalMemMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>-9223372036854775808</min><max>9223372036854775807</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.memmapMaxRAMMB</label><summary>Maximum
        conventional memory (RAM) supported on the system. Additional RAM above this
        limit will not be used by the system.</summary><key>VMkernel.Boot.memmapMaxRAMMB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>33585088</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.microcodeUpdate</label><summary>Update
        microcode from boot module if available</summary><key>VMkernel.Boot.microcodeUpdate</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.microcodeUpdateForce</label><summary>Disable
        check that microcode update is newer than installed microcode and that both
        are released versions</summary><key>VMkernel.Boot.microcodeUpdateForce</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netCoalesceTimerHdlrPcpu</label><summary>Pcpu
        that coalesce timeout handler runs on.</summary><key>VMkernel.Boot.netCoalesceTimerHdlrPcpu</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netGPHeapMaxMBPerGB</label><summary>Maximum
        MB of the general purpose networking heap to be allocated per GB of physical
        memory.</summary><key>VMkernel.Boot.netGPHeapMaxMBPerGB</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netMaxPktsToProcess</label><summary>Maximum
        number of packets to process in each invocation packet processing routine</summary><key>VMkernel.Boot.netMaxPktsToProcess</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netMaxPktsToRelease</label><summary>Maximum
        number of packets to release in each invocation packet releasing routine</summary><key>VMkernel.Boot.netMaxPktsToRelease</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>128</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netNetqueueEnabled</label><summary>Enable/Disable
        NetQueue support.</summary><key>VMkernel.Boot.netNetqueueEnabled</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netNetqueueEnblSwlroWithPnicHwlro</label><summary>Enable/Disable
        SWLRO for PNIC with HWLRO. Requires REBOOT.</summary><key>VMkernel.Boot.netNetqueueEnblSwlroWithPnicHwlro</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netNetqueueMaxFiltersPerUplink</label><summary>Maximum
        number of netqueue filters for Uplink. Maximum value for this setting is 32768.
        Requires REBOOT.</summary><key>VMkernel.Boot.netNetqueueMaxFiltersPerUplink</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>4096</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netNetqueueMaxLearnedFilters</label><summary>Maximum
        number of hostwide netqueue learned filters. Maximum value for this setting
        is 16384. Requires REBOOT.</summary><key>VMkernel.Boot.netNetqueueMaxLearnedFilters</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>9216</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netNetqueueMaxStaticFilters</label><summary>Maximum
        number of hostwide netqueue static filters. Maximum value for this setting
        is 16384. Requires REBOOT.</summary><key>VMkernel.Boot.netNetqueueMaxStaticFilters</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>10240</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netPagePoolLimitCap</label><summary>Maximum
        number of pages period for the packet page pool.</summary><key>VMkernel.Boot.netPagePoolLimitCap</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>1048576</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netPagePoolLimitPerGB</label><summary>Maximum
        number of pages for the packet page pool per gigabyte.</summary><key>VMkernel.Boot.netPagePoolLimitPerGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>5120</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netPagePoolResvCap</label><summary>Maximum
        number of pages to reserve for the packet page pool.</summary><key>VMkernel.Boot.netPagePoolResvCap</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netPagePoolResvPerGB</label><summary>Number
        of pages to reserve for the packet page pool per gigabyte.</summary><key>VMkernel.Boot.netPagePoolResvPerGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netPktHeapMaxMBPerGB</label><summary>Maximum
        MB of low-memory packet heap to be allocated per GB of physical memory. Maximum
        value for this setting is 512.</summary><key>VMkernel.Boot.netPktHeapMaxMBPerGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>6</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netPktHeapMinMBPerGB</label><summary>Minimum
        MB of low-memory packet heap to be allocated per GB of physical memory. Maximum
        value for this setting is 512.</summary><key>VMkernel.Boot.netPktHeapMinMBPerGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netPktPoolMaxMBPerGB</label><summary>Maximum
        MB of networking packet buffer pool to be allocated per GB of physical memory.
        Maximum value for this setting is 512. Net packet pool maximum per system
        will be at least 656MB.</summary><key>VMkernel.Boot.netPktPoolMaxMBPerGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>75</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netPktPoolMinMBPerGB</label><summary>Minimum
        MB of networking packet buffer pool to be allocated per GB of physical memory
        (multiple of 24)</summary><key>VMkernel.Boot.netPktPoolMinMBPerGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.netPreemptionEnabled</label><summary>Enable/disable
        preemption support in overall networking area</summary><key>VMkernel.Boot.netPreemptionEnabled</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.nmiAction</label><summary>Action
        on hardware generated NMI: 0=default (panic, unless changed by advanced config
        option), 1=enter debugger, 2=panic, 3=log and ignore (not recommended), 4=log
        and ignore if undiagnosed</summary><key>VMkernel.Boot.nmiAction</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.numSpareCoresPerLLC</label><summary>Number
        of spare cores reserved at boot time per last-level cache (LLC)</summary><key>VMkernel.Boot.numSpareCoresPerLLC</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.numaLatencyRemoteThresholdPct</label><summary>Maximum
        measured memory access latency difference (in percent units) between 2 pairs
        of NUMA nodes for the pairs to be considered equidistant</summary><key>VMkernel.Boot.numaLatencyRemoteThresholdPct</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>10</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.overrideDuplicateImageDetection</label><summary>Override
        duplicate ESXi image detection</summary><key>VMkernel.Boot.overrideDuplicateImageDetection</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.pciBarAllocPolicy</label><summary>PCI
        BAR allocation policy; 0=first-fit, 1=smallest-fit, 2=BAR-fit</summary><key>VMkernel.Boot.pciBarAllocPolicy</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.pcipDisablePciErrReporting</label><summary>Disable
        error reporting for PCI passthru devices.</summary><key>VMkernel.Boot.pcipDisablePciErrReporting</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.poisonMarker</label><summary>Value
        used to poison memmap pages</summary><key>VMkernel.Boot.poisonMarker</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>-9223372036854775808</min><max>9223372036854775807</max><defaultValue>-6148914691236517206</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.poisonPagePool</label><summary>Poison
        memmap pages</summary><key>VMkernel.Boot.poisonPagePool</key><optionType xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.preventFreePageMapping</label><summary>Prevent
        mapping of free pages</summary><key>VMkernel.Boot.preventFreePageMapping</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.rdmaRoceIPBasedGidGeneration</label><summary>Use
        the new IP-based GID generation for RoCE.</summary><key>VMkernel.Boot.rdmaRoceIPBasedGidGeneration</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.rdmaUseTeamingPolicy</label><summary>Use
        teaming policy for rdma connection.</summary><key>VMkernel.Boot.rdmaUseTeamingPolicy</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.rtcEnableEFI</label><summary>Enable
        UEFI Runtime Services as real time clock</summary><key>VMkernel.Boot.rtcEnableEFI</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.rtcEnableLegacy</label><summary>Enable
        legacy CMOS device as real time clock</summary><key>VMkernel.Boot.rtcEnableLegacy</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.rtcEnableLegacyForce</label><summary>Enable
        legacy CMOS device as real time clock even if FADT has the CMOS RTC Not Present
        flag set</summary><key>VMkernel.Boot.rtcEnableLegacyForce</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.rtcEnableTAD</label><summary>Enable
        ACPI 5.0 Time and Alarm Device as real time clock</summary><key>VMkernel.Boot.rtcEnableTAD</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.scrubIgnoredPages</label><summary>Check
        pages that were ignored due to vmbIgnoreStartMPN and vmbIgnoreNumMPNs boot
        options.</summary><key>VMkernel.Boot.scrubIgnoredPages</key><optionType xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.scrubMemoryAfterModuleLoad</label><summary>Check
        all memory after each module load. This causes booting to be very slow.</summary><key>VMkernel.Boot.scrubMemoryAfterModuleLoad</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.serialUntrusted</label><summary>Disable
        serial port if UART misbehaves.</summary><key>VMkernel.Boot.serialUntrusted</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.skipPartitioningSsds</label><summary>If
        enabled, skip auto-partitioning of empty local SSDs.</summary><key>VMkernel.Boot.skipPartitioningSsds</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.storAdptrMultCplWrldsPerNuma</label><summary>Pcpu
        Based multiple adapter completion worlds per Numa</summary><key>VMkernel.Boot.storAdptrMultCplWrldsPerNuma</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.storageEnablePrpAtPsa</label><summary>Enable
        NVMe PRP handling in PSA</summary><key>VMkernel.Boot.storageEnablePrpAtPsa</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.storageHeapMaxSize</label><summary>Maximum
        size in bytes of the main storage heap</summary><key>VMkernel.Boot.storageHeapMaxSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.storageHeapMinSize</label><summary>Minimum
        size in bytes of the main storage heap</summary><key>VMkernel.Boot.storageHeapMinSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.storageMaxDevices</label><summary>Maximum
        number of supported SCSI devices</summary><key>VMkernel.Boot.storageMaxDevices</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.storageMaxPaths</label><summary>Maximum
        number of supported SCSI paths</summary><key>VMkernel.Boot.storageMaxPaths</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>4096</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.storageMaxVMsPerDevice</label><summary>Maximum
        number of VMs expected to use a given device</summary><key>VMkernel.Boot.storageMaxVMsPerDevice</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>32</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.swMemoryTiering</label><summary>Enable
        Software Memory Tiering</summary><key>VMkernel.Boot.swMemoryTiering</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.terminateVMOnPDL</label><summary>Terminate
        virtual machine on permanent loss of storage</summary><key>VMkernel.Boot.terminateVMOnPDL</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.tscSpeedMayVary</label><summary>Allow
        different TSC speeds on different CPUs.</summary><key>VMkernel.Boot.tscSpeedMayVary</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.tty1Port</label><summary>TTY1
        port; com1, com2 ... to enable</summary><key>VMkernel.Boot.tty1Port</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>default</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.tty2Port</label><summary>TTY2
        port; com1, com2 ... to enable</summary><key>VMkernel.Boot.tty2Port</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>default</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.updateBusIRQ</label><summary>Allow
        adding/removing busIRQ information</summary><key>VMkernel.Boot.updateBusIRQ</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.useNUMAInfo</label><summary>Enable/disable
        NUMA-ness</summary><key>VMkernel.Boot.useNUMAInfo</key><optionType xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.useReliableMem</label><summary>System
        is aware of reliable memory.</summary><key>VMkernel.Boot.useReliableMem</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.useSLIT</label><summary>Use
        NUMA latency information from the SLIT table if available</summary><key>VMkernel.Boot.useSLIT</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.vga</label><summary>Enable/Disable
        VGA support</summary><key>VMkernel.Boot.vga</key><optionType xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.visorfsSwap</label><summary>Enable
        VisorFS swap if the system matches the required criteria (auto)</summary><key>VMkernel.Boot.visorfsSwap</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.vmkATKeyboard</label><summary>Enable
        VMkernel AT keyboard driver.</summary><key>VMkernel.Boot.vmkATKeyboard</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>false</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.vmkacEnable</label><summary>0=Disabled,
        1=Enforcing, 2=Do not enforce, just warn</summary><key>VMkernel.Boot.vmkacEnable</key><optionType
        xsi:type=\"IntOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>255</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.vmmrEnable</label><summary>Enable/Disable
        vmmr, vmkernel monitoring of x86 host-wide and per-vm stats. 0=Disable, 1=Enable</summary><key>VMkernel.Boot.vmmrEnable</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.vtdSuperPages</label><summary>Enable
        support for VT-d Super Pages (aka 2MB, 1GB large pages); super-page usage
        is dependent on this option as well as hardware support.</summary><key>VMkernel.Boot.vtdSuperPages</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>VMkernel.Boot.x2ApicPreferred</label><summary>Use
        x2APIC if available, even with less than 256 cpus.</summary><key>VMkernel.Boot.x2ApicPreferred</key><optionType
        xsi:type=\"BoolOption\"><valueIsReadonly>false</valueIsReadonly><supported>true</supported><defaultValue>true</defaultValue></optionType></optionDef><optionDef><label>iscsiPingTimeout</label><summary>Interval
        between ping (NOP-Out) requests, in seconds</summary><key>VSAN-iSCSI.iscsiPingTimeout</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>60</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>AutoRestoreDecomState</label><summary>Whether
        to restore vSAN node decommission state automatically during vSAN refresh</summary><key>VSAN.AutoRestoreDecomState</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>AutoTerminateGhostVm</label><summary>Automatically
        terminate ghost VM(s) during network partition</summary><key>VSAN.AutoTerminateGhostVm</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>ClomForceProvisionPlacements</label><summary>Add
        Force provisioning flag for all new object placement requests</summary><key>VSAN.ClomForceProvisionPlacements</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>ClomMaxComponentSizeGB</label><summary>Maximum
        component size used for new placements</summary><key>VSAN.ClomMaxComponentSizeGB</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>255</max><defaultValue>255</defaultValue></optionType></optionDef><optionDef><label>ClomMaxDiskUsageRepairComps</label><summary>Percentage
        disk fullness after which no new repair components can be placed on a given
        disk</summary><key>VSAN.ClomMaxDiskUsageRepairComps</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>95</defaultValue></optionType></optionDef><optionDef><label>ClomRebalanceThreshold</label><summary>Percentage
        disk fullness after which rebalancing is triggered</summary><key>VSAN.ClomRebalanceThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>80</defaultValue></optionType></optionDef><optionDef><label>Deduplication
        Scope</label><summary>The default deduplication scope for in all-flash disk
        group</summary><key>VSAN.DedupScope</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>DefaultHostDecommissionMode</label><summary>Default
        host decommission mode for a given node</summary><key>VSAN.DefaultHostDecommissionMode</key><optionType
        xsi:type=\"StringOption\"><valueIsReadonly>false</valueIsReadonly><defaultValue>ensureAccessibility</defaultValue><validCharacters>**</validCharacters></optionType></optionDef><optionDef><label>DomBriefIoTraces</label><summary>Enables
        a brief set of per-IO DOM traces for debugging</summary><key>VSAN.DomBriefIoTraces</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>DomFullIoTraces</label><summary>Enables
        the full set of per-IO DOM traces for debugging</summary><key>VSAN.DomFullIoTraces</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>DomLongOpTraceMS</label><summary>Trace
        ops that take more than the specified value in milliseconds</summary><key>VSAN.DomLongOpTraceMS</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>600000</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>DomLongOpUrgentTraceMS</label><summary>Urgent
        trace ops that take more than the specified value in milliseconds</summary><key>VSAN.DomLongOpUrgentTraceMS</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>600000</max><defaultValue>10000</defaultValue></optionType></optionDef><optionDef><label>MaxComponentsPerWitness</label><summary>Maximum
        number of components for a witness host</summary><key>VSAN.MaxComponentsPerWitness</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>320000</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>MaxWitnessClusters</label><summary>Max
        number of clusters on a witness node</summary><key>VSAN.MaxWitnessClusters</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>64</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>ObjectScrubsPerYear</label><summary>Option
        to set the scrubbing rate as scrubs-per-year</summary><key>VSAN.ObjectScrubsPerYear</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>525600</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>ObjectScrubsPerYearBase</label><summary>Maximum
        scrubs-per-year of an object for disk group utilization based scrubbing.</summary><key>VSAN.ObjectScrubsPerYearBase</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>525600</max><defaultValue>36</defaultValue></optionType></optionDef><optionDef><label>PerTraceBandwidthLimit</label><summary>Max
        number of traces per second (0 to disable limits)</summary><key>VSAN.PerTraceBandwidthLimit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000000</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>PerTraceBandwidthLimitPeriodMs</label><summary>Add
        BANDWIDTH_LIMIT * PERIOD_MS tokens (traces) every PERIOD_MS.</summary><key>VSAN.PerTraceBandwidthLimitPeriodMs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10000000</max><defaultValue>10000</defaultValue></optionType></optionDef><optionDef><label>PerTraceMaxRolloverPeriods</label><summary>Maximum
        number of periods where unused bandwidth can accumulate</summary><key>VSAN.PerTraceMaxRolloverPeriods</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000000</max><defaultValue>360</defaultValue></optionType></optionDef><optionDef><label>RDTChecksumMode</label><summary>Checksum
        mode for RDT-level checksum</summary><key>VSAN.RDTChecksumMode</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TraceEnableCmmds</label><summary>Enables
        tracing for vSAN CMMDS and CMMDSResolver components</summary><key>VSAN.TraceEnableCmmds</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TraceEnableDom</label><summary>Enables
        tracing for vSAN DOM component</summary><key>VSAN.TraceEnableDom</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TraceEnableDomIo</label><summary>Enables
        tracing for vSAN DOMIO component</summary><key>VSAN.TraceEnableDomIo</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>TraceEnableLsom</label><summary>Enables
        tracing for vSAN LSOM component</summary><key>VSAN.TraceEnableLsom</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TraceEnableLsomIo</label><summary>Enables
        IO tracing for vSAN LSOM component</summary><key>VSAN.TraceEnableLsomIo</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>TraceEnablePlog</label><summary>Enables
        tracing for vSAN PLOG component</summary><key>VSAN.TraceEnablePlog</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TraceEnableRdt</label><summary>Enables
        tracing for vSAN RDT component</summary><key>VSAN.TraceEnableRdt</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TraceEnableSsdLog</label><summary>Enables
        tracing for vSAN SSDLOG component</summary><key>VSAN.TraceEnableSsdLog</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TraceEnableVirsto</label><summary>Enables
        tracing for vSAN Virsto component</summary><key>VSAN.TraceEnableVirsto</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TraceEnableVirstoIo</label><summary>Enables
        IO tracing for vSAN Virsto component</summary><key>VSAN.TraceEnableVirstoIo</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>TraceEnableVsanSparse</label><summary>Enables
        tracing for VsanSparse FDS operations</summary><key>VSAN.TraceEnableVsanSparse</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>TraceEnableVsanSparseIO</label><summary>Enables
        tracing for VsanSparse I/O operations</summary><key>VSAN.TraceEnableVsanSparseIO</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>TraceEnableVsanSparseVerbose</label><summary>Enables
        tracing for details of VsanSparse I/O operations</summary><key>VSAN.TraceEnableVsanSparseVerbose</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>TraceGlobalBandwidthLimit</label><summary>Max
        number of traces per second (0 to disable limits)</summary><key>VSAN.TraceGlobalBandwidthLimit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000000</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>TraceGlobalBandwidthLimitPeriodMs</label><summary>Add
        BANDWIDTH_LIMIT * PERIOD_MS tokens (traces) every PERIOD_MS.</summary><key>VSAN.TraceGlobalBandwidthLimitPeriodMs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10000000</max><defaultValue>10000</defaultValue></optionType></optionDef><optionDef><label>TraceGlobalMaxRolloverPeriods</label><summary>Maximum
        number of periods where unused bandwidth can accumulate</summary><key>VSAN.TraceGlobalMaxRolloverPeriods</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000000</max><defaultValue>360</defaultValue></optionType></optionDef><optionDef><label>TracesPerErrorBandwidthLimit</label><summary>Maximum
        number of traces per second during specific error conditions (0 to disable
        limits)</summary><key>VSAN.TracesPerErrorBandwidthLimit</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000000</max><defaultValue>1000</defaultValue></optionType></optionDef><optionDef><label>TracesPerErrorBandwidthLimitPeriodMs</label><summary>Add
        BANDWIDTH_LIMIT * PERIOD_MS tokens (traces) every PERIOD_MS</summary><key>VSAN.TracesPerErrorBandwidthLimitPeriodMs</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>10000000</max><defaultValue>10000</defaultValue></optionType></optionDef><optionDef><label>TracesPerErrorMaxRolloverPeriods</label><summary>Maximum
        number of periods where unused bandwidth can accumulate</summary><key>VSAN.TracesPerErrorMaxRolloverPeriods</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1000000</max><defaultValue>60</defaultValue></optionType></optionDef><optionDef><label>TrimDisksBeforeUseGranularity</label><summary>Trim
        the devices (if supported) before using for vSAN. 0=Disable, 1=MetaData only,
        2=Full Disk</summary><key>VSAN.TrimDisksBeforeUseGranularity</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>2</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>VsanSparseCacheOverEvict</label><summary>Percentage
        of VsanSparseCacheThreshold to add to eviction</summary><key>VSAN.VsanSparseCacheOverEvict</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>100</max><defaultValue>5</defaultValue></optionType></optionDef><optionDef><label>VsanSparseCacheThreshold</label><summary>Maximum
        VsanSparse cache size, in cache entries</summary><key>VSAN.VsanSparseCacheThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>1024</defaultValue></optionType></optionDef><optionDef><label>VsanSparseEnabled</label><summary>Enable
        auto-creation of vsanSparse instead of vmfsSparse redologs, for vSAN 2.0 datastore
        only.</summary><key>VSAN.VsanSparseEnabled</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VsanSparseHeapSize</label><summary>Maximum
        heap size for VsanSparse snapshot consolidation buffers (in KiB)</summary><key>VSAN.VsanSparseHeapSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>256</min><max>131072</max><defaultValue>65536</defaultValue></optionType></optionDef><optionDef><label>VsanSparseMaxExtentsPrefetch</label><summary>Maximum
        number of extents to fetch during interrogation</summary><key>VSAN.VsanSparseMaxExtentsPrefetch</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>128</max><defaultValue>64</defaultValue></optionType></optionDef><optionDef><label>VsanSparseParallelLookup</label><summary>Request
        written extent data from each layer in parallel</summary><key>VSAN.VsanSparseParallelLookup</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VsanSparseRetainCacheOnSnapshots</label><summary>Try
        to retain VsanSparse in-memory cache content when taking VM snapshots</summary><key>VSAN.VsanSparseRetainCacheOnSnapshots</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>VsanSparseRetainCacheTTL</label><summary>Maximum
        time to retain VsanSparse in-memory cache content between snapshots, in seconds</summary><key>VSAN.VsanSparseRetainCacheTTL</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>3600</max><defaultValue>20</defaultValue></optionType></optionDef><optionDef><label>VsanSparseSpeculativePrefetch</label><summary>Number
        of bytes to add to each extent interrogation request</summary><key>VSAN.VsanSparseSpeculativePrefetch</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>4194304</defaultValue></optionType></optionDef><optionDef><label>WriteZeroOnTrimUnsupported</label><summary>Enable
        Writing Zero&apos;s on capacity devices that do not support TRIM</summary><key>VSAN.WriteZeroOnTrimUnsupported</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>allowLegacyCiphers</label><summary>Allow
        vVOL daemon to use legacy cipher for TLS communication with VASA Provider
        [Warning: Non-PFS ciphers!]</summary><key>VVOL.allowLegacyCiphers</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>0</defaultValue></optionType></optionDef><optionDef><label>vvolConcurrentBatchUnbind</label><summary>Number
        of concurrent batch unbind requests</summary><key>VVOL.vvolConcurrentBatchUnbind</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>20</max><defaultValue>2</defaultValue></optionType></optionDef><optionDef><label>vvolMaxRBZRetries</label><summary>Maximum
        number of times RBZ is retried during Rebind</summary><key>VVOL.vvolMaxRBZRetries</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>20</min><max>600</max><defaultValue>100</defaultValue></optionType></optionDef><optionDef><label>vvolSpaceStatsCacheSize</label><summary>Size
        of the swap VVOL cache in (must be &lt;= 1024) VVOLD</summary><key>VVOL.vvolSpaceStatsCacheSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1024</max><defaultValue>512</defaultValue></optionType></optionDef><optionDef><label>vvolSwapFilePersist</label><summary>Disable
        deletion of swap file on vVol datastore when the VM powers off (1 to disable).</summary><key>VVOL.vvolSwapFilePersist</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>vvolUnbindBatchSize</label><summary>Batch
        size for the Batch unbinding for VVOLs</summary><key>VVOL.vvolUnbindBatchSize</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>2</min><max>256</max><defaultValue>16</defaultValue></optionType></optionDef><optionDef><label>Virsto
        Disk Format version</label><summary>Virsto Disk Format version</summary><key>Virsto.DiskFormatVersion</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>2</min><max>21</max><defaultValue>21</defaultValue></optionType></optionDef><optionDef><label>Enabled</label><summary>Use
        Virsto format for new disks</summary><key>Virsto.Enabled</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Flusher
        Registry space threshold</label><summary>Flusher registry data size threshold
        (percentage) when metadata flush is forced</summary><key>Virsto.FlusherRegistryThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>50</min><max>100</max><defaultValue>95</defaultValue></optionType></optionDef><optionDef><label>Control
        GWE on-disk extents fetching</label><summary>Multiplier controlling how many
        on-disk extents fetched based on GWE request size</summary><key>Virsto.GweFetchExtentsFactor</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>10</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>Instance
        heap limit</label><summary>Heap limit for each Virsto instance (disk) in MB</summary><key>Virsto.InstanceHeapLimit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>128</min><max>4095</max><defaultValue>130</defaultValue></optionType></optionDef><optionDef><label>Map
        block cache flush threshold</label><summary>A threshold for dirty entries
        of map block cache when metadata flush is forced (in count of 4KB blocks)</summary><key>Virsto.MapBlocksFlushThreshold</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>50</min><max>100</max><defaultValue>90</defaultValue></optionType></optionDef><optionDef><label>Map
        block cache minimum</label><summary>Map block cache minimum for each Virsto
        instance (in count of 4KB blocks)</summary><key>Virsto.MapBlocksMin</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>16</min><max>4294967295</max><defaultValue>16384</defaultValue></optionType></optionDef><optionDef><label>Virsto
        MF retry count</label><summary>How many times Virsto metadata flusher retries
        in case of a transient error.</summary><key>Virsto.MaxMFRetryCount</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>4294967295</max><defaultValue>3</defaultValue></optionType></optionDef><optionDef><label>Msec
        before metadata flush</label><summary>Force Virsto metadata flush after this
        many msec</summary><key>Virsto.MsecBeforeMetaFlush</key><optionType xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>86400000</max><defaultValue>10000</defaultValue></optionType></optionDef><optionDef><label>Records
        per format write</label><summary>Number of (LSAR) records written per format
        write operation</summary><key>Virsto.RecordsPerFormatWrite</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>1</min><max>128</max><defaultValue>16</defaultValue></optionType></optionDef><optionDef><label>Shared
        heap limit</label><summary>Shared heap limit for Virsto module in MB</summary><key>Virsto.SharedHeapLimit</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>2</min><max>4095</max><defaultValue>4</defaultValue></optionType></optionDef><optionDef><label>VMFSOptimizations</label><summary>Enable
        VMFS-specific IO optimizations</summary><key>XvMotion.VMFSOptimizations</key><optionType
        xsi:type=\"LongOption\"><valueIsReadonly>false</valueIsReadonly><min>0</min><max>1</max><defaultValue>1</defaultValue></optionType></optionDef><optionDef><label>Log
        level</label><summary>vCenter agent logging level</summary><key>Vpx.Vpxa.config.log.level</key><optionType
        xsi:type=\"ChoiceOption\"><valueIsReadonly>false</valueIsReadonly><choiceInfo><label>none</label><summary>none</summary><key>none</key></choiceInfo><choiceInfo><label>error</label><summary>error</summary><key>error</key></choiceInfo><choiceInfo><label>warning</label><summary>warning</summary><key>warning</key></choiceInfo><choiceInfo><label>info</label><summary>info</summary><key>info</key></choiceInfo><choiceInfo><label>verbose</label><summary>verbose</summary><key>verbose</key></choiceInfo><choiceInfo><label>trivia</label><summary>trivia</summary><key>trivia</key></choiceInfo><defaultIndex>4</defaultIndex></optionType></optionDef><datastorePrincipal>root</datastorePrincipal><systemSwapConfiguration><option
        xsi:type=\"HostSystemSwapConfigurationHostCacheOption\"><key>0</key></option><option
        xsi:type=\"HostSystemSwapConfigurationHostLocalSwapOption\"><key>1</key></option></systemSwapConfiguration><systemResources><key>host</key><config><cpuAllocation><reservation>15960</reservation><expandableReservation>false</expandableReservation><limit>15960</limit><shares><shares>4096000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>16303</reservation><expandableReservation>false</expandableReservation><limit>16303</limit><shares><shares>-1</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></memoryAllocation></config><child><key>host/system</key><config><cpuAllocation><reservation>200</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>2660</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/system/boot</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/kernel</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/helper</key><config><cpuAllocation><reservation>60</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/lfhelper</key><config><cpuAllocation><reservation>60</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers</key><config><cpuAllocation><reservation>60</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/system/drivers/procfs-32757</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/crypto_fips-32758</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/hyperclock-32759</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vfat-32760</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/lfHelper-32761</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmklink_mpi-32762</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vprobe-32765</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/deltadisk-32766</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/i2c-32767</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/dvx-1</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmkapi_mgmt-2</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmci-3</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/gss-4</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/etherswitch-5</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/dvfilter-6</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/iodm-7</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/dvfilter-generic-fastpath-8</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/portcfg-9</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vswitch-10</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/netsched_fifo-11</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/netsched_hclk-12</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/netioc-13</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/lb_netqueue_bal-14</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmspace-15</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmknvme-16</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/procMisc-17</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmkibft-18</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/klm-19</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/dm-20</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/balloonVMCI-21</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nmp-22</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/hpp_legacy-23</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmw_satp_local-24</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmw_satp_default_aa-25</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmw_psp_lib-26</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmw_psp_fixed-27</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmw_psp_rr-28</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmw_psp_mru-29</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/pvscsi-30</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nvmxnet3_ens-31</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmkbsd-32</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmkata-33</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmknvme_vmkapi_compat-34</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nvme_pcie-35</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmkusb-36</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nvmxnet3-37</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/pciPassthru-38</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vdfm-39</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/lvmdriver-40</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nrdma-41</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/rmwfilter-42</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/healthchk-43</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nrdma_vmkapi_shim-44</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/filtmod-45</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vrdma-46</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmktracing-47</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/teamcheck-48</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmfs3-49</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vlanmtucheck-50</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/heartbeat-51</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/shaper-52</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/lldp-53</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/cdp-54</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/ipfix-55</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vflash-57</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/dvsdev-58</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/lacp-59</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/esxfw-60</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/hbr_filter-61</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/ftcpt-62</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/esxio-63</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/sunrpc-64</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nfsclient-65</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nfs41client-66</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/hpp-67</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/swapobj-68</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/svmmirror-69</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/cbt-70</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/migrate-71</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/system/ft</key><config><cpuAllocation><reservation>60</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></memoryAllocation></config></child><child><key>host/system/vmotion</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></memoryAllocation></config></child><child><key>host/system/svmotion</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/system/visorfs/visorfsPager</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>17</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/system/visorfs/ramdisks/root</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>32</reservation><expandableReservation>true</expandableReservation><limit>32</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/etc</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>28</reservation><expandableReservation>true</expandableReservation><limit>28</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/opt</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>32</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/var</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>5</reservation><expandableReservation>true</expandableReservation><limit>48</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/tmp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>2</reservation><expandableReservation>true</expandableReservation><limit>256</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/iofilters</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>32</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/shm</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>1024</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/crx</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>1024</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/configstore</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>32</reservation><expandableReservation>true</expandableReservation><limit>32</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/configstorebkp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>32</reservation><expandableReservation>true</expandableReservation><limit>32</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/hostdstats</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>206</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child></child><child><key>host/system/virtscsi</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/net</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/system/net/tcpip4-56</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/system/storage</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/userworld</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim</key><config><cpuAllocation><reservation>2374</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor</key><config><cpuAllocation><reservation>698</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/aam</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/apiForwarder</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>58</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/apiForwarder/apiForwarder.1000211395</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/attestd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/authd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>18</reservation><expandableReservation>true</expandableReservation><limit>130</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/auto-backup.sh</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>30</reservation><expandableReservation>true</expandableReservation><limit>30</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/backup.sh</key><config><cpuAllocation><reservation>40</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>70</reservation><expandableReservation>true</expandableReservation><limit>70</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/boot</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/clusterAgent</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/configManagerPlugin</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>81</reservation><expandableReservation>true</expandableReservation><limit>81</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/crond</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>28</reservation><expandableReservation>true</expandableReservation><limit>100</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/crond/busybox.1000210951</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/dcui</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>45</reservation><expandableReservation>true</expandableReservation><limit>101</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/dcui/dcui.1000212161</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/dhclient</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>35</reservation><expandableReservation>true</expandableReservation><limit>35</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/dhclient/dhclient-uw.1000210844</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/dhclientrelease</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/entropyd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/envoy</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>120</reservation><expandableReservation>true</expandableReservation><limit>120</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/envoy/envoy.1000211174</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/esxgdpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>48</reservation><expandableReservation>true</expandableReservation><limit>48</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/esxgdpd/esxgdpd.1000211120</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/esximage</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>900</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/esxio-commd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/esxtokend</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>50</reservation><expandableReservation>true</expandableReservation><limit>50</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/esxtokend/esxtokend.1000211295</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/etcd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/gpuManager</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/gstored</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/healthd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>28</reservation><expandableReservation>true</expandableReservation><limit>28</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/healthd/healthd.1000211829</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/healthd-plugins</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>40</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd</key><config><cpuAllocation><reservation>838</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>499</reservation><expandableReservation>true</expandableReservation><limit>499</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/hostd/hostd.1000211468</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/hostd-probe</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>40</reservation><expandableReservation>true</expandableReservation><limit>40</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/hostd-probe/stats</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/hostd-probe/stats/awk</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/head</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/logger</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/ls</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/pgrep</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/probe</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/hostd-probe/stats/probe/hostd-probe.1000212376</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/hostd-probe/stats/sh</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/vmkbacktrace</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/vmware</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child></child><child><key>host/vim/vmvisor/hostd-tmp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>20</reservation><expandableReservation>true</expandableReservation><limit>500</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostdCgiServer</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>38</reservation><expandableReservation>true</expandableReservation><limit>38</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/hostdCgiServer/hostdCgiServer.1000211297</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/inetd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>10</reservation><expandableReservation>true</expandableReservation><limit>10</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/inetd/busybox.1000210918</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/infravisor</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>8</reservation><expandableReservation>true</expandableReservation><limit>8</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/infravisor/inf-bootstrapper.1000211645</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/infravisor-runtime</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>5</reservation><expandableReservation>true</expandableReservation><limit>512</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/init/DCUI</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/ESXShell</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/SSH</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/apiForwarder</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/attestd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/cdp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/clomd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/clusterAgent</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/cmmdsTimeMachine</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/cmmdsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/dcbd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/dpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/drivervm-init</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/entropyd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/envoy</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/epd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/esxTokenCPS</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/esxgdpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/esxio-commd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/esxui</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/fsvmsockrelay</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/gpuManager</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/gstored</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/hbrsrv</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/health</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/hostd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/hostdCgiServer</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/infravisor</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/iofilterd-spm</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/iofilterd-vmwarevmcrypt</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/iofiltervpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/kmxa</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/kmxd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/lacp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/lbtd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/lsud</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/lwsmd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/nfcd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/nfsgssd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/nicmgmtd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/nscd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/ntpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/nvmf-discoveryd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/osfsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/pcscd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/pmemGarbageCollection</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/ptp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/ptpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/rhttpproxy</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/sandboxd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/sdrsInjector</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/sensord</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/settingsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/sfcbd-watchdog</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/slpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/smartd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/snmpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/storageRM</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/swapobjd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/trx</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/usbarbitrator</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vaai-nasd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vdfsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vdtc</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vit_loader</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vitd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vltd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vmfstraced</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vmsyslogd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vmtoolsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vobd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vpxa</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vsanObserver</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vsandevicemonitord</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vsanmgmtd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vsantraced</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vvold</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/wsman</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/xorg</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/init.1000210520</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/keypersist</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>12</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/keypersist/keypersist.1000210641</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/keypersist/keypersist.1000210642</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/kmxa</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>42</reservation><expandableReservation>true</expandableReservation><limit>42</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/kmxa/kmxa.1000210862</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/kmxd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/lacpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>28</reservation><expandableReservation>true</expandableReservation><limit>28</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/lacpd/net-lacp.1000210835</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/lbt</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>12</reservation><expandableReservation>true</expandableReservation><limit>24</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/lbt/net-lbt.1000211298</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/lifecycle-cgi</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>800</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/likewise</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/loadESX</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/logging</key><config><cpuAllocation><reservation>559</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>141</reservation><expandableReservation>true</expandableReservation><limit>141</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/logging/vmsyslogd.1000210577</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/logging/vmsyslogd.1000210578</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/lsud</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>48</reservation><expandableReservation>true</expandableReservation><limit>98</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/lsud/lsud.1000211887</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/monitor-vfat</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>100</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/net-daemons</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>11</reservation><expandableReservation>true</expandableReservation><limit>46</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/net-daemons/dcbd.1000211668</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/net-daemons/net-cdp.1000211679</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/netcpa</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/nfcd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>16</reservation><expandableReservation>true</expandableReservation><limit>16</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/nfsgssd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/nicmgmtd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>23</reservation><expandableReservation>true</expandableReservation><limit>23</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/nicmgmtd/nicmgmtd.1000211682</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/nscd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>30</reservation><expandableReservation>true</expandableReservation><limit>30</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/nscd/nscd.1000211662</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/ntpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>15</reservation><expandableReservation>true</expandableReservation><limit>15</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/nvmf-discoveryd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/osfsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/pcscd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/petronas</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/petronas-integ</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/plugins</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/pmemGC</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>400</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/ptpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/rhttpproxy</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>30</reservation><expandableReservation>true</expandableReservation><limit>30</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/rhttpproxy/rhttpproxy.1000211310</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/sandboxd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>29</reservation><expandableReservation>true</expandableReservation><limit>29</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/sandboxd/sandboxd.1000211105</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/sddc-bootstrap</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/sensord</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>33</reservation><expandableReservation>true</expandableReservation><limit>33</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/sensord/sensord.1000211318</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/settingsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>38</reservation><expandableReservation>true</expandableReservation><limit>38</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/settingsd/settingsd.1000211696</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/settingsd-nontask-forks</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>400</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/settingsd-task-forks</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>300</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/sfcb</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/sfcb_aux</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/sioc</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>52</reservation><expandableReservation>true</expandableReservation><limit>52</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/sioc/storageRM.1000211282</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/sioc/sdrsInjector.1000211289</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/slp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>11</reservation><expandableReservation>true</expandableReservation><limit>11</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/smartd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>13</reservation><expandableReservation>true</expandableReservation><limit>48</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/smartd/smartd.1000211664</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/snmpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/spherelet</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/spherelet/imgfetcher</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/spherelet/logfetcher</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/swapobjd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>15</reservation><expandableReservation>true</expandableReservation><limit>15</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/swapobjd/swapobjd.1000211184</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/systemStorage</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>45</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/upittraced</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/usbArbitrator</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>16</reservation><expandableReservation>true</expandableReservation><limit>16</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/usbArbitrator/vmware-usbarbitrator.1000211248</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/uwdaemons</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/uwsvc-init-tmp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>85</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/vaai-nasd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/vdtc</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>23</reservation><expandableReservation>true</expandableReservation><limit>23</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/vdtc/vdtc.1000211130</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/vmfstraced</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>10</reservation><expandableReservation>true</expandableReservation><limit>10</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/vmfstraced/sh.1000211411</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/vmfstraced/logchannellogger.1000211438</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/vmkdevmgr</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>20</reservation><expandableReservation>true</expandableReservation><limit>82</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/vmkdevmgr/vmkdevmgr.1000210746</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/vmkdevmgr-drivervm</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>82</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/vmkeventd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>23</reservation><expandableReservation>true</expandableReservation><limit>92</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/vmkeventd/vmkeventd.1000210604</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/vmkiscsid</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/vmsupport</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/vobd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>38</reservation><expandableReservation>true</expandableReservation><limit>38</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/vobd/vobd.1000210611</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/vpxa</key><config><cpuAllocation><reservation>439</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>170</reservation><expandableReservation>true</expandableReservation><limit>170</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/vpxa/vpxa.1000211741</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/vvold</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/watchdog</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>4</reservation><expandableReservation>true</expandableReservation><limit>4</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/watchdog/watchdog.1000212159</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/wsman</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vimuser</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>250</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vimuser/terminal</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>45</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vimuser/terminal/shell</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>512</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vimuser/terminal/shell/sh.1000212160</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vimuser/terminal/ssh</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>800</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vimuser/vmtoolsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>100</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>46</reservation><expandableReservation>false</expandableReservation><limit>46</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>0</overheadLimit></memoryAllocation></config><child><key>host/vim/vimuser/vmtoolsd/vmtoolsd.1000211912</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child></child><child><key>host/vim/tmp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>250</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/iofilters</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/iofilters/iofiltervpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>23</reservation><expandableReservation>true</expandableReservation><limit>23</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/iofilters/iofiltervpd/ioFilterVPServer.1000211198</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/iofilters/spm</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/iofilters/vmwarevmcrypt</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/user</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>9000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>9000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/opt</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/opt/vsan</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/opt/vsan/vsanConfig</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/opt/vsan/vsanapi-32763</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/opt/vsan/vsanbase-32764</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child></child></systemResources><dateTimeInfo><timeZone><key>UTC</key><name>UTC</name><description>UTC</description><gmtOffset>0</gmtOffset></timeZone><systemClockProtocol>ntp</systemClockProtocol><ntpConfig><server>time.vmware.com</server><configFile>restrict
        default nomodify notrap nopeer noquery</configFile><configFile>restrict 127.0.0.1</configFile><configFile>restrict
        -6 ::1</configFile><configFile>driftfile /etc/ntp.drift</configFile><configFile>logconfig
        +clockstatus +peerstatus +sysstatus +syncstatus</configFile><configFile>server
        time.vmware.com</configFile></ntpConfig><ptpConfig><domain>0</domain><port><index>0</index></port></ptpConfig><enabled>true</enabled><disableEvents>false</disableEvents><disableFallback>true</disableFallback><inFallbackState>false</inFallbackState><serviceSync>false</serviceSync><ntpRunTime>0</ntpRunTime><ntpDuration>**
        FIXME DateTimeInfo.less than a minute.ntpRunTime (host.vmsg) - less than a
        minute</ntpDuration></dateTimeInfo><flags></flags><adminDisabled>false</adminDisabled><lockdownMode>lockdownDisabled</lockdownMode><certificate>45</certificate><certificate>45</certificate><certificate>45</certificate><certificate>45</certificate><certificate>45</certificate><certificate>66</certificate><certificate>69</certificate><certificate>71</certificate><certificate>73</certificate><certificate>78</certificate><certificate>32</certificate><certificate>67</certificate><certificate>69</certificate><certificate>82</certificate><certificate>84</certificate><certificate>73</certificate><certificate>70</certificate><certificate>73</certificate><certificate>67</certificate><certificate>65</certificate><certificate>84</certificate><certificate>69</certificate><certificate>45</certificate><certificate>45</certificate><certificate>45</certificate><certificate>45</certificate><certificate>45</certificate><certificate>10</certificate><certificate>77</certificate><certificate>73</certificate><certificate>73</certificate><certificate>69</certificate><certificate>51</certificate><certificate>106</certificate><certificate>67</certificate><certificate>67</certificate><certificate>65</certificate><certificate>48</certificate><certificate>97</certificate><certificate>103</certificate><certificate>65</certificate><certificate>119</certificate><certificate>73</certificate><certificate>66</certificate><certificate>65</certificate><certificate>103</certificate><certificate>73</certificate><certificate>74</certificate><certificate>65</certificate><certificate>79</certificate><certificate>101</certificate><certificate>107</certificate><certificate>105</certificate><certificate>48</certificate><certificate>81</certificate><certificate>43</certificate><certificate>101</certificate><certificate>76</certificate><certificate>117</certificate><certificate>105</certificate><certificate>77</certificate><certificate>65</certificate><certificate>48</certificate><certificate>71</certificate><certificate>67</certificate><certificate>83</certificate><certificate>113</certificate><certificate>71</certificate><certificate>83</certificate><certificate>73</certificate><certificate>98</certificate><certificate>51</certificate><certificate>68</certificate><certificate>81</certificate><certificate>69</certificate><certificate>66</certificate><certificate>67</certificate><certificate>119</certificate><certificate>85</certificate><certificate>65</certificate><certificate>77</certificate><certificate>73</certificate><certificate>71</certificate><certificate>117</certificate><certificate>77</certificate><certificate>81</certificate><certificate>115</certificate><certificate>119</certificate><certificate>67</certificate><certificate>81</certificate><certificate>89</certificate><certificate>68</certificate><certificate>10</certificate><certificate>86</certificate><certificate>81</certificate><certificate>81</certificate><certificate>68</certificate><certificate>68</certificate><certificate>65</certificate><certificate>74</certificate><certificate>68</certificate><certificate>81</certificate><certificate>84</certificate><certificate>69</certificate><certificate>88</certificate><certificate>77</certificate><certificate>66</certificate><certificate>85</certificate><certificate>71</certificate><certificate>67</certificate><certificate>103</certificate><certificate>109</certificate><certificate>83</certificate><certificate>74</certificate><certificate>111</certificate><certificate>109</certificate><certificate>84</certificate><certificate>56</certificate><certificate>105</certificate><certificate>120</certificate><certificate>107</certificate><certificate>65</certificate><certificate>82</certificate><certificate>107</certificate><certificate>87</certificate><certificate>66</certificate><certificate>51</certificate><certificate>90</certificate><certificate>122</certificate><certificate>99</certificate><certificate>71</certificate><certificate>104</certificate><certificate>108</certificate><certificate>99</certificate><certificate>109</certificate><certificate>85</certificate><certificate>120</certificate><certificate>70</certificate><certificate>84</certificate><certificate>65</certificate><certificate>84</certificate><certificate>66</certificate><certificate>103</certificate><certificate>111</certificate><certificate>74</certificate><certificate>107</certificate><certificate>105</certificate><certificate>97</certificate><certificate>74</certificate><certificate>107</certificate><certificate>47</certificate><certificate>73</certificate><certificate>115</certificate><certificate>90</certificate><certificate>65</certificate><certificate>69</certificate><certificate>90</certificate><certificate>10</certificate><certificate>70</certificate><certificate>103</certificate><certificate>86</certificate><certificate>115</certificate><certificate>98</certificate><certificate>50</certificate><certificate>78</certificate><certificate>104</certificate><certificate>98</certificate><certificate>68</certificate><certificate>69</certificate><certificate>76</certificate><certificate>77</certificate><certificate>65</certificate><certificate>107</certificate><certificate>71</certificate><certificate>65</certificate><certificate>49</certificate><certificate>85</certificate><certificate>69</certificate><certificate>66</certificate><certificate>104</certificate><certificate>77</certificate><certificate>67</certificate><certificate>86</certificate><certificate>86</certificate><certificate>77</certificate><certificate>120</certificate><certificate>69</certificate><certificate>122</certificate><certificate>65</certificate><certificate>82</certificate><certificate>66</certificate><certificate>103</certificate><certificate>78</certificate><certificate>86</certificate><certificate>66</certificate><certificate>65</certificate><certificate>103</certificate><certificate>77</certificate><certificate>67</certificate><certificate>107</certificate><certificate>78</certificate><certificate>104</certificate><certificate>98</certificate><certificate>71</certificate><certificate>108</certificate><certificate>109</certificate><certificate>98</certificate><certificate>51</certificate><certificate>74</certificate><certificate>117</certificate><certificate>97</certificate><certificate>87</certificate><certificate>69</certificate><certificate>120</certificate><certificate>77</certificate><certificate>68</certificate><certificate>65</certificate><certificate>117</certificate><certificate>66</certificate><certificate>103</certificate><certificate>78</certificate><certificate>86</certificate><certificate>10</certificate><certificate>66</certificate><certificate>65</certificate><certificate>111</certificate><certificate>77</certificate><certificate>74</certificate><certificate>51</certificate><certificate>78</certificate><certificate>106</certificate><certificate>77</certificate><certificate>83</certificate><certificate>48</certificate><certificate>120</certificate><certificate>77</certificate><certificate>67</certificate><certificate>48</certificate><certificate>121</certificate><certificate>77</certificate><certificate>84</certificate><certificate>103</certificate><certificate>116</certificate><certificate>78</certificate><certificate>68</certificate><certificate>65</certificate><certificate>116</certificate><certificate>77</certificate><certificate>84</certificate><certificate>65</certificate><certificate>50</certificate><certificate>76</certificate><certificate>109</certificate><certificate>53</certificate><certificate>112</certificate><certificate>98</certificate><certificate>87</certificate><certificate>74</certificate><certificate>49</certificate><certificate>99</certificate><certificate>121</certificate><certificate>53</certificate><certificate>108</certificate><certificate>98</certificate><certificate>109</certificate><certificate>99</certificate><certificate>117</certificate><certificate>100</certificate><certificate>109</certificate><certificate>49</certificate><certificate>51</certificate><certificate>89</certificate><certificate>88</certificate><certificate>74</certificate><certificate>108</certificate><certificate>76</certificate><certificate>109</certificate><certificate>78</certificate><certificate>118</certificate><certificate>98</certificate><certificate>84</certificate><certificate>69</certificate><certificate>98</certificate><certificate>77</certificate><certificate>66</certificate><certificate>107</certificate><certificate>71</certificate><certificate>10</certificate><certificate>65</certificate><certificate>49</certificate><certificate>85</certificate><certificate>69</certificate><certificate>67</certificate><certificate>119</certificate><certificate>119</certificate><certificate>83</certificate><certificate>86</certificate><certificate>107</certificate><certificate>49</certificate><certificate>51</certificate><certificate>89</certificate><certificate>88</certificate><certificate>74</certificate><certificate>108</certificate><certificate>73</certificate><certificate>69</certificate><certificate>86</certificate><certificate>117</certificate><certificate>90</certificate><certificate>50</certificate><certificate>108</certificate><certificate>117</certificate><certificate>90</certificate><certificate>87</certificate><certificate>86</certificate><certificate>121</certificate><certificate>97</certificate><certificate>87</certificate><certificate>53</certificate><certificate>110</certificate><certificate>77</certificate><certificate>66</certificate><certificate>52</certificate><certificate>88</certificate><certificate>68</certificate><certificate>84</certificate><certificate>73</certificate><certificate>122</certificate><certificate>77</certificate><certificate>84</certificate><certificate>73</certificate><certificate>120</certificate><certificate>77</certificate><certificate>84</certificate><certificate>65</certificate><certificate>53</certificate><certificate>78</certificate><certificate>68</certificate><certificate>69</certificate><certificate>119</certificate><certificate>78</certificate><certificate>86</certificate><certificate>111</certificate><certificate>88</certificate><certificate>68</certificate><certificate>84</certificate><certificate>73</certificate><certificate>52</certificate><certificate>77</certificate><certificate>84</certificate><certificate>73</certificate><certificate>120</certificate><certificate>10</certificate><certificate>77</certificate><certificate>68</certificate><certificate>65</certificate><certificate>53</certificate><certificate>78</certificate><certificate>68</certificate><certificate>69</certificate><certificate>119</certificate><certificate>78</certificate><certificate>86</certificate><certificate>111</certificate><certificate>119</certificate><certificate>103</certificate><certificate>90</certificate><certificate>119</certificate><certificate>120</certificate><certificate>67</certificate><certificate>122</certificate><certificate>65</certificate><certificate>74</certificate><certificate>66</certificate><certificate>103</certificate><certificate>78</certificate><certificate>86</certificate><certificate>66</certificate><certificate>65</certificate><certificate>89</certificate><certificate>84</certificate><certificate>65</certificate><certificate>108</certificate><certificate>86</certificate><certificate>84</certificate><certificate>77</certificate><certificate>82</certificate><certificate>77</certificate><certificate>119</certificate><certificate>69</certificate><certificate>81</certificate><certificate>89</certificate><certificate>68</certificate><certificate>86</certificate><certificate>81</certificate><certificate>81</certificate><certificate>73</certificate><certificate>68</certificate><certificate>65</certificate><certificate>112</certificate><certificate>68</certificate><certificate>89</certificate><certificate>87</certificate><certificate>120</certificate><certificate>112</certificate><certificate>90</certificate><certificate>109</certificate><certificate>57</certificate><certificate>121</certificate><certificate>98</certificate><certificate>109</certificate><certificate>108</certificate><certificate>104</certificate><certificate>77</certificate><certificate>82</certificate><certificate>73</certificate><certificate>119</certificate><certificate>10</certificate><certificate>69</certificate><certificate>65</certificate><certificate>89</certificate><certificate>68</certificate><certificate>86</certificate><certificate>81</certificate><certificate>81</certificate><certificate>72</certificate><certificate>68</certificate><certificate>65</certificate><certificate>108</certificate><certificate>81</certificate><certificate>89</certificate><certificate>87</certificate><certificate>120</certificate><certificate>118</certificate><certificate>73</certificate><certificate>69</certificate><certificate>70</certificate><certificate>115</certificate><certificate>100</certificate><certificate>71</certificate><certificate>56</certificate><certificate>120</certificate><certificate>68</certificate><certificate>122</certificate><certificate>65</certificate><certificate>78</certificate><certificate>66</certificate><certificate>103</certificate><certificate>78</certificate><certificate>86</certificate><certificate>66</certificate><certificate>65</certificate><certificate>111</certificate><certificate>77</certificate><certificate>66</certificate><certificate>108</certificate><certificate>90</certificate><certificate>78</certificate><certificate>100</certificate><certificate>50</certificate><certificate>70</certificate><certificate>121</certificate><certificate>90</certificate><certificate>84</certificate><certificate>69</certificate><certificate>98</certificate><certificate>77</certificate><certificate>66</certificate><certificate>107</certificate><certificate>71</certificate><certificate>65</certificate><certificate>49</certificate><certificate>85</certificate><certificate>69</certificate><certificate>67</certificate><certificate>119</certificate><certificate>119</certificate><certificate>83</certificate><certificate>86</certificate><certificate>107</certificate><certificate>49</certificate><certificate>51</certificate><certificate>10</certificate><certificate>89</certificate><certificate>88</certificate><certificate>74</certificate><certificate>108</certificate><certificate>73</certificate><certificate>69</certificate><certificate>86</certificate><certificate>117</certificate><certificate>90</certificate><certificate>50</certificate><certificate>108</certificate><certificate>117</certificate><certificate>90</certificate><certificate>87</certificate><certificate>86</certificate><certificate>121</certificate><certificate>97</certificate><certificate>87</certificate><certificate>53</certificate><certificate>110</certificate><certificate>77</certificate><certificate>82</certificate><certificate>89</certificate><certificate>119</certificate><certificate>70</certificate><certificate>65</certificate><certificate>89</certificate><certificate>68</certificate><certificate>86</certificate><certificate>81</certificate><certificate>81</certificate><certificate>68</certificate><certificate>68</certificate><certificate>65</certificate><certificate>48</certificate><certificate>120</certificate><certificate>77</certificate><certificate>67</certificate><certificate>52</certificate><certificate>121</certificate><certificate>77</certificate><certificate>84</certificate><certificate>103</certificate><certificate>117</certificate><certificate>78</certificate><certificate>68</certificate><certificate>77</certificate><certificate>117</certificate><certificate>77</certificate><certificate>84</certificate><certificate>99</certificate><certificate>119</certificate><certificate>77</certificate><certificate>82</certificate><certificate>52</certificate><certificate>119</certificate><certificate>72</certificate><certificate>65</certificate><certificate>89</certificate><certificate>74</certificate><certificate>75</certificate><certificate>111</certificate><certificate>90</certificate><certificate>73</certificate><certificate>10</certificate><certificate>104</certificate><certificate>118</certificate><certificate>99</certificate><certificate>78</certificate><certificate>65</certificate><certificate>81</certificate><certificate>107</certificate><certificate>66</certificate><certificate>70</certificate><certificate>103</certificate><certificate>57</certificate><certificate>50</certificate><certificate>98</certificate><certificate>87</certificate><certificate>78</certificate><certificate>104</certificate><certificate>81</certificate><certificate>72</certificate><certificate>90</certificate><certificate>116</certificate><certificate>100</certificate><certificate>50</certificate><certificate>70</certificate><certificate>121</certificate><certificate>90</certificate><certificate>83</certificate><certificate>53</certificate><certificate>106</certificate><certificate>98</certificate><certificate>50</certificate><certificate>48</certificate><certificate>119</certificate><certificate>103</certificate><certificate>103</certificate><certificate>69</certificate><certificate>105</certificate><certificate>77</certificate><certificate>65</certificate><certificate>48</certificate><certificate>71</certificate><certificate>67</certificate><certificate>83</certificate><certificate>113</certificate><certificate>71</certificate><certificate>83</certificate><certificate>73</certificate><certificate>98</certificate><certificate>51</certificate><certificate>68</certificate><certificate>81</certificate><certificate>69</certificate><certificate>66</certificate><certificate>65</certificate><certificate>81</certificate><certificate>85</certificate><certificate>65</certificate><certificate>65</certificate><certificate>52</certificate><certificate>73</certificate><certificate>66</certificate><certificate>68</certificate><certificate>119</certificate><certificate>65</certificate><certificate>119</certificate><certificate>10</certificate><certificate>103</certificate><certificate>103</certificate><certificate>69</certificate><certificate>75</certificate><certificate>65</certificate><certificate>111</certificate><certificate>73</certificate><certificate>66</certificate><certificate>65</certificate><certificate>81</certificate><certificate>67</certificate><certificate>117</certificate><certificate>101</certificate><certificate>87</certificate><certificate>52</certificate><certificate>51</certificate><certificate>85</certificate><certificate>57</certificate><certificate>85</certificate><certificate>103</certificate><certificate>105</certificate><certificate>103</certificate><certificate>84</certificate><certificate>49</certificate><certificate>73</certificate><certificate>79</certificate><certificate>56</certificate><certificate>105</certificate><certificate>103</certificate><certificate>119</certificate><certificate>97</certificate><certificate>69</certificate><certificate>72</certificate><certificate>72</certificate><certificate>43</certificate><certificate>106</certificate><certificate>116</certificate><certificate>43</certificate><certificate>105</certificate><certificate>87</certificate><certificate>89</certificate><certificate>70</certificate><certificate>109</certificate><certificate>101</certificate><certificate>48</certificate><certificate>72</certificate><certificate>57</certificate><certificate>103</certificate><certificate>78</certificate><certificate>52</certificate><certificate>73</certificate><certificate>106</certificate><certificate>49</certificate><certificate>78</certificate><certificate>105</certificate><certificate>53</certificate><certificate>87</certificate><certificate>81</certificate><certificate>107</certificate><certificate>48</certificate><certificate>105</certificate><certificate>83</certificate><certificate>99</certificate><certificate>68</certificate><certificate>10</certificate><certificate>105</certificate><certificate>107</certificate><certificate>102</certificate><certificate>100</certificate><certificate>74</certificate><certificate>78</certificate><certificate>109</certificate><certificate>97</certificate><certificate>115</certificate><certificate>117</certificate><certificate>71</certificate><certificate>114</certificate><certificate>80</certificate><certificate>65</certificate><certificate>51</certificate><certificate>98</certificate><certificate>113</certificate><certificate>49</certificate><certificate>89</certificate><certificate>79</certificate><certificate>76</certificate><certificate>101</certificate><certificate>121</certificate><certificate>76</certificate><certificate>57</certificate><certificate>90</certificate><certificate>70</certificate><certificate>100</certificate><certificate>115</certificate><certificate>102</certificate><certificate>113</certificate><certificate>82</certificate><certificate>104</certificate><certificate>86</certificate><certificate>77</certificate><certificate>106</certificate><certificate>99</certificate><certificate>68</certificate><certificate>69</certificate><certificate>75</certificate><certificate>72</certificate><certificate>68</certificate><certificate>106</certificate><certificate>115</certificate><certificate>88</certificate><certificate>66</certificate><certificate>83</certificate><certificate>66</certificate><certificate>43</certificate><certificate>55</certificate><certificate>113</certificate><certificate>81</certificate><certificate>55</certificate><certificate>119</certificate><certificate>47</certificate><certificate>113</certificate><certificate>79</certificate><certificate>65</certificate><certificate>114</certificate><certificate>112</certificate><certificate>68</certificate><certificate>85</certificate><certificate>114</certificate><certificate>122</certificate><certificate>10</certificate><certificate>55</certificate><certificate>52</certificate><certificate>106</certificate><certificate>85</certificate><certificate>89</certificate><certificate>69</certificate><certificate>103</certificate><certificate>43</certificate><certificate>102</certificate><certificate>110</certificate><certificate>115</certificate><certificate>53</certificate><certificate>80</certificate><certificate>88</certificate><certificate>81</certificate><certificate>52</certificate><certificate>79</certificate><certificate>86</certificate><certificate>68</certificate><certificate>89</certificate><certificate>97</certificate><certificate>108</certificate><certificate>79</certificate><certificate>55</certificate><certificate>98</certificate><certificate>48</certificate><certificate>85</certificate><certificate>105</certificate><certificate>86</certificate><certificate>107</certificate><certificate>72</certificate><certificate>66</certificate><certificate>113</certificate><certificate>74</certificate><certificate>51</certificate><certificate>76</certificate><certificate>87</certificate><certificate>99</certificate><certificate>112</certificate><certificate>113</certificate><certificate>55</certificate><certificate>65</certificate><certificate>80</certificate><certificate>81</certificate><certificate>50</certificate><certificate>51</certificate><certificate>71</certificate><certificate>111</certificate><certificate>74</certificate><certificate>105</certificate><certificate>98</certificate><certificate>76</certificate><certificate>48</certificate><certificate>81</certificate><certificate>103</certificate><certificate>107</certificate><certificate>48</certificate><certificate>101</certificate><certificate>111</certificate><certificate>78</certificate><certificate>82</certificate><certificate>77</certificate><certificate>110</certificate><certificate>108</certificate><certificate>10</certificate><certificate>109</certificate><certificate>99</certificate><certificate>50</certificate><certificate>101</certificate><certificate>84</certificate><certificate>80</certificate><certificate>122</certificate><certificate>75</certificate><certificate>111</certificate><certificate>109</certificate><certificate>81</certificate><certificate>98</certificate><certificate>105</certificate><certificate>67</certificate><certificate>88</certificate><certificate>99</certificate><certificate>99</certificate><certificate>57</certificate><certificate>54</certificate><certificate>101</certificate><certificate>97</certificate><certificate>66</certificate><certificate>51</certificate><certificate>90</certificate><certificate>69</certificate><certificate>73</certificate><certificate>68</certificate><certificate>87</certificate><certificate>79</certificate><certificate>55</certificate><certificate>67</certificate><certificate>104</certificate><certificate>75</certificate><certificate>116</certificate><certificate>56</certificate><certificate>116</certificate><certificate>88</certificate><certificate>73</certificate><certificate>72</certificate><certificate>116</certificate><certificate>100</certificate><certificate>70</certificate><certificate>50</certificate><certificate>43</certificate><certificate>118</certificate><certificate>115</certificate><certificate>106</certificate><certificate>112</certificate><certificate>115</certificate><certificate>82</certificate><certificate>65</certificate><certificate>116</certificate><certificate>76</certificate><certificate>79</certificate><certificate>65</certificate><certificate>112</certificate><certificate>109</certificate><certificate>122</certificate><certificate>97</certificate><certificate>66</certificate><certificate>55</certificate><certificate>73</certificate><certificate>106</certificate><certificate>56</certificate><certificate>10</certificate><certificate>43</certificate><certificate>48</certificate><certificate>107</certificate><certificate>75</certificate><certificate>68</certificate><certificate>72</certificate><certificate>49</certificate><certificate>74</certificate><certificate>48</certificate><certificate>115</certificate><certificate>113</certificate><certificate>55</certificate><certificate>78</certificate><certificate>114</certificate><certificate>47</certificate><certificate>54</certificate><certificate>104</certificate><certificate>101</certificate><certificate>66</certificate><certificate>89</certificate><certificate>97</certificate><certificate>84</certificate><certificate>122</certificate><certificate>67</certificate><certificate>98</certificate><certificate>69</certificate><certificate>101</certificate><certificate>79</certificate><certificate>117</certificate><certificate>53</certificate><certificate>43</certificate><certificate>43</certificate><certificate>80</certificate><certificate>65</certificate><certificate>107</certificate><certificate>77</certificate><certificate>77</certificate><certificate>97</certificate><certificate>43</certificate><certificate>107</certificate><certificate>67</certificate><certificate>116</certificate><certificate>100</certificate><certificate>71</certificate><certificate>71</certificate><certificate>56</certificate><certificate>52</certificate><certificate>85</certificate><certificate>48</certificate><certificate>117</certificate><certificate>106</certificate><certificate>115</certificate><certificate>85</certificate><certificate>53</certificate><certificate>110</certificate><certificate>101</certificate><certificate>52</certificate><certificate>47</certificate><certificate>54</certificate><certificate>84</certificate><certificate>88</certificate><certificate>84</certificate><certificate>112</certificate><certificate>73</certificate><certificate>10</certificate><certificate>88</certificate><certificate>78</certificate><certificate>65</certificate><certificate>47</certificate><certificate>111</certificate><certificate>117</certificate><certificate>68</certificate><certificate>119</certificate><certificate>117</certificate><certificate>110</certificate><certificate>109</certificate><certificate>110</certificate><certificate>107</certificate><certificate>97</certificate><certificate>86</certificate><certificate>84</certificate><certificate>103</certificate><certificate>54</certificate><certificate>87</certificate><certificate>67</certificate><certificate>82</certificate><certificate>106</certificate><certificate>111</certificate><certificate>106</certificate><certificate>80</certificate><certificate>74</certificate><certificate>54</certificate><certificate>70</certificate><certificate>75</certificate><certificate>48</certificate><certificate>74</certificate><certificate>116</certificate><certificate>65</certificate><certificate>103</certificate><certificate>77</certificate><certificate>66</certificate><certificate>65</certificate><certificate>65</certificate><certificate>71</certificate><certificate>106</certificate><certificate>103</certificate><certificate>89</certificate><certificate>52</certificate><certificate>119</certificate><certificate>103</certificate><certificate>89</certificate><certificate>115</certificate><certificate>119</certificate><certificate>68</certificate><certificate>119</certificate><certificate>89</certificate><certificate>68</certificate><certificate>86</certificate><certificate>82</certificate><certificate>48</certificate><certificate>82</certificate><certificate>66</certificate><certificate>65</certificate><certificate>103</certificate><certificate>119</certificate><certificate>66</certificate><certificate>111</certificate><certificate>99</certificate><certificate>69</certificate><certificate>10</certificate><certificate>67</certificate><certificate>116</certificate><certificate>111</certificate><certificate>114</certificate><certificate>113</certificate><certificate>106</certificate><certificate>65</certificate><certificate>102</certificate><certificate>66</certificate><certificate>103</certificate><certificate>78</certificate><certificate>86</certificate><certificate>72</certificate><certificate>83</certificate><certificate>77</certificate><certificate>69</certificate><certificate>71</certificate><certificate>68</certificate><certificate>65</certificate><certificate>87</certificate><certificate>103</certificate><certificate>66</certificate><certificate>82</certificate><certificate>74</certificate><certificate>75</certificate><certificate>50</certificate><certificate>43</certificate><certificate>72</certificate><certificate>68</certificate><certificate>74</certificate><certificate>120</certificate><certificate>107</certificate><certificate>120</certificate><certificate>50</certificate><certificate>77</certificate><certificate>72</certificate><certificate>53</certificate><certificate>72</certificate><certificate>86</certificate><certificate>112</certificate><certificate>114</certificate><certificate>103</certificate><certificate>66</certificate><certificate>70</certificate><certificate>89</certificate><certificate>82</certificate><certificate>53</certificate><certificate>71</certificate><certificate>53</certificate><certificate>122</certificate><certificate>66</certificate><certificate>88</certificate><certificate>66</certificate><certificate>103</certificate><certificate>103</certificate><certificate>114</certificate><certificate>66</certificate><certificate>103</certificate><certificate>69</certificate><certificate>70</certificate><certificate>66</certificate><certificate>81</certificate><certificate>99</certificate><certificate>66</certificate><certificate>10</certificate><certificate>65</certificate><certificate>81</certificate><certificate>82</certificate><certificate>76</certificate><certificate>77</certificate><certificate>69</certificate><certificate>107</certificate><certificate>119</certificate><certificate>82</certificate><certificate>119</certificate><certificate>89</certificate><certificate>73</certificate><certificate>75</certificate><certificate>119</certificate><certificate>89</certificate><certificate>66</certificate><certificate>66</certificate><certificate>81</certificate><certificate>85</certificate><certificate>72</certificate><certificate>77</certificate><certificate>65</certificate><certificate>75</certificate><certificate>71</certificate><certificate>79</certificate><certificate>50</certificate><certificate>104</certificate><certificate>48</certificate><certificate>100</certificate><certificate>72</certificate><certificate>66</certificate><certificate>122</certificate><certificate>79</certificate><certificate>105</certificate><certificate>56</certificate><certificate>118</certificate><certificate>99</certificate><certificate>50</certificate><certificate>77</certificate><certificate>120</certificate><certificate>76</certificate><certificate>84</certificate><certificate>69</certificate><certificate>119</certificate><certificate>76</certificate><certificate>84</certificate><certificate>73</certificate><certificate>120</certificate><certificate>79</certificate><certificate>67</certificate><certificate>48</certificate><certificate>48</certificate><certificate>77</certificate><certificate>67</certificate><certificate>48</certificate><certificate>120</certificate><certificate>77</certificate><certificate>68</certificate><certificate>89</certificate><certificate>117</certificate><certificate>98</certificate><certificate>109</certificate><certificate>108</certificate><certificate>116</certificate><certificate>10</certificate><certificate>89</certificate><certificate>110</certificate><certificate>86</certificate><certificate>122</certificate><certificate>76</certificate><certificate>109</certificate><certificate>86</certificate><certificate>117</certificate><certificate>90</certificate><certificate>121</certificate><certificate>53</certificate><certificate>50</certificate><certificate>98</certificate><certificate>88</certificate><certificate>100</certificate><certificate>104</certificate><certificate>99</certificate><certificate>109</certificate><certificate>85</certificate><certificate>117</certificate><certificate>89</certificate><certificate>50</certificate><certificate>57</certificate><certificate>116</certificate><certificate>76</certificate><certificate>50</certificate><certificate>70</certificate><certificate>109</certificate><certificate>90</certificate><certificate>67</certificate><certificate>57</certificate><certificate>50</certificate><certificate>90</certificate><certificate>87</certificate><certificate>78</certificate><certificate>122</certificate><certificate>76</certificate><certificate>50</certificate><certificate>78</certificate><certificate>104</certificate><certificate>77</certificate><certificate>65</certificate><certificate>48</certificate><certificate>71</certificate><certificate>67</certificate><certificate>83</certificate><certificate>113</certificate><certificate>71</certificate><certificate>83</certificate><certificate>73</certificate><certificate>98</certificate><certificate>51</certificate><certificate>68</certificate><certificate>81</certificate><certificate>69</certificate><certificate>66</certificate><certificate>67</certificate><certificate>119</certificate><certificate>85</certificate><certificate>65</certificate><certificate>65</certificate><certificate>52</certificate><certificate>73</certificate><certificate>66</certificate><certificate>10</certificate><certificate>103</certificate><certificate>81</certificate><certificate>66</certificate><certificate>69</certificate><certificate>54</certificate><certificate>88</certificate><certificate>103</certificate><certificate>51</certificate><certificate>48</certificate><certificate>104</certificate><certificate>55</certificate><certificate>113</certificate><certificate>55</certificate><certificate>98</certificate><certificate>102</certificate><certificate>113</certificate><certificate>118</certificate><certificate>89</certificate><certificate>113</certificate><certificate>47</certificate><certificate>98</certificate><certificate>120</certificate><certificate>51</certificate><certificate>57</certificate><certificate>50</certificate><certificate>105</certificate><certificate>51</certificate><certificate>68</certificate><certificate>117</certificate><certificate>66</certificate><certificate>65</certificate><certificate>106</certificate><certificate>105</certificate><certificate>113</certificate><certificate>65</certificate><certificate>113</certificate><certificate>51</certificate><certificate>72</certificate><certificate>74</certificate><certificate>109</certificate><certificate>74</certificate><certificate>50</certificate><certificate>84</certificate><certificate>68</certificate><certificate>56</certificate><certificate>85</certificate><certificate>68</certificate><certificate>72</certificate><certificate>80</certificate><certificate>52</certificate><certificate>118</certificate><certificate>107</certificate><certificate>80</certificate><certificate>102</certificate><certificate>53</certificate><certificate>116</certificate><certificate>56</certificate><certificate>69</certificate><certificate>115</certificate><certificate>73</certificate><certificate>116</certificate><certificate>48</certificate><certificate>47</certificate><certificate>83</certificate><certificate>10</certificate><certificate>52</certificate><certificate>109</certificate><certificate>80</certificate><certificate>56</certificate><certificate>75</certificate><certificate>48</certificate><certificate>47</certificate><certificate>105</certificate><certificate>111</certificate><certificate>67</certificate><certificate>105</certificate><certificate>117</certificate><certificate>43</certificate><certificate>65</certificate><certificate>82</certificate><certificate>114</certificate><certificate>84</certificate><certificate>81</certificate><certificate>120</certificate><certificate>75</certificate><certificate>112</certificate><certificate>85</certificate><certificate>107</certificate><certificate>82</certificate><certificate>87</certificate><certificate>88</certificate><certificate>113</certificate><certificate>78</certificate><certificate>80</certificate><certificate>90</certificate><certificate>52</certificate><certificate>110</certificate><certificate>43</certificate><certificate>118</certificate><certificate>74</certificate><certificate>67</certificate><certificate>118</certificate><certificate>56</certificate><certificate>114</certificate><certificate>108</certificate><certificate>84</certificate><certificate>116</certificate><certificate>87</certificate><certificate>118</certificate><certificate>55</certificate><certificate>121</certificate><certificate>116</certificate><certificate>55</certificate><certificate>57</certificate><certificate>115</certificate><certificate>106</certificate><certificate>78</certificate><certificate>75</certificate><certificate>72</certificate><certificate>72</certificate><certificate>47</certificate><certificate>116</certificate><certificate>80</certificate><certificate>113</certificate><certificate>106</certificate><certificate>102</certificate><certificate>50</certificate><certificate>100</certificate><certificate>108</certificate><certificate>10</certificate><certificate>57</certificate><certificate>54</certificate><certificate>84</certificate><certificate>66</certificate><certificate>118</certificate><certificate>68</certificate><certificate>116</certificate><certificate>70</certificate><certificate>88</certificate><certificate>103</certificate><certificate>52</certificate><certificate>112</certificate><certificate>80</certificate><certificate>102</certificate><certificate>69</certificate><certificate>85</certificate><certificate>65</certificate><certificate>119</certificate><certificate>74</certificate><certificate>53</certificate><certificate>56</certificate><certificate>70</certificate><certificate>69</certificate><certificate>106</certificate><certificate>119</certificate><certificate>103</certificate><certificate>90</certificate><certificate>106</certificate><certificate>114</certificate><certificate>100</certificate><certificate>48</certificate><certificate>112</certificate><certificate>69</certificate><certificate>101</certificate><certificate>107</certificate><certificate>101</certificate><certificate>110</certificate><certificate>105</certificate><certificate>88</certificate><certificate>80</certificate><certificate>104</certificate><certificate>97</certificate><certificate>79</certificate><certificate>98</certificate><certificate>121</certificate><certificate>80</certificate><certificate>117</certificate><certificate>90</certificate><certificate>73</certificate><certificate>78</certificate><certificate>70</certificate><certificate>49</certificate><certificate>68</certificate><certificate>43</certificate><certificate>117</certificate><certificate>103</certificate><certificate>84</certificate><certificate>82</certificate><certificate>77</certificate><certificate>70</certificate><certificate>54</certificate><certificate>67</certificate><certificate>48</certificate><certificate>101</certificate><certificate>10</certificate><certificate>50</certificate><certificate>101</certificate><certificate>56</certificate><certificate>66</certificate><certificate>105</certificate><certificate>49</certificate><certificate>51</certificate><certificate>87</certificate><certificate>67</certificate><certificate>48</certificate><certificate>85</certificate><certificate>69</certificate><certificate>77</certificate><certificate>115</certificate><certificate>51</certificate><certificate>55</certificate><certificate>89</certificate><certificate>66</certificate><certificate>106</certificate><certificate>47</certificate><certificate>79</certificate><certificate>54</certificate><certificate>97</certificate><certificate>119</certificate><certificate>114</certificate><certificate>54</certificate><certificate>106</certificate><certificate>106</certificate><certificate>80</certificate><certificate>76</certificate><certificate>118</certificate><certificate>103</certificate><certificate>115</certificate><certificate>70</certificate><certificate>119</certificate><certificate>72</certificate><certificate>68</certificate><certificate>119</certificate><certificate>76</certificate><certificate>56</certificate><certificate>115</certificate><certificate>88</certificate><certificate>80</certificate><certificate>90</certificate><certificate>120</certificate><certificate>90</certificate><certificate>87</certificate><certificate>57</certificate><certificate>85</certificate><certificate>103</certificate><certificate>108</certificate><certificate>68</certificate><certificate>83</certificate><certificate>65</certificate><certificate>113</certificate><certificate>88</certificate><certificate>105</certificate><certificate>105</certificate><certificate>72</certificate><certificate>69</certificate><certificate>97</certificate><certificate>80</certificate><certificate>107</certificate><certificate>52</certificate><certificate>10</certificate><certificate>115</certificate><certificate>98</certificate><certificate>117</certificate><certificate>56</certificate><certificate>113</certificate><certificate>82</certificate><certificate>75</certificate><certificate>72</certificate><certificate>114</certificate><certificate>84</certificate><certificate>73</certificate><certificate>72</certificate><certificate>109</certificate><certificate>56</certificate><certificate>55</certificate><certificate>115</certificate><certificate>53</certificate><certificate>50</certificate><certificate>105</certificate><certificate>85</certificate><certificate>47</certificate><certificate>47</certificate><certificate>108</certificate><certificate>71</certificate><certificate>87</certificate><certificate>55</certificate><certificate>80</certificate><certificate>113</certificate><certificate>88</certificate><certificate>56</certificate><certificate>69</certificate><certificate>111</certificate><certificate>68</certificate><certificate>100</certificate><certificate>79</certificate><certificate>107</certificate><certificate>110</certificate><certificate>116</certificate><certificate>101</certificate><certificate>112</certificate><certificate>108</certificate><certificate>86</certificate><certificate>72</certificate><certificate>112</certificate><certificate>74</certificate><certificate>114</certificate><certificate>86</certificate><certificate>65</certificate><certificate>79</certificate><certificate>117</certificate><certificate>105</certificate><certificate>77</certificate><certificate>105</certificate><certificate>117</certificate><certificate>80</certificate><certificate>120</certificate><certificate>114</certificate><certificate>97</certificate><certificate>104</certificate><certificate>89</certificate><certificate>80</certificate><certificate>47</certificate><certificate>111</certificate><certificate>103</certificate><certificate>10</certificate><certificate>75</certificate><certificate>86</certificate><certificate>71</certificate><certificate>81</certificate><certificate>49</certificate><certificate>68</certificate><certificate>78</certificate><certificate>112</certificate><certificate>111</certificate><certificate>114</certificate><certificate>85</certificate><certificate>84</certificate><certificate>66</certificate><certificate>121</certificate><certificate>54</certificate><certificate>114</certificate><certificate>83</certificate><certificate>80</certificate><certificate>68</certificate><certificate>120</certificate><certificate>119</certificate><certificate>85</certificate><certificate>120</certificate><certificate>57</certificate><certificate>51</certificate><certificate>50</certificate><certificate>98</certificate><certificate>115</certificate><certificate>101</certificate><certificate>70</certificate><certificate>53</certificate><certificate>100</certificate><certificate>83</certificate><certificate>47</certificate><certificate>68</certificate><certificate>106</certificate><certificate>43</certificate><certificate>122</certificate><certificate>99</certificate><certificate>117</certificate><certificate>104</certificate><certificate>79</certificate><certificate>71</certificate><certificate>102</certificate><certificate>50</certificate><certificate>86</certificate><certificate>103</certificate><certificate>53</certificate><certificate>48</certificate><certificate>73</certificate><certificate>84</certificate><certificate>97</certificate><certificate>55</certificate><certificate>72</certificate><certificate>43</certificate><certificate>79</certificate><certificate>57</certificate><certificate>105</certificate><certificate>99</certificate><certificate>107</certificate><certificate>105</certificate><certificate>103</certificate><certificate>65</certificate><certificate>49</certificate><certificate>10</certificate><certificate>80</certificate><certificate>72</certificate><certificate>116</certificate><certificate>100</certificate><certificate>77</certificate><certificate>121</certificate><certificate>122</certificate><certificate>86</certificate><certificate>111</certificate><certificate>114</certificate><certificate>121</certificate><certificate>120</certificate><certificate>71</certificate><certificate>113</certificate><certificate>80</certificate><certificate>55</certificate><certificate>103</certificate><certificate>47</certificate><certificate>86</certificate><certificate>52</certificate><certificate>90</certificate><certificate>67</certificate><certificate>54</certificate><certificate>86</certificate><certificate>98</certificate><certificate>120</certificate><certificate>49</certificate><certificate>77</certificate><certificate>84</certificate><certificate>54</certificate><certificate>86</certificate><certificate>100</certificate><certificate>77</certificate><certificate>106</certificate><certificate>103</certificate><certificate>106</certificate><certificate>72</certificate><certificate>71</certificate><certificate>67</certificate><certificate>78</certificate><certificate>49</certificate><certificate>98</certificate><certificate>108</certificate><certificate>100</certificate><certificate>89</certificate><certificate>107</certificate><certificate>72</certificate><certificate>51</certificate><certificate>51</certificate><certificate>109</certificate><certificate>87</certificate><certificate>107</certificate><certificate>69</certificate><certificate>113</certificate><certificate>106</certificate><certificate>109</certificate><certificate>107</certificate><certificate>114</certificate><certificate>104</certificate><certificate>55</certificate><certificate>115</certificate><certificate>108</certificate><certificate>103</certificate><certificate>67</certificate><certificate>10</certificate><certificate>75</certificate><certificate>100</certificate><certificate>79</certificate><certificate>115</certificate><certificate>100</certificate><certificate>76</certificate><certificate>88</certificate><certificate>70</certificate><certificate>48</certificate><certificate>71</certificate><certificate>102</certificate><certificate>54</certificate><certificate>84</certificate><certificate>49</certificate><certificate>82</certificate><certificate>115</certificate><certificate>115</certificate><certificate>72</certificate><certificate>52</certificate><certificate>121</certificate><certificate>118</certificate><certificate>118</certificate><certificate>81</certificate><certificate>112</certificate><certificate>88</certificate><certificate>50</certificate><certificate>88</certificate><certificate>121</certificate><certificate>104</certificate><certificate>76</certificate><certificate>43</certificate><certificate>90</certificate><certificate>80</certificate><certificate>82</certificate><certificate>76</certificate><certificate>105</certificate><certificate>99</certificate><certificate>121</certificate><certificate>121</certificate><certificate>122</certificate><certificate>120</certificate><certificate>121</certificate><certificate>118</certificate><certificate>81</certificate><certificate>77</certificate><certificate>47</certificate><certificate>53</certificate><certificate>71</certificate><certificate>108</certificate><certificate>111</certificate><certificate>117</certificate><certificate>117</certificate><certificate>118</certificate><certificate>78</certificate><certificate>66</certificate><certificate>121</certificate><certificate>119</certificate><certificate>98</certificate><certificate>51</certificate><certificate>108</certificate><certificate>77</certificate><certificate>69</certificate><certificate>100</certificate><certificate>87</certificate><certificate>10</certificate><certificate>68</certificate><certificate>110</certificate><certificate>111</certificate><certificate>61</certificate><certificate>10</certificate><certificate>45</certificate><certificate>45</certificate><certificate>45</certificate><certificate>45</certificate><certificate>45</certificate><certificate>69</certificate><certificate>78</certificate><certificate>68</certificate><certificate>32</certificate><certificate>67</certificate><certificate>69</certificate><certificate>82</certificate><certificate>84</certificate><certificate>73</certificate><certificate>70</certificate><certificate>73</certificate><certificate>67</certificate><certificate>65</certificate><certificate>84</certificate><certificate>69</certificate><certificate>45</certificate><certificate>45</certificate><certificate>45</certificate><certificate>45</certificate><certificate>45</certificate><certificate>10</certificate><pciPassthruInfo><id>0000:00:00.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:01.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:07.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:07.1</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:07.3</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:07.7</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:0f.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:11.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:15.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:15.1</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:15.2</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:15.3</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:15.4</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:15.5</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:15.6</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:15.7</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:16.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:16.1</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:16.2</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:16.3</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:16.4</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:16.5</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:16.6</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:16.7</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:17.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:17.1</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:17.2</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:17.3</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:17.4</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:17.5</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:17.6</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:17.7</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:18.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:18.1</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:18.2</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:18.3</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:18.4</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:18.5</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:18.6</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:00:18.7</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:02:00.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:02:01.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:03:00.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:04:00.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:0b:00.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:0c:00.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:13:00.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><pciPassthruInfo><id>0000:1b:00.0</id><dependentDevice></dependentDevice><passthruEnabled>false</passthruEnabled><passthruCapable>false</passthruCapable><passthruActive>false</passthruActive></pciPassthruInfo><authenticationManagerInfo><authConfig
        xsi:type=\"HostLocalAuthenticationInfo\"><enabled>true</enabled></authConfig><authConfig
        xsi:type=\"HostActiveDirectoryInfo\"><enabled>false</enabled><smartCardAuthenticationEnabled>false</smartCardAuthenticationEnabled></authConfig></authenticationManagerInfo><powerSystemCapability><availablePolicy><key>1</key><name>PowerPolicy.static.name</name><shortName>static</shortName><description>PowerPolicy.static.description</description></availablePolicy><availablePolicy><key>2</key><name>PowerPolicy.dynamic.name</name><shortName>dynamic</shortName><description>PowerPolicy.dynamic.description</description></availablePolicy><availablePolicy><key>3</key><name>PowerPolicy.low.name</name><shortName>low</shortName><description>PowerPolicy.low.description</description></availablePolicy><availablePolicy><key>4</key><name>PowerPolicy.custom.name</name><shortName>custom</shortName><description>PowerPolicy.custom.description</description></availablePolicy></powerSystemCapability><powerSystemInfo><currentPolicy><key>2</key><name>PowerPolicy.dynamic.name</name><shortName>dynamic</shortName><description>PowerPolicy.dynamic.description</description></currentPolicy></powerSystemInfo><wakeOnLanCapable>false</wakeOnLanCapable><featureCapability><key>cpuid.3dnprefetch</key><featureName>cpuid.3dnprefetch</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.abm</key><featureName>cpuid.abm</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.adx</key><featureName>cpuid.adx</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.aes</key><featureName>cpuid.aes</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx</key><featureName>cpuid.avx</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx2</key><featureName>cpuid.avx2</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx512bitalg</key><featureName>cpuid.avx512bitalg</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx512bw</key><featureName>cpuid.avx512bw</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx512cd</key><featureName>cpuid.avx512cd</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx512dq</key><featureName>cpuid.avx512dq</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx512f</key><featureName>cpuid.avx512f</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx512ifma</key><featureName>cpuid.avx512ifma</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx512vbmi</key><featureName>cpuid.avx512vbmi</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx512vbmi2</key><featureName>cpuid.avx512vbmi2</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx512vl</key><featureName>cpuid.avx512vl</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx512vnni</key><featureName>cpuid.avx512vnni</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.avx512vpopcntdq</key><featureName>cpuid.avx512vpopcntdq</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.bmi1</key><featureName>cpuid.bmi1</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.bmi2</key><featureName>cpuid.bmi2</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.clflushopt</key><featureName>cpuid.clflushopt</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.clwb</key><featureName>cpuid.clwb</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.cmpxchg16b</key><featureName>cpuid.cmpxchg16b</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.ds</key><featureName>cpuid.ds</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.enfstrg</key><featureName>cpuid.enfstrg</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.f16c</key><featureName>cpuid.f16c</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.fast_short_repmov</key><featureName>cpuid.fast_short_repmov</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.fcmd</key><featureName>cpuid.fcmd</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.fma</key><featureName>cpuid.fma</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.fsgsbase</key><featureName>cpuid.fsgsbase</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.gfni</key><featureName>cpuid.gfni</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.hle</key><featureName>cpuid.hle</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.ibpb</key><featureName>cpuid.ibpb</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.ibrs</key><featureName>cpuid.ibrs</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.intel</key><featureName>cpuid.intel</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.invpcid</key><featureName>cpuid.invpcid</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.lahf64</key><featureName>cpuid.lahf64</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.lm</key><featureName>cpuid.lm</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.mdclear</key><featureName>cpuid.mdclear</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.movbe</key><featureName>cpuid.movbe</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.mwait</key><featureName>cpuid.mwait</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.nx</key><featureName>cpuid.nx</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.pcid</key><featureName>cpuid.pcid</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.pclmulqdq</key><featureName>cpuid.pclmulqdq</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.pdpe1gb</key><featureName>cpuid.pdpe1gb</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.pku</key><featureName>cpuid.pku</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.popcnt</key><featureName>cpuid.popcnt</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.rdpid</key><featureName>cpuid.rdpid</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.rdrand</key><featureName>cpuid.rdrand</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.rdseed</key><featureName>cpuid.rdseed</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.rdtscp</key><featureName>cpuid.rdtscp</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.rtm</key><featureName>cpuid.rtm</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.sha</key><featureName>cpuid.sha</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.smap</key><featureName>cpuid.smap</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.smep</key><featureName>cpuid.smep</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.ss</key><featureName>cpuid.ss</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.ssbd</key><featureName>cpuid.ssbd</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.sse3</key><featureName>cpuid.sse3</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.sse41</key><featureName>cpuid.sse41</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.sse42</key><featureName>cpuid.sse42</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.ssse3</key><featureName>cpuid.ssse3</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.stibp</key><featureName>cpuid.stibp</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.umip</key><featureName>cpuid.umip</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.vaes</key><featureName>cpuid.vaes</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.vmx</key><featureName>cpuid.vmx</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.vpclmulqdq</key><featureName>cpuid.vpclmulqdq</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.wbnoinvd</key><featureName>cpuid.wbnoinvd</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xcr0_master_bndcsr</key><featureName>cpuid.xcr0_master_bndcsr</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xcr0_master_bndregs</key><featureName>cpuid.xcr0_master_bndregs</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xcr0_master_hi16_zmm</key><featureName>cpuid.xcr0_master_hi16_zmm</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xcr0_master_opmask</key><featureName>cpuid.xcr0_master_opmask</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xcr0_master_pkru</key><featureName>cpuid.xcr0_master_pkru</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xcr0_master_sse</key><featureName>cpuid.xcr0_master_sse</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xcr0_master_ymm_h</key><featureName>cpuid.xcr0_master_ymm_h</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xcr0_master_zmm_h</key><featureName>cpuid.xcr0_master_zmm_h</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xgetbv_ecx1</key><featureName>cpuid.xgetbv_ecx1</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xsave</key><featureName>cpuid.xsave</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xsavec</key><featureName>cpuid.xsavec</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xsaveopt</key><featureName>cpuid.xsaveopt</featureName><value>1</value></featureCapability><featureCapability><key>cpuid.xsaves</key><featureName>cpuid.xsaves</featureName><value>1</value></featureCapability><featureCapability><key>hv.capable</key><featureName>hv.capable</featureName><value>1</value></featureCapability><featureCapability><key>misc.cpuidfaulting</key><featureName>misc.cpuidfaulting</featureName><value>1</value></featureCapability><featureCapability><key>misc.ibrs_all</key><featureName>misc.ibrs_all</featureName><value>1</value></featureCapability><featureCapability><key>misc.mds_no</key><featureName>misc.mds_no</featureName><value>1</value></featureCapability><featureCapability><key>misc.rdcl_no</key><featureName>misc.rdcl_no</featureName><value>1</value></featureCapability><featureCapability><key>misc.rrsba_no</key><featureName>misc.rrsba_no</featureName><value>1</value></featureCapability><featureCapability><key>misc.rsba_no</key><featureName>misc.rsba_no</featureName><value>1</value></featureCapability><featureCapability><key>svga16*svga.basecapslevel</key><featureName>svga16*svga.basecapslevel</featureName><value>9</value></featureCapability><featureCapability><key>svga16*svga.dxmaxconstantbuffers</key><featureName>svga16*svga.dxmaxconstantbuffers</featureName><value>14</value></featureCapability><featureCapability><key>svga16*svga.dxprovokingvertex</key><featureName>svga16*svga.dxprovokingvertex</featureName><value>1</value></featureCapability><featureCapability><key>svga16*svga.linestipple</key><featureName>svga16*svga.linestipple</featureName><value>1</value></featureCapability><featureCapability><key>svga16*svga.logicblendops</key><featureName>svga16*svga.logicblendops</featureName><value>1</value></featureCapability><featureCapability><key>svga16*svga.logicops</key><featureName>svga16*svga.logicops</featureName><value>1</value></featureCapability><featureCapability><key>svga16*svga.maxpointsize</key><featureName>svga16*svga.maxpointsize</featureName><value>189</value></featureCapability><featureCapability><key>svga16*svga.maxtextureanisotropy</key><featureName>svga16*svga.maxtextureanisotropy</featureName><value>16</value></featureCapability><featureCapability><key>svga16*svga.maxtexturesize</key><featureName>svga16*svga.maxtexturesize</featureName><value>8192</value></featureCapability><featureCapability><key>svga16*svga.maxvolumeextent</key><featureName>svga16*svga.maxvolumeextent</featureName><value>2048</value></featureCapability><featureCapability><key>svga16*svga.multisample2x</key><featureName>svga16*svga.multisample2x</featureName><value>1</value></featureCapability><featureCapability><key>svga16*svga.multisample4x</key><featureName>svga16*svga.multisample4x</featureName><value>1</value></featureCapability><featureCapability><key>svga16*svga.sm41</key><featureName>svga16*svga.sm41</featureName><value>1</value></featureCapability><featureCapability><key>svga16*svga.supports3d</key><featureName>svga16*svga.supports3d</featureName><value>1</value></featureCapability><featureCapability><key>vt.advexitinfo</key><featureName>vt.advexitinfo</featureName><value>1</value></featureCapability><featureCapability><key>vt.eptad</key><featureName>vt.eptad</featureName><value>1</value></featureCapability><featureCapability><key>vt.mbx</key><featureName>vt.mbx</featureName><value>1</value></featureCapability><featureCapability><key>vt.ple</key><featureName>vt.ple</featureName><value>1</value></featureCapability><featureCapability><key>vt.realmode</key><featureName>vt.realmode</featureName><value>1</value></featureCapability><featureCapability><key>vt.zeroinstlen</key><featureName>vt.zeroinstlen</featureName><value>1</value></featureCapability><maskedFeatureCapability><key>cpuid.3dnprefetch</key><featureName>cpuid.3dnprefetch</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.abm</key><featureName>cpuid.abm</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.adx</key><featureName>cpuid.adx</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.aes</key><featureName>cpuid.aes</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx</key><featureName>cpuid.avx</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx2</key><featureName>cpuid.avx2</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx512bitalg</key><featureName>cpuid.avx512bitalg</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx512bw</key><featureName>cpuid.avx512bw</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx512cd</key><featureName>cpuid.avx512cd</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx512dq</key><featureName>cpuid.avx512dq</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx512f</key><featureName>cpuid.avx512f</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx512ifma</key><featureName>cpuid.avx512ifma</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx512vbmi</key><featureName>cpuid.avx512vbmi</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx512vbmi2</key><featureName>cpuid.avx512vbmi2</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx512vl</key><featureName>cpuid.avx512vl</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx512vnni</key><featureName>cpuid.avx512vnni</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.avx512vpopcntdq</key><featureName>cpuid.avx512vpopcntdq</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.bmi1</key><featureName>cpuid.bmi1</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.bmi2</key><featureName>cpuid.bmi2</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.clflushopt</key><featureName>cpuid.clflushopt</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.clwb</key><featureName>cpuid.clwb</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.cmpxchg16b</key><featureName>cpuid.cmpxchg16b</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.ds</key><featureName>cpuid.ds</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.enfstrg</key><featureName>cpuid.enfstrg</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.f16c</key><featureName>cpuid.f16c</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.fast_short_repmov</key><featureName>cpuid.fast_short_repmov</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.fcmd</key><featureName>cpuid.fcmd</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.fma</key><featureName>cpuid.fma</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.fsgsbase</key><featureName>cpuid.fsgsbase</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.gfni</key><featureName>cpuid.gfni</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.hle</key><featureName>cpuid.hle</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.ibpb</key><featureName>cpuid.ibpb</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.ibrs</key><featureName>cpuid.ibrs</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.intel</key><featureName>cpuid.intel</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.invpcid</key><featureName>cpuid.invpcid</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.lahf64</key><featureName>cpuid.lahf64</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.lm</key><featureName>cpuid.lm</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.mdclear</key><featureName>cpuid.mdclear</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.movbe</key><featureName>cpuid.movbe</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.mwait</key><featureName>cpuid.mwait</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.nx</key><featureName>cpuid.nx</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.pcid</key><featureName>cpuid.pcid</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.pclmulqdq</key><featureName>cpuid.pclmulqdq</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.pdpe1gb</key><featureName>cpuid.pdpe1gb</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.pku</key><featureName>cpuid.pku</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.popcnt</key><featureName>cpuid.popcnt</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.rdpid</key><featureName>cpuid.rdpid</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.rdrand</key><featureName>cpuid.rdrand</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.rdseed</key><featureName>cpuid.rdseed</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.rdtscp</key><featureName>cpuid.rdtscp</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.rtm</key><featureName>cpuid.rtm</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.sha</key><featureName>cpuid.sha</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.smap</key><featureName>cpuid.smap</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.smep</key><featureName>cpuid.smep</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.ss</key><featureName>cpuid.ss</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.ssbd</key><featureName>cpuid.ssbd</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.sse3</key><featureName>cpuid.sse3</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.sse41</key><featureName>cpuid.sse41</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.sse42</key><featureName>cpuid.sse42</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.ssse3</key><featureName>cpuid.ssse3</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.stibp</key><featureName>cpuid.stibp</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.umip</key><featureName>cpuid.umip</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.vaes</key><featureName>cpuid.vaes</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.vmx</key><featureName>cpuid.vmx</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.vpclmulqdq</key><featureName>cpuid.vpclmulqdq</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.wbnoinvd</key><featureName>cpuid.wbnoinvd</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xcr0_master_bndcsr</key><featureName>cpuid.xcr0_master_bndcsr</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xcr0_master_bndregs</key><featureName>cpuid.xcr0_master_bndregs</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xcr0_master_hi16_zmm</key><featureName>cpuid.xcr0_master_hi16_zmm</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xcr0_master_opmask</key><featureName>cpuid.xcr0_master_opmask</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xcr0_master_pkru</key><featureName>cpuid.xcr0_master_pkru</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xcr0_master_sse</key><featureName>cpuid.xcr0_master_sse</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xcr0_master_ymm_h</key><featureName>cpuid.xcr0_master_ymm_h</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xcr0_master_zmm_h</key><featureName>cpuid.xcr0_master_zmm_h</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xgetbv_ecx1</key><featureName>cpuid.xgetbv_ecx1</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xsave</key><featureName>cpuid.xsave</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xsavec</key><featureName>cpuid.xsavec</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xsaveopt</key><featureName>cpuid.xsaveopt</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>cpuid.xsaves</key><featureName>cpuid.xsaves</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>hv.capable</key><featureName>hv.capable</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>misc.cpuidfaulting</key><featureName>misc.cpuidfaulting</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>misc.ibrs_all</key><featureName>misc.ibrs_all</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>misc.mds_no</key><featureName>misc.mds_no</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>misc.rdcl_no</key><featureName>misc.rdcl_no</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>misc.rrsba_no</key><featureName>misc.rrsba_no</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>misc.rsba_no</key><featureName>misc.rsba_no</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.basecapslevel</key><featureName>svga16*svga.basecapslevel</featureName><value>9</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.dxmaxconstantbuffers</key><featureName>svga16*svga.dxmaxconstantbuffers</featureName><value>14</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.dxprovokingvertex</key><featureName>svga16*svga.dxprovokingvertex</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.linestipple</key><featureName>svga16*svga.linestipple</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.logicblendops</key><featureName>svga16*svga.logicblendops</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.logicops</key><featureName>svga16*svga.logicops</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.maxpointsize</key><featureName>svga16*svga.maxpointsize</featureName><value>189</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.maxtextureanisotropy</key><featureName>svga16*svga.maxtextureanisotropy</featureName><value>16</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.maxtexturesize</key><featureName>svga16*svga.maxtexturesize</featureName><value>8192</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.maxvolumeextent</key><featureName>svga16*svga.maxvolumeextent</featureName><value>2048</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.multisample2x</key><featureName>svga16*svga.multisample2x</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.multisample4x</key><featureName>svga16*svga.multisample4x</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.sm41</key><featureName>svga16*svga.sm41</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>svga16*svga.supports3d</key><featureName>svga16*svga.supports3d</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>vt.advexitinfo</key><featureName>vt.advexitinfo</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>vt.eptad</key><featureName>vt.eptad</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>vt.mbx</key><featureName>vt.mbx</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>vt.ple</key><featureName>vt.ple</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>vt.realmode</key><featureName>vt.realmode</featureName><value>1</value></maskedFeatureCapability><maskedFeatureCapability><key>vt.zeroinstlen</key><featureName>vt.zeroinstlen</featureName><value>1</value></maskedFeatureCapability><vFlashConfigInfo><vFlashCacheConfigInfo><defaultVFlashModule>vfc</defaultVFlashModule><swapCacheReservationInGB>0</swapCacheReservationInGB></vFlashCacheConfigInfo></vFlashConfigInfo><vsanHostConfig><enabled>true</enabled><hostSystem
        type=\"HostSystem\">host-14</hostSystem><clusterInfo><uuid>5281f817-da25-63b1-f53a-57a4a4c49434</uuid><nodeUuid>65782330-1193-79a7-1a42-062517c9e1a8</nodeUuid></clusterInfo><storageInfo><autoClaimStorage>false</autoClaimStorage><diskMapping><ssd><deviceName>/vmfs/devices/disks/eui.bf39aeebe2d354a3000c29631c7fc125</deviceName><deviceType>disk</deviceType><key>key-vim.host.ScsiDisk-06bf39aeebe2d354a3000c29631c7fc125</key><uuid>06bf39aeebe2d354a3000c29631c7fc125</uuid><canonicalName>eui.bf39aeebe2d354a3000c29631c7fc125</canonicalName><displayName>Local
        NVMe Disk (eui.bf39aeebe2d354a3000c29631c7fc125)</displayName><lunType>disk</lunType><vendor>NVMe</vendor><model>VMware
        Virtual NVMe Disk</model><revision>1.3</revision><scsiLevel>0</scsiLevel><serialNumber>bf39aeebe2d354a3000c29631c7fc125</serialNumber><queueDepth>128</queueDepth><operationalState>ok</operationalState><capabilities><updateDisplayNameSupported>true</updateDisplayNameSupported></capabilities><vStorageSupport>vStorageUnsupported</vStorageSupport><protocolEndpoint>false</protocolEndpoint><perenniallyReserved>false</perenniallyReserved><clusteredVmdkSupported>false</clusteredVmdkSupported><applicationProtocol>NVMe</applicationProtocol><dispersedNs>false</dispersedNs><capacity><blockSize>512</blockSize><block>94371840</block></capacity><devicePath>/vmfs/devices/disks/eui.bf39aeebe2d354a3000c29631c7fc125</devicePath><ssd>true</ssd><localDisk>true</localDisk><physicalLocation>nvme1</physicalLocation><emulatedDIXDIFEnabled>false</emulatedDIXDIFEnabled><vsanDiskInfo><vsanUuid>521f98f3-ff1e-b793-5e4e-c9e71c3c7640</vsanUuid><formatVersion>21</formatVersion></vsanDiskInfo><scsiDiskType>emulated512</scsiDiskType></ssd><nonSsd><deviceName>/vmfs/devices/disks/mpx.vmhba0:C0:T2:L0</deviceName><deviceType>disk</deviceType><key>key-vim.host.ScsiDisk-0000000000766d686261303a323a30</key><uuid>0000000000766d686261303a323a30</uuid><canonicalName>mpx.vmhba0:C0:T2:L0</canonicalName><displayName>Local
        VMware Disk (mpx.vmhba0:C0:T2:L0)</displayName><lunType>disk</lunType><vendor>VMware
        \ </vendor><model>Virtual disk    </model><revision>2.0 </revision><scsiLevel>6</scsiLevel><serialNumber>unavailable</serialNumber><queueDepth>1024</queueDepth><operationalState>ok</operationalState><capabilities><updateDisplayNameSupported>false</updateDisplayNameSupported></capabilities><vStorageSupport>vStorageUnsupported</vStorageSupport><protocolEndpoint>false</protocolEndpoint><perenniallyReserved>false</perenniallyReserved><clusteredVmdkSupported>false</clusteredVmdkSupported><applicationProtocol>SCSI</applicationProtocol><dispersedNs>false</dispersedNs><capacity><blockSize>512</blockSize><block>94371840</block></capacity><devicePath>/vmfs/devices/disks/mpx.vmhba0:C0:T2:L0</devicePath><ssd>false</ssd><localDisk>true</localDisk><emulatedDIXDIFEnabled>false</emulatedDIXDIFEnabled><vsanDiskInfo><vsanUuid>52a2fba0-a1dc-241b-3b7c-700b3a6d2b0c</vsanUuid><formatVersion>21</formatVersion></vsanDiskInfo><scsiDiskType>native512</scsiDiskType></nonSsd><nonSsd><deviceName>/vmfs/devices/disks/mpx.vmhba0:C0:T1:L0</deviceName><deviceType>disk</deviceType><key>key-vim.host.ScsiDisk-0000000000766d686261303a313a30</key><uuid>0000000000766d686261303a313a30</uuid><canonicalName>mpx.vmhba0:C0:T1:L0</canonicalName><displayName>Local
        VMware Disk (mpx.vmhba0:C0:T1:L0)</displayName><lunType>disk</lunType><vendor>VMware
        \ </vendor><model>Virtual disk    </model><revision>2.0 </revision><scsiLevel>6</scsiLevel><serialNumber>unavailable</serialNumber><queueDepth>1024</queueDepth><operationalState>ok</operationalState><capabilities><updateDisplayNameSupported>false</updateDisplayNameSupported></capabilities><vStorageSupport>vStorageUnsupported</vStorageSupport><protocolEndpoint>false</protocolEndpoint><perenniallyReserved>false</perenniallyReserved><clusteredVmdkSupported>false</clusteredVmdkSupported><applicationProtocol>SCSI</applicationProtocol><dispersedNs>false</dispersedNs><capacity><blockSize>512</blockSize><block>94371840</block></capacity><devicePath>/vmfs/devices/disks/mpx.vmhba0:C0:T1:L0</devicePath><ssd>false</ssd><localDisk>true</localDisk><emulatedDIXDIFEnabled>false</emulatedDIXDIFEnabled><vsanDiskInfo><vsanUuid>5278baad-c436-7482-2a26-111713506af2</vsanUuid><formatVersion>21</formatVersion></vsanDiskInfo><scsiDiskType>native512</scsiDiskType></nonSsd></diskMapping><diskMapInfo><mapping><ssd><deviceName>/vmfs/devices/disks/eui.bf39aeebe2d354a3000c29631c7fc125</deviceName><deviceType>disk</deviceType><key>key-vim.host.ScsiDisk-06bf39aeebe2d354a3000c29631c7fc125</key><uuid>06bf39aeebe2d354a3000c29631c7fc125</uuid><canonicalName>eui.bf39aeebe2d354a3000c29631c7fc125</canonicalName><displayName>Local
        NVMe Disk (eui.bf39aeebe2d354a3000c29631c7fc125)</displayName><lunType>disk</lunType><vendor>NVMe</vendor><model>VMware
        Virtual NVMe Disk</model><revision>1.3</revision><scsiLevel>0</scsiLevel><serialNumber>bf39aeebe2d354a3000c29631c7fc125</serialNumber><queueDepth>128</queueDepth><operationalState>ok</operationalState><capabilities><updateDisplayNameSupported>true</updateDisplayNameSupported></capabilities><vStorageSupport>vStorageUnsupported</vStorageSupport><protocolEndpoint>false</protocolEndpoint><perenniallyReserved>false</perenniallyReserved><clusteredVmdkSupported>false</clusteredVmdkSupported><applicationProtocol>NVMe</applicationProtocol><dispersedNs>false</dispersedNs><capacity><blockSize>512</blockSize><block>94371840</block></capacity><devicePath>/vmfs/devices/disks/eui.bf39aeebe2d354a3000c29631c7fc125</devicePath><ssd>true</ssd><localDisk>true</localDisk><physicalLocation>nvme1</physicalLocation><emulatedDIXDIFEnabled>false</emulatedDIXDIFEnabled><vsanDiskInfo><vsanUuid>521f98f3-ff1e-b793-5e4e-c9e71c3c7640</vsanUuid><formatVersion>21</formatVersion></vsanDiskInfo><scsiDiskType>emulated512</scsiDiskType></ssd><nonSsd><deviceName>/vmfs/devices/disks/mpx.vmhba0:C0:T2:L0</deviceName><deviceType>disk</deviceType><key>key-vim.host.ScsiDisk-0000000000766d686261303a323a30</key><uuid>0000000000766d686261303a323a30</uuid><canonicalName>mpx.vmhba0:C0:T2:L0</canonicalName><displayName>Local
        VMware Disk (mpx.vmhba0:C0:T2:L0)</displayName><lunType>disk</lunType><vendor>VMware
        \ </vendor><model>Virtual disk    </model><revision>2.0 </revision><scsiLevel>6</scsiLevel><serialNumber>unavailable</serialNumber><queueDepth>1024</queueDepth><operationalState>ok</operationalState><capabilities><updateDisplayNameSupported>false</updateDisplayNameSupported></capabilities><vStorageSupport>vStorageUnsupported</vStorageSupport><protocolEndpoint>false</protocolEndpoint><perenniallyReserved>false</perenniallyReserved><clusteredVmdkSupported>false</clusteredVmdkSupported><applicationProtocol>SCSI</applicationProtocol><dispersedNs>false</dispersedNs><capacity><blockSize>512</blockSize><block>94371840</block></capacity><devicePath>/vmfs/devices/disks/mpx.vmhba0:C0:T2:L0</devicePath><ssd>false</ssd><localDisk>true</localDisk><emulatedDIXDIFEnabled>false</emulatedDIXDIFEnabled><vsanDiskInfo><vsanUuid>52a2fba0-a1dc-241b-3b7c-700b3a6d2b0c</vsanUuid><formatVersion>21</formatVersion></vsanDiskInfo><scsiDiskType>native512</scsiDiskType></nonSsd><nonSsd><deviceName>/vmfs/devices/disks/mpx.vmhba0:C0:T1:L0</deviceName><deviceType>disk</deviceType><key>key-vim.host.ScsiDisk-0000000000766d686261303a313a30</key><uuid>0000000000766d686261303a313a30</uuid><canonicalName>mpx.vmhba0:C0:T1:L0</canonicalName><displayName>Local
        VMware Disk (mpx.vmhba0:C0:T1:L0)</displayName><lunType>disk</lunType><vendor>VMware
        \ </vendor><model>Virtual disk    </model><revision>2.0 </revision><scsiLevel>6</scsiLevel><serialNumber>unavailable</serialNumber><queueDepth>1024</queueDepth><operationalState>ok</operationalState><capabilities><updateDisplayNameSupported>false</updateDisplayNameSupported></capabilities><vStorageSupport>vStorageUnsupported</vStorageSupport><protocolEndpoint>false</protocolEndpoint><perenniallyReserved>false</perenniallyReserved><clusteredVmdkSupported>false</clusteredVmdkSupported><applicationProtocol>SCSI</applicationProtocol><dispersedNs>false</dispersedNs><capacity><blockSize>512</blockSize><block>94371840</block></capacity><devicePath>/vmfs/devices/disks/mpx.vmhba0:C0:T1:L0</devicePath><ssd>false</ssd><localDisk>true</localDisk><emulatedDIXDIFEnabled>false</emulatedDIXDIFEnabled><vsanDiskInfo><vsanUuid>5278baad-c436-7482-2a26-111713506af2</vsanUuid><formatVersion>21</formatVersion></vsanDiskInfo><scsiDiskType>native512</scsiDiskType></nonSsd></mapping><mounted>true</mounted></diskMapInfo></storageInfo><networkInfo><port><ipConfig><upstreamIpAddress>224.1.2.3</upstreamIpAddress><downstreamIpAddress>224.2.3.4</downstreamIpAddress></ipConfig><device>vmk0</device></port></networkInfo><faultDomainInfo><name></name></faultDomainInfo><vsanEsaEnabled>false</vsanEsaEnabled></vsanHostConfig><scriptCheckSum>uK8MZkT8fBDbcID+ZIV2ccpNHJRKz1/W7JC4yC34plI=</scriptCheckSum><hostConfigCheckSum>Hum9ohOLiOHD5lPQAtMmh8oZSDaLrZISdpFAv4H/4oM=</hostConfigCheckSum><descriptionTreeCheckSum>z2zKarKm0TPRKmSn9t+QkQnXk86uTf+WOb1Hr10ga4U=</descriptionTreeCheckSum><graphicsConfig><hostDefaultGraphicsType>shared</hostDefaultGraphicsType><sharedPassthruAssignmentPolicy>performance</sharedPassthruAssignmentPolicy></graphicsConfig><ioFilterInfo><id>VMW_spm_1.0.0</id><name>spm</name><vendor>VMW</vendor><version>1.0.230</version><type>datastoreIoControl</type><summary>VMware
        Storage I/O Control</summary><releaseDate>2016-07-21</releaseDate><available>true</available></ioFilterInfo><ioFilterInfo><id>VMW_vmwarevmcrypt_1.0.0</id><name>vmwarevmcrypt</name><vendor>VMW</vendor><version>1.0.0</version><type>encryption</type><summary>VMcrypt
        IO Filter</summary><releaseDate>2016-07-21</releaseDate><available>true</available></ioFilterInfo><ioFilterInfo><id>VMW_vmwarelwd_4.0.0</id><name>vmwarelwd</name><vendor>VMW</vendor><version>4.0.0</version><type>dataCapture</type><summary>LWD
        IO Filter</summary><releaseDate>2021-07-21</releaseDate><available>true</available></ioFilterInfo><assignableHardwareConfig></assignableHardwareConfig></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '966672'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:18 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '72'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">vm</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfManagedObjectReference\"><ManagedObjectReference
        type=\"VirtualMachine\" xsi:type=\"ManagedObjectReference\">vm-20</ManagedObjectReference></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '550'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:19 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">datastore</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfManagedObjectReference\"><ManagedObjectReference
        type=\"Datastore\" xsi:type=\"ManagedObjectReference\">datastore-17</ManagedObjectReference></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '552'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:19 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">network</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"ArrayOfManagedObjectReference\"><ManagedObjectReference
        type=\"Network\" xsi:type=\"ManagedObjectReference\">network-13</ManagedObjectReference></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '548'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:19 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '9'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">datastoreBrowser</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval type=\"HostDatastoreBrowser\" xsi:type=\"ManagedObjectReference\">datastoreBrowser-host-14</returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '485'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:19 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '10'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">systemResources</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"><returnval xsi:type=\"HostSystemResourceInfo\"><key>host</key><config><cpuAllocation><reservation>15960</reservation><expandableReservation>false</expandableReservation><limit>15960</limit><shares><shares>4096000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>16303</reservation><expandableReservation>false</expandableReservation><limit>16303</limit><shares><shares>-1</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></memoryAllocation></config><child><key>host/system</key><config><cpuAllocation><reservation>200</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>2660</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/system/boot</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/kernel</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/helper</key><config><cpuAllocation><reservation>60</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/lfhelper</key><config><cpuAllocation><reservation>60</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers</key><config><cpuAllocation><reservation>60</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/system/drivers/procfs-32757</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/crypto_fips-32758</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/hyperclock-32759</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vfat-32760</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/lfHelper-32761</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmklink_mpi-32762</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vprobe-32765</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/deltadisk-32766</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/i2c-32767</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/dvx-1</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmkapi_mgmt-2</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmci-3</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/gss-4</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/etherswitch-5</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/dvfilter-6</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/iodm-7</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/dvfilter-generic-fastpath-8</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/portcfg-9</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vswitch-10</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/netsched_fifo-11</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/netsched_hclk-12</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/netioc-13</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/lb_netqueue_bal-14</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmspace-15</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmknvme-16</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/procMisc-17</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmkibft-18</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/klm-19</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/dm-20</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/balloonVMCI-21</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nmp-22</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/hpp_legacy-23</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmw_satp_local-24</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmw_satp_default_aa-25</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmw_psp_lib-26</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmw_psp_fixed-27</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmw_psp_rr-28</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmw_psp_mru-29</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/pvscsi-30</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nvmxnet3_ens-31</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmkbsd-32</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmkata-33</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmknvme_vmkapi_compat-34</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nvme_pcie-35</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmkusb-36</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nvmxnet3-37</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/pciPassthru-38</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vdfm-39</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/lvmdriver-40</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nrdma-41</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/rmwfilter-42</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/healthchk-43</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nrdma_vmkapi_shim-44</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/filtmod-45</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vrdma-46</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmktracing-47</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/teamcheck-48</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vmfs3-49</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vlanmtucheck-50</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/heartbeat-51</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/shaper-52</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/lldp-53</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/cdp-54</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/ipfix-55</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/vflash-57</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/dvsdev-58</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/lacp-59</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/esxfw-60</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/hbr_filter-61</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/ftcpt-62</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/esxio-63</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/sunrpc-64</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nfsclient-65</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/nfs41client-66</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/hpp-67</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/swapobj-68</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/svmmirror-69</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/cbt-70</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/drivers/migrate-71</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/system/ft</key><config><cpuAllocation><reservation>60</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></memoryAllocation></config></child><child><key>host/system/vmotion</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></memoryAllocation></config></child><child><key>host/system/svmotion</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>0</limit><shares><shares>0</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/system/visorfs/visorfsPager</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>17</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/system/visorfs/ramdisks/root</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>32</reservation><expandableReservation>true</expandableReservation><limit>32</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/etc</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>28</reservation><expandableReservation>true</expandableReservation><limit>28</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/opt</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>32</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/var</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>5</reservation><expandableReservation>true</expandableReservation><limit>48</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/tmp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>2</reservation><expandableReservation>true</expandableReservation><limit>256</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/iofilters</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>32</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/shm</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>1024</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/crx</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>1024</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/configstore</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>32</reservation><expandableReservation>true</expandableReservation><limit>32</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/configstorebkp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>32</reservation><expandableReservation>true</expandableReservation><limit>32</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/visorfs/ramdisks/hostdstats</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>206</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child></child><child><key>host/system/virtscsi</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/net</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/system/net/tcpip4-56</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/system/storage</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/system/userworld</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim</key><config><cpuAllocation><reservation>2374</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor</key><config><cpuAllocation><reservation>698</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/aam</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/apiForwarder</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>58</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/apiForwarder/apiForwarder.1000211395</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/attestd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/authd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>18</reservation><expandableReservation>true</expandableReservation><limit>130</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/auto-backup.sh</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>30</reservation><expandableReservation>true</expandableReservation><limit>30</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/backup.sh</key><config><cpuAllocation><reservation>40</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>70</reservation><expandableReservation>true</expandableReservation><limit>70</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/boot</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/clusterAgent</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/configManagerPlugin</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>81</reservation><expandableReservation>true</expandableReservation><limit>81</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/crond</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>28</reservation><expandableReservation>true</expandableReservation><limit>100</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/crond/busybox.1000210951</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/dcui</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>45</reservation><expandableReservation>true</expandableReservation><limit>101</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/dcui/dcui.1000212161</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/dhclient</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>35</reservation><expandableReservation>true</expandableReservation><limit>35</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/dhclient/dhclient-uw.1000210844</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/dhclientrelease</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/entropyd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/envoy</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>120</reservation><expandableReservation>true</expandableReservation><limit>120</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/envoy/envoy.1000211174</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/esxgdpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>48</reservation><expandableReservation>true</expandableReservation><limit>48</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/esxgdpd/esxgdpd.1000211120</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/esximage</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>900</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/esxio-commd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/esxtokend</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>50</reservation><expandableReservation>true</expandableReservation><limit>50</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/esxtokend/esxtokend.1000211295</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/etcd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/gpuManager</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/gstored</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/healthd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>28</reservation><expandableReservation>true</expandableReservation><limit>28</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/healthd/healthd.1000211829</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/healthd-plugins</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>40</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd</key><config><cpuAllocation><reservation>838</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>499</reservation><expandableReservation>true</expandableReservation><limit>499</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/hostd/hostd.1000211468</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/hostd-probe</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>40</reservation><expandableReservation>true</expandableReservation><limit>40</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/hostd-probe/stats</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/hostd-probe/stats/awk</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/head</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/logger</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/ls</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/pgrep</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/probe</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/hostd-probe/stats/probe/hostd-probe.1000212376</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/hostd-probe/stats/sh</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/vmkbacktrace</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostd-probe/stats/vmware</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child></child><child><key>host/vim/vmvisor/hostd-tmp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>20</reservation><expandableReservation>true</expandableReservation><limit>500</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/hostdCgiServer</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>38</reservation><expandableReservation>true</expandableReservation><limit>38</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/hostdCgiServer/hostdCgiServer.1000211297</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/inetd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>10</reservation><expandableReservation>true</expandableReservation><limit>10</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/inetd/busybox.1000210918</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/infravisor</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>8</reservation><expandableReservation>true</expandableReservation><limit>8</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/infravisor/inf-bootstrapper.1000211645</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/infravisor-runtime</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>5</reservation><expandableReservation>true</expandableReservation><limit>512</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/init/DCUI</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/ESXShell</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/SSH</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/apiForwarder</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/attestd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/cdp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/clomd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/clusterAgent</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/cmmdsTimeMachine</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/cmmdsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/dcbd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/dpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/drivervm-init</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/entropyd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/envoy</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/epd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/esxTokenCPS</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/esxgdpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/esxio-commd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/esxui</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/fsvmsockrelay</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/gpuManager</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/gstored</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/hbrsrv</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/health</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/hostd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/hostdCgiServer</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/infravisor</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/iofilterd-spm</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/iofilterd-vmwarevmcrypt</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/iofiltervpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/kmxa</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/kmxd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/lacp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/lbtd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/lsud</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/lwsmd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/nfcd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/nfsgssd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/nicmgmtd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/nscd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/ntpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/nvmf-discoveryd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/osfsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/pcscd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/pmemGarbageCollection</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/ptp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/ptpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/rhttpproxy</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/sandboxd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/sdrsInjector</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/sensord</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/settingsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/sfcbd-watchdog</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/slpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/smartd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/snmpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/storageRM</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/swapobjd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/trx</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/usbarbitrator</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vaai-nasd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vdfsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vdtc</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vit_loader</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vitd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vltd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vmfstraced</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vmsyslogd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vmtoolsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vobd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vpxa</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vsanObserver</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vsandevicemonitord</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vsanmgmtd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vsantraced</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/vvold</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/wsman</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/xorg</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/init/init.1000210520</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/keypersist</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>12</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/keypersist/keypersist.1000210641</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/keypersist/keypersist.1000210642</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/kmxa</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>42</reservation><expandableReservation>true</expandableReservation><limit>42</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/kmxa/kmxa.1000210862</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/kmxd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/lacpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>28</reservation><expandableReservation>true</expandableReservation><limit>28</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/lacpd/net-lacp.1000210835</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/lbt</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>12</reservation><expandableReservation>true</expandableReservation><limit>24</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/lbt/net-lbt.1000211298</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/lifecycle-cgi</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>800</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/likewise</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/loadESX</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/logging</key><config><cpuAllocation><reservation>559</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>141</reservation><expandableReservation>true</expandableReservation><limit>141</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/logging/vmsyslogd.1000210577</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/logging/vmsyslogd.1000210578</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/lsud</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>48</reservation><expandableReservation>true</expandableReservation><limit>98</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/lsud/lsud.1000211887</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/monitor-vfat</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>100</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/net-daemons</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>11</reservation><expandableReservation>true</expandableReservation><limit>46</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/net-daemons/dcbd.1000211668</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/net-daemons/net-cdp.1000211679</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/netcpa</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/nfcd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>16</reservation><expandableReservation>true</expandableReservation><limit>16</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/nfsgssd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/nicmgmtd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>23</reservation><expandableReservation>true</expandableReservation><limit>23</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/nicmgmtd/nicmgmtd.1000211682</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/nscd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>30</reservation><expandableReservation>true</expandableReservation><limit>30</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/nscd/nscd.1000211662</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/ntpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>15</reservation><expandableReservation>true</expandableReservation><limit>15</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/nvmf-discoveryd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/osfsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/pcscd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/petronas</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/petronas-integ</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/plugins</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/pmemGC</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>400</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/ptpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/rhttpproxy</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>30</reservation><expandableReservation>true</expandableReservation><limit>30</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/rhttpproxy/rhttpproxy.1000211310</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/sandboxd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>29</reservation><expandableReservation>true</expandableReservation><limit>29</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/sandboxd/sandboxd.1000211105</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/sddc-bootstrap</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/sensord</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>33</reservation><expandableReservation>true</expandableReservation><limit>33</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/sensord/sensord.1000211318</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/settingsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>38</reservation><expandableReservation>true</expandableReservation><limit>38</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/settingsd/settingsd.1000211696</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/settingsd-nontask-forks</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>400</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/settingsd-task-forks</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>300</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/sfcb</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/sfcb_aux</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/sioc</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>52</reservation><expandableReservation>true</expandableReservation><limit>52</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/sioc/storageRM.1000211282</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/sioc/sdrsInjector.1000211289</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/slp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>11</reservation><expandableReservation>true</expandableReservation><limit>11</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/smartd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>13</reservation><expandableReservation>true</expandableReservation><limit>48</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/smartd/smartd.1000211664</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/snmpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>200</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/spherelet</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/spherelet/imgfetcher</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/spherelet/logfetcher</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/swapobjd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>15</reservation><expandableReservation>true</expandableReservation><limit>15</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/swapobjd/swapobjd.1000211184</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/systemStorage</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>45</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/upittraced</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/usbArbitrator</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>16</reservation><expandableReservation>true</expandableReservation><limit>16</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/usbArbitrator/vmware-usbarbitrator.1000211248</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/uwdaemons</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/uwsvc-init-tmp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>85</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/vaai-nasd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/vdtc</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>23</reservation><expandableReservation>true</expandableReservation><limit>23</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/vdtc/vdtc.1000211130</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/vmfstraced</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>10</reservation><expandableReservation>true</expandableReservation><limit>10</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/vmfstraced/sh.1000211411</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/vmfstraced/logchannellogger.1000211438</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/vmkdevmgr</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>20</reservation><expandableReservation>true</expandableReservation><limit>82</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/vmkdevmgr/vmkdevmgr.1000210746</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/vmkdevmgr-drivervm</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>82</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/vmkeventd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>23</reservation><expandableReservation>true</expandableReservation><limit>92</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/vmkeventd/vmkeventd.1000210604</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/vmkiscsid</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/vmsupport</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/vobd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>38</reservation><expandableReservation>true</expandableReservation><limit>38</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/vobd/vobd.1000210611</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/vpxa</key><config><cpuAllocation><reservation>439</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>170</reservation><expandableReservation>true</expandableReservation><limit>170</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/vpxa/vpxa.1000211741</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/vvold</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/vim/vmvisor/watchdog</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>4</reservation><expandableReservation>true</expandableReservation><limit>4</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vmvisor/watchdog/watchdog.1000212159</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vmvisor/wsman</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>599</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vimuser</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>250</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vimuser/terminal</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>45</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vimuser/terminal/shell</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>512</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/vim/vimuser/terminal/shell/sh.1000212160</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vimuser/terminal/ssh</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>800</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/vim/vimuser/vmtoolsd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>100</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>46</reservation><expandableReservation>false</expandableReservation><limit>46</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>0</overheadLimit></memoryAllocation></config><child><key>host/vim/vimuser/vmtoolsd/vmtoolsd.1000211912</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child></child><child><key>host/vim/tmp</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>250</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/iofilters</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/iofilters/iofiltervpd</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>23</reservation><expandableReservation>true</expandableReservation><limit>23</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/iofilters/iofiltervpd/ioFilterVPServer.1000211198</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>0</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/iofilters/spm</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/iofilters/vmwarevmcrypt</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child><child><key>host/user</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>9000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>9000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/opt</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>500</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/opt/vsan</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config><child><key>host/opt/vsan/vsanConfig</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>0</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/opt/vsan/vsanapi-32763</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child><child><key>host/opt/vsan/vsanbase-32764</key><config><cpuAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>custom</level></shares><overheadLimit>-1</overheadLimit></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>true</expandableReservation><limit>-1</limit><shares><shares>0</shares><level>normal</level></shares><overheadLimit>-1</overheadLimit></memoryAllocation></config></child></child></child></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '182635'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:20 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '29'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">answerFileValidationState</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '376'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:20 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '6'
    status:
      code: 200
      message: OK
- request:
    body: '<?xml version="1.0" encoding="UTF-8"?>

      <soapenv:Envelope xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <soapenv:Body><Fetch xmlns="urn:vim25"><_this versionId="8.0.2.0" type="HostSystem">host-14</_this><prop
      versionId="8.0.2.0">answerFileValidationResult</prop></Fetch></soapenv:Body>

      </soapenv:Envelope>'
    headers:
      Accept-Encoding:
      - gzip, deflate
      Content-Type:
      - text/xml; charset=UTF-8
      Cookie:
      - vmware_soap_session="b422aff8d57bc10405e408225f4cbe4acb4facb0"; Path=/; HttpOnly;
        Secure;
      SOAPAction:
      - '"urn:vim25/8.0.2.0"'
      User-Agent:
      - pyvmomi Python/3.9.8 (Darwin; 22.6.0; arm64)
    method: POST
    uri: https://vcenter/sdk
  response:
    body:
      string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"\n
        xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n
        xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n<soapenv:Body>\n<FetchResponse
        xmlns=\"urn:vim25\"></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
    headers:
      cache-control:
      - no-cache
      content-length:
      - '376'
      content-type:
      - text/xml; charset=utf-8
      date:
      - Thu, 14 Dec 2023 10:38:20 GMT
      transfer-encoding:
      - chunked
      vary:
      - Accept-Encoding
      x-envoy-upstream-service-time:
      - '4'
    status:
      code: 200
      message: OK
version: 1