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
|
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:26:04 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:26:05 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><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>52024b11-ba6c-1a8e-b752-bf289326bfb1</key><userName>my_user</userName><fullName>my_user</fullName><loginTime>2023-12-14T10:26:05.463255Z</loginTime><lastActiveTime>2023-12-14T10:26:05.463255Z</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:
- '872'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:05 GMT
set-cookie:
- vmware_soap_session="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; Path=/; HttpOnly;
Secure;
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-envoy-upstream-service-time:
- '70'
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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26:05 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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\"></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '432'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:05 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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=\"Folder\" xsi:type=\"ManagedObjectReference\">group-v8</returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '455'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:06 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26:06 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26:06 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26:06 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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\"></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '423'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:07 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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\">-669998656</int></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '461'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:07 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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\"><Permission
xsi:type=\"Permission\"><entity type=\"VirtualMachine\">vm-19</entity><principal>VSPHERE.LOCAL\\Administrators</principal><group>true</group><roleId>-669998656</roleId><propagate>true</propagate></Permission><Permission
xsi:type=\"Permission\"><entity type=\"VirtualMachine\">vm-19</entity><principal>VSPHERE.LOCAL\\vCLSAdmin</principal><group>true</group><roleId>-669998656</roleId><propagate>true</propagate></Permission></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '853'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:07 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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\">vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573</returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '462'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:07 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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\">Destroy_Task</string><string
xsi:type=\"xsd:string\">UnregisterVM</string><string xsi:type=\"xsd:string\">UnmountToolsInstaller</string><string
xsi:type=\"xsd:string\">AnswerVM</string><string xsi:type=\"xsd:string\">UpgradeVM_Task</string><string
xsi:type=\"xsd:string\">UpgradeTools_Task</string><string xsi:type=\"xsd:string\">UpgradeToolsFromImage_Task</string><string
xsi:type=\"xsd:string\">ApplyEvcModeVM_Task</string><string xsi:type=\"xsd:string\">StartRecording_Task</string><string
xsi:type=\"xsd:string\">StopRecording_Task</string><string xsi:type=\"xsd:string\">StartReplaying_Task</string><string
xsi:type=\"xsd:string\">StopReplaying_Task</string><string xsi:type=\"xsd:string\">TurnOffFaultToleranceForVM_Task</string><string
xsi:type=\"xsd:string\">MakePrimaryVM_Task</string><string xsi:type=\"xsd:string\">TerminateFaultTolerantVM_Task</string><string
xsi:type=\"xsd:string\">DisableSecondaryVM_Task</string><string xsi:type=\"xsd:string\">EnableSecondaryVM_Task</string><string
xsi:type=\"xsd:string\">CreateSecondaryVM_Task</string><string xsi:type=\"xsd:string\">CreateSecondaryVMEx_Task</string><string
xsi:type=\"xsd:string\">StopRecording_Task</string><string xsi:type=\"xsd:string\">StopReplaying_Task</string><string
xsi:type=\"xsd:string\">CustomizeVM_Task</string><string xsi:type=\"xsd:string\">MarkAsTemplate</string><string
xsi:type=\"xsd:string\">ResetGuestInformation</string><string xsi:type=\"xsd:string\">ExportVm</string><string
xsi:type=\"xsd:string\">PowerOnVM_Task</string><string xsi:type=\"xsd:string\">MarkAsVirtualMachine</string></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '1978'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:08 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26:08 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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>40.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-40</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.217239Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>47.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-47</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.21714Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>5.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-5</alarm><overallStatus>green</overallStatus><time>2023-12-12T10:07:51.953774Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>146.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-146</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.217012Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>128.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-128</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.216963Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>12.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-12</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.216914Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>142.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-142</alarm><overallStatus>green</overallStatus><time>2023-12-12T10:07:37.496264Z</time><acknowledged>false</acknowledged><eventKey>1946</eventKey></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>10.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-10</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.216858Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>39.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-39</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.214101Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>168.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-168</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.213402Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>52.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-52</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.213505Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>81.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-81</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.21355Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>111.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-111</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.21359Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>6.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-6</alarm><overallStatus>green</overallStatus><time>2023-12-12T10:07:51.953845Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>19.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-19</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.213693Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>2.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-2</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.213741Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>54.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-54</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.213924Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>15.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-15</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.213976Z</time><acknowledged>false</acknowledged></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>38.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-38</alarm><overallStatus>green</overallStatus><time>2023-12-12T10:06:42.290005Z</time><acknowledged>false</acknowledged><eventKey>1931</eventKey></AlarmState><AlarmState
xsi:type=\"AlarmState\"><key>9.19</key><entity type=\"VirtualMachine\">vm-19</entity><alarm
type=\"Alarm\">alarm-9</alarm><overallStatus>gray</overallStatus><time>2023-12-12T10:04:47.214064Z</time><acknowledged>false</acknowledged></AlarmState></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '5521'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:08 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26:09 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26:09 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26:09 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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=\"VirtualMachineCapability\"><snapshotOperationsSupported>true</snapshotOperationsSupported><multipleSnapshotsSupported>true</multipleSnapshotsSupported><snapshotConfigSupported>true</snapshotConfigSupported><poweredOffSnapshotsSupported>true</poweredOffSnapshotsSupported><memorySnapshotsSupported>true</memorySnapshotsSupported><revertToSnapshotSupported>true</revertToSnapshotSupported><quiescedSnapshotsSupported>true</quiescedSnapshotsSupported><disableSnapshotsSupported>false</disableSnapshotsSupported><lockSnapshotsSupported>true</lockSnapshotsSupported><consolePreferencesSupported>false</consolePreferencesSupported><cpuFeatureMaskSupported>true</cpuFeatureMaskSupported><s1AcpiManagementSupported>true</s1AcpiManagementSupported><settingScreenResolutionSupported>false</settingScreenResolutionSupported><toolsAutoUpdateSupported>false</toolsAutoUpdateSupported><vmNpivWwnSupported>true</vmNpivWwnSupported><npivWwnOnNonRdmVmSupported>true</npivWwnOnNonRdmVmSupported><vmNpivWwnDisableSupported>true</vmNpivWwnDisableSupported><vmNpivWwnUpdateSupported>true</vmNpivWwnUpdateSupported><swapPlacementSupported>true</swapPlacementSupported><toolsSyncTimeSupported>true</toolsSyncTimeSupported><virtualMmuUsageSupported>false</virtualMmuUsageSupported><diskSharesSupported>true</diskSharesSupported><bootOptionsSupported>true</bootOptionsSupported><bootRetryOptionsSupported>true</bootRetryOptionsSupported><settingVideoRamSizeSupported>true</settingVideoRamSizeSupported><settingDisplayTopologySupported>false</settingDisplayTopologySupported><recordReplaySupported>false</recordReplaySupported><changeTrackingSupported>true</changeTrackingSupported><multipleCoresPerSocketSupported>true</multipleCoresPerSocketSupported><hostBasedReplicationSupported>true</hostBasedReplicationSupported><guestAutoLockSupported>true</guestAutoLockSupported><memoryReservationLockSupported>true</memoryReservationLockSupported><featureRequirementSupported>true</featureRequirementSupported><poweredOnMonitorTypeChangeSupported>true</poweredOnMonitorTypeChangeSupported><seSparseDiskSupported>true</seSparseDiskSupported><nestedHVSupported>true</nestedHVSupported><vPMCSupported>true</vPMCSupported><secureBootSupported>false</secureBootSupported><perVmEvcSupported>false</perVmEvcSupported><virtualMmuUsageIgnored>true</virtualMmuUsageIgnored><virtualExecUsageIgnored>true</virtualExecUsageIgnored><diskOnlySnapshotOnSuspendedVMSupported>true</diskOnlySnapshotOnSuspendedVMSupported><suspendToMemorySupported>true</suspendToMemorySupported><toolsSyncTimeAllowSupported>true</toolsSyncTimeAllowSupported><sevSupported>false</sevSupported><pmemFailoverSupported>false</pmemFailoverSupported><requireSgxAttestationSupported>false</requireSgxAttestationSupported><changeModeDisksSupported>true</changeModeDisksSupported><vendorDeviceGroupSupported>false</vendorDeviceGroupSupported></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '3275'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:09 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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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=\"VirtualMachineConfigInfo\"><changeVersion>2023-12-12T10:06:30.840412Z</changeVersion><modified>1970-01-01T00:00:00Z</modified><name>vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573</name><guestFullName>Other
2.6.x Linux (64-bit)</guestFullName><version>vmx-11</version><uuid>4220824e-c2eb-ed46-47db-8e5746f5bde4</uuid><createDate>2023-12-12T10:04:43.377282Z</createDate><instanceUuid>50201f05-b37c-db69-fda5-fb077e87af04</instanceUuid><npivTemporaryDisabled>true</npivTemporaryDisabled><locationId>564d27e7-ebaa-c2df-4920-986b0d7d7aa1</locationId><template>false</template><guestId>other26xLinux64Guest</guestId><alternateGuestName></alternateGuestName><annotation>vSphere
Cluster Service VM is deployed from an OVA with a minimal installed profile
of PhotonOS. vSphere Cluster Service manages the resources, power state and
availability of these VMs. vSphere Cluster Service VMs are required for maintaining
the health and availability of vSphere Cluster Service. Any impact on the
power state or resources of these VMs might degrade the health of the vSphere
Cluster Service and cause vSphere DRS to cease operation for the cluster.\n</annotation><files><vmPathName>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573.vmx</vmPathName><snapshotDirectory>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/</snapshotDirectory><suspendDirectory>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/</suspendDirectory><logDirectory>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/</logDirectory></files><tools><toolsVersion>12389</toolsVersion><toolsInstallType>guestToolsTypeOpenVMTools</toolsInstallType><afterPowerOn>true</afterPowerOn><afterResume>true</afterResume><beforeGuestStandby>true</beforeGuestStandby><beforeGuestShutdown>true</beforeGuestShutdown><toolsUpgradePolicy>manual</toolsUpgradePolicy><syncTimeWithHostAllowed>true</syncTimeWithHostAllowed><syncTimeWithHost>false</syncTimeWithHost><lastInstallInfo><counter>0</counter></lastInstallInfo></tools><flags><enableLogging>true</enableLogging><useToe>false</useToe><runWithDebugInfo>false</runWithDebugInfo><monitorType>release</monitorType><htSharing>any</htSharing><snapshotDisabled>false</snapshotDisabled><snapshotLocked>false</snapshotLocked><diskUuidEnabled>false</diskUuidEnabled><snapshotPowerOffBehavior>powerOff</snapshotPowerOffBehavior><recordReplayEnabled>false</recordReplayEnabled><faultToleranceType>unset</faultToleranceType><cbrcCacheEnabled>false</cbrcCacheEnabled><vvtdEnabled>false</vvtdEnabled><vbsEnabled>false</vbsEnabled></flags><defaultPowerOps><powerOffType>soft</powerOffType><suspendType>hard</suspendType><resetType>soft</resetType><defaultPowerOffType>soft</defaultPowerOffType><defaultSuspendType>hard</defaultSuspendType><defaultResetType>soft</defaultResetType><standbyAction>checkpoint</standbyAction></defaultPowerOps><rebootPowerOff>false</rebootPowerOff><hardware><numCPU>1</numCPU><numCoresPerSocket>1</numCoresPerSocket><autoCoresPerSocket>false</autoCoresPerSocket><memoryMB>128</memoryMB><virtualICH7MPresent>false</virtualICH7MPresent><virtualSMCPresent>false</virtualSMCPresent><device
xsi:type=\"VirtualIDEController\"><key>200</key><deviceInfo><label>IDE 0</label><summary>IDE
0</summary></deviceInfo><busNumber>0</busNumber></device><device xsi:type=\"VirtualIDEController\"><key>201</key><deviceInfo><label>IDE
1</label><summary>IDE 1</summary></deviceInfo><busNumber>1</busNumber></device><device
xsi:type=\"VirtualPS2Controller\"><key>300</key><deviceInfo><label>PS2 controller
0</label><summary>PS2 controller 0</summary></deviceInfo><busNumber>0</busNumber><device>600</device><device>700</device></device><device
xsi:type=\"VirtualPCIController\"><key>100</key><deviceInfo><label>PCI controller
0</label><summary>PCI controller 0</summary></deviceInfo><busNumber>0</busNumber><device>500</device><device>12000</device><device>1000</device></device><device
xsi:type=\"VirtualSIOController\"><key>400</key><deviceInfo><label>SIO controller
0</label><summary>SIO controller 0</summary></deviceInfo><busNumber>0</busNumber></device><device
xsi:type=\"VirtualKeyboard\"><key>600</key><deviceInfo><label>Keyboard </label><summary>Keyboard</summary></deviceInfo><controllerKey>300</controllerKey><unitNumber>0</unitNumber></device><device
xsi:type=\"VirtualPointingDevice\"><key>700</key><deviceInfo><label>Pointing
device</label><summary>Pointing device; Device</summary></deviceInfo><backing
xsi:type=\"VirtualPointingDeviceDeviceBackingInfo\"><deviceName></deviceName><useAutoDetect>false</useAutoDetect><hostPointingDevice>autodetect</hostPointingDevice></backing><controllerKey>300</controllerKey><unitNumber>1</unitNumber></device><device
xsi:type=\"VirtualMachineVideoCard\"><key>500</key><deviceInfo><label>Video
card </label><summary>Video card</summary></deviceInfo><controllerKey>100</controllerKey><unitNumber>0</unitNumber><videoRamSizeInKB>4096</videoRamSizeInKB><numDisplays>1</numDisplays><useAutoDetect>false</useAutoDetect><enable3DSupport>false</enable3DSupport><use3dRenderer>automatic</use3dRenderer><graphicsMemorySizeInKB>262144</graphicsMemorySizeInKB></device><device
xsi:type=\"VirtualMachineVMCIDevice\"><key>12000</key><deviceInfo><label>VMCI
device</label><summary>Device on the virtual machine PCI bus that provides
support for the virtual machine communication interface</summary></deviceInfo><controllerKey>100</controllerKey><unitNumber>17</unitNumber><id>1190510052</id><allowUnrestrictedCommunication>false</allowUnrestrictedCommunication><filterEnable>true</filterEnable></device><device
xsi:type=\"ParaVirtualSCSIController\"><key>1000</key><deviceInfo><label>SCSI
controller 0</label><summary>VMware paravirtual SCSI</summary></deviceInfo><slotInfo
xsi:type=\"VirtualDevicePciBusSlotInfo\"><pciSlotNumber>160</pciSlotNumber></slotInfo><controllerKey>100</controllerKey><unitNumber>3</unitNumber><busNumber>0</busNumber><device>2000</device><hotAddRemove>true</hotAddRemove><sharedBus>noSharing</sharedBus><scsiCtlrUnitNumber>7</scsiCtlrUnitNumber></device><device
xsi:type=\"VirtualDisk\"><key>2000</key><deviceInfo><label>Hard disk 1</label><summary>2,097,152
KB</summary></deviceInfo><backing xsi:type=\"VirtualDiskFlatVer2BackingInfo\"><fileName>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573.vmdk</fileName><datastore
type=\"Datastore\">datastore-17</datastore><backingObjectId>40307865-8a72-9a84-5fdc-0625178fc4c6</backingObjectId><diskMode>persistent</diskMode><split>false</split><writeThrough>false</writeThrough><thinProvisioned>true</thinProvisioned><eagerlyScrub>false</eagerlyScrub><uuid>6000C290-a113-6543-7d13-7363c08fe61d</uuid><contentId>c06de7a3e1c356f51a5cf8ae7992a9d0</contentId><digestEnabled>false</digestEnabled><sharing>sharingNone</sharing></backing><controllerKey>1000</controllerKey><unitNumber>0</unitNumber><capacityInKB>2097152</capacityInKB><capacityInBytes>2147483648</capacityInBytes><shares><shares>1000</shares><level>normal</level></shares><storageIOAllocation><limit>-1</limit><shares><shares>1000</shares><level>normal</level></shares><reservation>0</reservation></storageIOAllocation><diskObjectId>1-2000</diskObjectId><vDiskVersion>4</vDiskVersion><nativeUnmanagedLinkedClone>false</nativeUnmanagedLinkedClone><guestReadOnly>false</guestReadOnly></device><motherboardLayout>i440bxHostBridge</motherboardLayout><simultaneousThreads>1</simultaneousThreads></hardware><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>normal</level></shares></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1280</shares><level>normal</level></shares></memoryAllocation><latencySensitivity><level>normal</level></latencySensitivity><memoryHotAddEnabled>false</memoryHotAddEnabled><cpuHotAddEnabled>false</cpuHotAddEnabled><cpuHotRemoveEnabled>false</cpuHotRemoveEnabled><hotPlugMemoryLimit>128</hotPlugMemoryLimit><hotPlugMemoryIncrementSize>0</hotPlugMemoryIncrementSize><extraConfig><key>nvram</key><value
xsi:type=\"xsd:string\">vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573.nvram</value></extraConfig><extraConfig><key>svga.present</key><value
xsi:type=\"xsd:string\">TRUE</value></extraConfig><extraConfig><key>pciBridge0.present</key><value
xsi:type=\"xsd:string\">TRUE</value></extraConfig><extraConfig><key>pciBridge4.present</key><value
xsi:type=\"xsd:string\">TRUE</value></extraConfig><extraConfig><key>pciBridge4.virtualDev</key><value
xsi:type=\"xsd:string\">pcieRootPort</value></extraConfig><extraConfig><key>pciBridge4.functions</key><value
xsi:type=\"xsd:string\">8</value></extraConfig><extraConfig><key>pciBridge5.present</key><value
xsi:type=\"xsd:string\">TRUE</value></extraConfig><extraConfig><key>pciBridge5.virtualDev</key><value
xsi:type=\"xsd:string\">pcieRootPort</value></extraConfig><extraConfig><key>pciBridge5.functions</key><value
xsi:type=\"xsd:string\">8</value></extraConfig><extraConfig><key>pciBridge6.present</key><value
xsi:type=\"xsd:string\">TRUE</value></extraConfig><extraConfig><key>pciBridge6.virtualDev</key><value
xsi:type=\"xsd:string\">pcieRootPort</value></extraConfig><extraConfig><key>pciBridge6.functions</key><value
xsi:type=\"xsd:string\">8</value></extraConfig><extraConfig><key>pciBridge7.present</key><value
xsi:type=\"xsd:string\">TRUE</value></extraConfig><extraConfig><key>pciBridge7.virtualDev</key><value
xsi:type=\"xsd:string\">pcieRootPort</value></extraConfig><extraConfig><key>pciBridge7.functions</key><value
xsi:type=\"xsd:string\">8</value></extraConfig><extraConfig><key>hpet0.present</key><value
xsi:type=\"xsd:string\">TRUE</value></extraConfig><extraConfig><key>HDCS.agent</key><value
xsi:type=\"xsd:string\">true</value></extraConfig><extraConfig><key>mks.enable3d</key><value
xsi:type=\"xsd:string\">FALSE</value></extraConfig><extraConfig><key>RemoteDisplay.maxConnections</key><value
xsi:type=\"xsd:string\">40</value></extraConfig><extraConfig><key>log.keepOld</key><value
xsi:type=\"xsd:string\">10</value></extraConfig><extraConfig><key>log.rotateSize</key><value
xsi:type=\"xsd:string\">2048000</value></extraConfig><extraConfig><key>tools.guest.desktop.autolock</key><value
xsi:type=\"xsd:string\">TRUE</value></extraConfig><extraConfig><key>isolation.device.edit.disable</key><value
xsi:type=\"xsd:string\">true</value></extraConfig><extraConfig><key>eam.agent.agencyMoId</key><value
xsi:type=\"xsd:string\">9bb44719-c80b-42ad-870f-08cd18d09af8</value></extraConfig><extraConfig><key>eam.agent.agentMoId</key><value
xsi:type=\"xsd:string\">9830d796-45b0-4c3c-9f2b-60b527ce53a8</value></extraConfig><extraConfig><key>eam.agent.ovfPackageUrl</key><value
xsi:type=\"xsd:string\">file:///storage/lifecycle/vmware-hdcs/photon-ova-5.0-22824611.ovf</value></extraConfig><extraConfig><key>viv.moid</key><value
xsi:type=\"xsd:string\">61f12cb6-9de0-40cb-9c47-61d494229f4f:vm-19:JvpL9Z4AHmqK4OJrSrQwwMgpwydPYxodbzTSRU03HIk=</value></extraConfig><extraConfig><key>vmware.tools.internalversion</key><value
xsi:type=\"xsd:string\">12389</value></extraConfig><extraConfig><key>vmware.tools.requiredversion</key><value
xsi:type=\"xsd:string\">12416</value></extraConfig><extraConfig><key>migrate.hostLogState</key><value
xsi:type=\"xsd:string\">none</value></extraConfig><extraConfig><key>migrate.migrationId</key><value
xsi:type=\"xsd:string\">0</value></extraConfig><extraConfig><key>migrate.hostLog</key><value
xsi:type=\"xsd:string\">vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573-6425c1cd.hlog</value></extraConfig><extraConfig><key>featMask.vm.cpuid.CMPXCHG16B</key><value
xsi:type=\"xsd:string\">Val:1</value></extraConfig><extraConfig><key>featMask.vm.cpuid.DS</key><value
xsi:type=\"xsd:string\">Val:1</value></extraConfig><extraConfig><key>featMask.vm.cpuid.FAMILY</key><value
xsi:type=\"xsd:string\">Val:6</value></extraConfig><extraConfig><key>featMask.vm.cpuid.Intel</key><value
xsi:type=\"xsd:string\">Val:1</value></extraConfig><extraConfig><key>featMask.vm.cpuid.LAHF64</key><value
xsi:type=\"xsd:string\">Val:1</value></extraConfig><extraConfig><key>featMask.vm.cpuid.LM</key><value
xsi:type=\"xsd:string\">Val:1</value></extraConfig><extraConfig><key>featMask.vm.cpuid.MODEL</key><value
xsi:type=\"xsd:string\">Val:0xf</value></extraConfig><extraConfig><key>featMask.vm.cpuid.MWAIT</key><value
xsi:type=\"xsd:string\">Val:1</value></extraConfig><extraConfig><key>featMask.vm.cpuid.NUMLEVELS</key><value
xsi:type=\"xsd:string\">Val:0xa</value></extraConfig><extraConfig><key>featMask.vm.cpuid.NUM_EXT_LEVELS</key><value
xsi:type=\"xsd:string\">Val:0x80000008</value></extraConfig><extraConfig><key>featMask.vm.cpuid.NX</key><value
xsi:type=\"xsd:string\">Val:1</value></extraConfig><extraConfig><key>featMask.vm.cpuid.SS</key><value
xsi:type=\"xsd:string\">Val:1</value></extraConfig><extraConfig><key>featMask.vm.cpuid.SSE3</key><value
xsi:type=\"xsd:string\">Val:1</value></extraConfig><extraConfig><key>featMask.vm.cpuid.SSSE3</key><value
xsi:type=\"xsd:string\">Val:1</value></extraConfig><extraConfig><key>featMask.vm.cpuid.STEPPING</key><value
xsi:type=\"xsd:string\">Val:1</value></extraConfig><extraConfig><key>featureCompat.vm.completeMasks</key><value
xsi:type=\"xsd:string\">TRUE</value></extraConfig><extraConfig><key>monitor.phys_bits_used</key><value
xsi:type=\"xsd:string\">42</value></extraConfig><extraConfig><key>numa.autosize.cookie</key><value
xsi:type=\"xsd:string\">10001</value></extraConfig><extraConfig><key>numa.autosize.vcpu.maxPerVirtualNode</key><value
xsi:type=\"xsd:string\">1</value></extraConfig><extraConfig><key>pciBridge0.pciSlotNumber</key><value
xsi:type=\"xsd:string\">17</value></extraConfig><extraConfig><key>pciBridge4.pciSlotNumber</key><value
xsi:type=\"xsd:string\">21</value></extraConfig><extraConfig><key>pciBridge5.pciSlotNumber</key><value
xsi:type=\"xsd:string\">22</value></extraConfig><extraConfig><key>pciBridge6.pciSlotNumber</key><value
xsi:type=\"xsd:string\">23</value></extraConfig><extraConfig><key>pciBridge7.pciSlotNumber</key><value
xsi:type=\"xsd:string\">24</value></extraConfig><extraConfig><key>sched.swap.derivedName</key><value
xsi:type=\"xsd:string\">/vmfs/volumes/vsan:5281f817da2563b1-f53a57a4a4c49434/3b307865-804d-7d05-3a9d-0625178fc4c6/vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573-ed4cc4ef.vswp</value></extraConfig><extraConfig><key>scsi0.pciSlotNumber</key><value
xsi:type=\"xsd:string\">160</value></extraConfig><extraConfig><key>scsi0.sasWWID</key><value
xsi:type=\"xsd:string\">50 05 05 6e c2 eb ed 40</value></extraConfig><extraConfig><key>scsi0:0.redo</key><value
xsi:type=\"xsd:string\"></value></extraConfig><extraConfig><key>softPowerOff</key><value
xsi:type=\"xsd:string\">FALSE</value></extraConfig><extraConfig><key>vmotion.checkpointFBSize</key><value
xsi:type=\"xsd:string\">4194304</value></extraConfig><extraConfig><key>vmotion.checkpointSVGAPrimarySize</key><value
xsi:type=\"xsd:string\">4194304</value></extraConfig><extraConfig><key>vmxstats.filename</key><value
xsi:type=\"xsd:string\">vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573.scoreboard</value></extraConfig><extraConfig><key>guestinfo.vmtools.buildNumber</key><value
xsi:type=\"xsd:string\">22544099</value></extraConfig><extraConfig><key>guestinfo.vmtools.description</key><value
xsi:type=\"xsd:string\">open-vm-tools 12.3.5 build 22544099</value></extraConfig><extraConfig><key>guestinfo.vmtools.versionNumber</key><value
xsi:type=\"xsd:string\">12389</value></extraConfig><extraConfig><key>guestinfo.vmtools.versionString</key><value
xsi:type=\"xsd:string\">12.3.5</value></extraConfig><extraConfig><key>svga.guestBackedPrimaryAware</key><value
xsi:type=\"xsd:string\">TRUE</value></extraConfig><extraConfig><key>tools.capability.verifiedSamlToken</key><value
xsi:type=\"xsd:string\">TRUE</value></extraConfig><extraConfig><key>guestinfo.gc.status</key><value
xsi:type=\"xsd:string\">Successful</value></extraConfig><extraConfig><key>guestInfo.detailed.data</key><value
xsi:type=\"xsd:string\">architecture='X86' bitness='64'
distroAddlVersion='5.0' distroName='VMware Photon OS'
distroVersion='5.0' familyName='Linux' kernelVersion='6.1.60-5.ph5-esx'
prettyName='VMware Photon OS/Linux'</value></extraConfig><extraConfig><key>guestinfo.vmware.components.available</key><value
xsi:type=\"xsd:string\">none</value></extraConfig><extraConfig><key>guestinfo.appInfo</key><value
xsi:type=\"xsd:string\">{\n"version":"1", \n"updateCounter":"8",
\n"publishTime":"2023-12-14T09:42:50.121Z", \n"applications":[\n{"a":"kworker/u2:2-events_unbound","v":""},\n{"a":"kworker/0:2-events_power_efficient","v":""},\n{"a":"kworker/u2:1-events_unbound","v":""},\n{"a":"kworker/0:0-rcu_gp","v":""},\n{"a":"kworker/0:1-rcu_gp","v":""},\n{"a":"kworker/u2:0-events_unbound","v":""},\n{"a":"agetty","v":""},\n{"a":"systemd-networkd","v":""},\n{"a":"vmtoolsd","v":""},\n{"a":"VGAuthService","v":""},\n{"a":"systemd-logind","v":""},\n{"a":"dbus-daemon","v":""},\n{"a":"irq/16-vmwgfx","v":""},\n{"a":"systemd-timesyncd","v":""},\n{"a":"systemd-resolved","v":""},\n{"a":"systemd-udevd","v":""},\n{"a":"systemd-journald","v":""},\n{"a":"ipv6_addrconf","v":""},\n{"a":"mld","v":""},\n{"a":"ext4-rsv-conver","v":""},\n{"a":"jbd2/sda3-8","v":""},\n{"a":"kstrp","v":""},\n{"a":"nvme-delete-wq","v":""},\n{"a":"nvme-reset-wq","v":""},\n{"a":"nvme-wq","v":""},\n{"a":"vmw_pvscsi_wq_0","v":""},\n{"a":"scsi_tmf_0","v":""},\n{"a":"scsi_eh_0","v":""},\n{"a":"irq/57-vmw_vmci","v":""},\n{"a":"irq/56-vmw_vmci","v":""},\n{"a":"irq/55-pciehp","v":""},\n{"a":"irq/54-pciehp","v":""},\n{"a":"irq/53-pciehp","v":""},\n{"a":"irq/52-pciehp","v":""},\n{"a":"irq/51-pciehp","v":""},\n{"a":"irq/50-pciehp","v":""},\n{"a":"irq/49-pciehp","v":""},\n{"a":"irq/48-pciehp","v":""},\n{"a":"irq/47-pciehp","v":""},\n{"a":"irq/46-pciehp","v":""},\n{"a":"irq/45-pciehp","v":""},\n{"a":"irq/44-pciehp","v":""},\n{"a":"irq/43-pciehp","v":""},\n{"a":"irq/42-pciehp","v":""},\n{"a":"irq/41-pciehp","v":""},\n{"a":"irq/40-pciehp","v":""},\n{"a":"irq/39-pciehp","v":""},\n{"a":"irq/38-pciehp","v":""},\n{"a":"irq/37-pciehp","v":""},\n{"a":"irq/36-pciehp","v":""},\n{"a":"irq/35-pciehp","v":""},\n{"a":"irq/34-pciehp","v":""},\n{"a":"irq/33-pciehp","v":""},\n{"a":"irq/32-pciehp","v":""},\n{"a":"irq/31-pciehp","v":""},\n{"a":"irq/30-pciehp","v":""},\n{"a":"irq/29-pciehp","v":""},\n{"a":"irq/28-pciehp","v":""},\n{"a":"irq/27-pciehp","v":""},\n{"a":"irq/26-pciehp","v":""},\n{"a":"irq/25-pciehp","v":""},\n{"a":"irq/24-pciehp","v":""},\n{"a":"kthrotld","v":""},\n{"a":"kswapd0","v":""},\n{"a":"kworker/0:1H-kblockd","v":""},\n{"a":"tpm_dev_wq","v":""},\n{"a":"blkcg_punt_bio","v":""},\n{"a":"kblockd","v":""},\n{"a":"cryptd","v":""},\n{"a":"ksmd","v":""},\n{"a":"kcompactd0","v":""},\n{"a":"writeback","v":""},\n{"a":"oom_reaper","v":""},\n{"a":"kauditd","v":""},\n{"a":"inet_frag_wq","v":""},\n{"a":"kdevtmpfs","v":""},\n{"a":"cpuhp/0","v":""},\n{"a":"migration/0","v":""},\n{"a":"rcu_sched","v":""},\n{"a":"ksoftirqd/0","v":""},\n{"a":"rcu_tasks_trace_kthread","v":""},\n{"a":"mm_percpu_wq","v":""},\n{"a":"kworker/0:0H-events_highpri","v":""},\n{"a":"netns","v":""},\n{"a":"slub_flushwq","v":""},\n{"a":"rcu_par_gp","v":""},\n{"a":"rcu_gp","v":""},\n{"a":"kthreadd","v":""},\n{"a":"systemd","v":""}]}</value></extraConfig><datastoreUrl><name>vsanDatastore</name><url>/vmfs/volumes/vsan:5281f817da2563b1-f53a57a4a4c49434</url></datastoreUrl><swapPlacement>inherit</swapPlacement><bootOptions><bootDelay>0</bootDelay><enterBIOSSetup>false</enterBIOSSetup><efiSecureBootEnabled>false</efiSecureBootEnabled><bootRetryEnabled>false</bootRetryEnabled><bootRetryDelay>10000</bootRetryDelay><networkBootProtocol>ipv4</networkBootProtocol></bootOptions><vAppConfig><product><key>0</key><classId></classId><instanceId></instanceId><name>Photon
OS</name><vendor>VMware Inc.</vendor><version></version><fullVersion></fullVersion><vendorUrl></vendorUrl><productUrl></productUrl><appUrl></appUrl></product><ipAssignment><ipAllocationPolicy>fixedPolicy</ipAllocationPolicy><supportedIpProtocol>IPv4</supportedIpProtocol><ipProtocol>IPv4</ipProtocol></ipAssignment><eula>VMWARE
GENERAL TERMS\nLast updated:16 June 2022\nBy downloading or using an Offering,
Customer agrees to be bound by the terms of the Agreement. \n1. OFFERINGS.\n1.1.
Applicable Terms. The terms of the Order and these General Terms, including
applicable Exhibits and Offering-specific Notes (collectively, the "Agreement")
govern Customer's use of the Offerings. The following descending order
of precedence applies: (a) the Order; (b) the General Terms; (c) the Exhibits;
and (d) the Offering-specific Notes. \n1.2. Users. Customer is responsible
for its Users' compliance with the Agreement. \n1.3. Restrictions. Customer
may use the Offerings only for its internal use and for the benefit of its
Affiliates. Affiliates may not use the Offerings. Customer may not resell
or sublicense its rights to the Offerings. Customer may not use the Offerings
in an application service provider, service bureau, hosted IT service, or
similar capacity for third parties.\n1.4. Benchmarking. Customer may use the
Offerings to conduct internal performance testing and benchmarking studies.
Customer may only publish or distribute study results with VMware's approval.
Customer may submit requests to VMware by emailing benchmark@vmware.com.\n1.5.
Evaluations. Evaluations are for 30 days (unless VMware specifies otherwise
in writing). Customer may not have access to data in the Evaluation after
it ends. Evaluations are provided "AS IS" without indemnification,
support, service level commitment, or warranty of any kind, express or implied.
\n2. ORDERS AND PAYMENTS. \n2.1. Orders. Orders are binding when VMware accepts
them, which is deemed to occur on Delivery. \n2.2. Purchase Orders. Purchase
orders do not have to be signed to be valid. Terms contained in any purchase
order or other business form do not apply. \n2.3. No Refunds. All Orders are
non-refundable and non-cancellable except as expressly provided in the Agreement.\n2.4.
Overages. Customer must pay all fees for use of the Offerings, including amounts
for add-on features and fees incurred based on usage. VMware may bill Customer
directly for metered or overage fees, even if Customer originally purchased
the Offerings through a VMware authorized reseller.\n2.5. Direct Orders. This
section 2.5 (Direct Orders) applies only to Orders placed directly with VMware.
If Customer purchases entitlements to the Offerings through a VMware authorized
reseller, different terms regarding invoicing, payment, and taxes may apply.\n2.5.1.
Payments. Except as listed in an Order, fees for the Offerings will be governed
by the applicable price list at the time of invoicing. Customer must pay all
undisputed fees and approved expenses within 30 days from the date of invoice.
After 30 days, interest will accrue at the lesser of 1.5% per month or the
highest lawful rate. \n2.5.2. Disputes. To dispute any fees in good faith,
Customer must notify VMware in writing of the reasons for the dispute before
the payment due date. The parties must negotiate in good faith to resolve
the dispute as soon as reasonably practicable. VMware will not suspend or
terminate Customer's access to any Offering because of any unpaid, disputed
fees while Customer and VMware are negotiating to resolve the dispute.\n2.5.3.
Taxes. Fees are exclusive of Taxes. Customer must pay or reimburse VMware
for all Taxes. If Customer is required to withhold any Tax, Customer must
gross up its payments so that VMware receives all sums due in full. If Customer's
address is outside of the United States, VMware will treat the Customer's
"bill to" address as the place of supply for VAT purposes.\n3. TERM.\n3.1.
Term. The Agreement applies to the Offerings from the effective date of the
Order until the expiration or termination of Customer's entitlement to
the Offerings as set forth in this Agreement.\n3.2. Temporary Suspension.
In the event of a security risk to a Service or its users, VMware may suspend
Customer's use of that Service.\n3.3. Termination for Cause. Either party
may terminate the Agreement (in whole or in part) or Customer's entitlement
to an Offering under the Agreement effective immediately upon written notice
if the other party: (a) materially breaches any provision of the Agreement
and fails to cure within 30 days after receiving written notice; or (b) becomes
insolvent or subject to any form of bankruptcy proceeding. \n3.4. Effect of
Termination. Upon termination of the Agreement or part of it: (a) all entitlements
to the applicable Offerings immediately end; (b) Customer must stop using,
and destroy any copies of, those Offerings; and (c) each party must return
or destroy any Confidential Information of the other party in its control
(other than information that must be retained by law). Any provision that
is intended by the parties to survive termination of the Agreement will survive.\n4.
CONFIDENTIAL INFORMATION.\n4.1. Protection. Recipient must protect Discloser's
Confidential Information with at least the same care as it protects its own
Confidential Information but not less than reasonable care. Recipient may
not use Discloser's Confidential Information except to exercise its rights
and perform its obligations under the Agreement. Recipient may disclose Confidential
Information only to Recipient's Affiliates, employees and contractors
who need to know the Confidential Information for purposes of the Agreement
and who have a duty of confidentiality no less restrictive than this section
4 (Confidential Information).\n4.2. Exceptions. Recipient's obligations
under section 4.1 (Protection) do not apply if the information: (a) is rightfully
known by Recipient at the time of disclosure without any obligation of confidentiality;
(b) is lawfully disclosed to Recipient by a third party without confidentiality
restrictions; (c) becomes publicly available through no fault of Recipient;
or (d) is independently developed by Recipient without access to or use of
Discloser's Confidential Information.\n4.3. Injunctive Relief. Nothing
in the Agreement limits a party's right to seek equitable relief for
breach of this section 4 (Confidential Information).\n5. OWNERSHIP.\n5.1.
Customer Content. Customer retains all Intellectual Property Rights in and
to Customer Content.\n5.2. VMware IP. VMware retains all Intellectual Property
Rights in and to the Offerings, including any improvements, enhancements,
modifications, and derivative works. If Customer provides any feedback about
the Offerings, VMware may use that feedback without restriction.\n5.3. Reservation
of Rights. Except as expressly stated in the Agreement, the Agreement does
not grant either party any rights, implied or otherwise, to the other party's
content or intellectual property. \n6. LIMITED WARRANTIES. \n6.1. Software
and Cloud Services. VMware warrants that Software and Cloud Services will
substantially conform with the Documentation: (a) for Software, for 90 days
following Delivery; or (b) for Cloud Services, for the Subscription Term.
Customer must properly install and use the Offerings without modification
and in accordance with the Documentation. Customer must notify VMware of an
alleged breach of this warranty within the applicable warranty period. As
Customer's sole remedy for a breach of this warranty, VMware must either:
(1) correct any reproducible error in the Software or Cloud Service; or (2)
terminate the Software or Cloud Service and refund applicable license fees
(for Software) or unused, prepaid fees (for Cloud Services).\n6.2. Professional
Services and Support Services. VMware warrants that Professional Services
and Support Services will be performed in a professional manner following
industry standards. Customer must notify VMware within 30 days of an alleged
breach of this warranty. As Customer's sole remedy for a breach of this
warranty, VMware must either: (a) rectify the breach; or (b) terminate the
applicable Service and refund any unused, prepaid fees for that Service.\n6.3.
Disclaimer of Warranties. Except for the limited warranties in this section
6 (Limited Warranties), to the maximum extent permitted by law, VMware, for
itself and on behalf of its suppliers, disclaims all warranties and conditions
whether express, implied, or statutory, including any warranties of merchantability,
satisfactory quality, fitness for a particular purpose, title, non-infringement,
and any warranty arising from course of dealing or course of performance,
relating to the Offerings. Neither VMware nor its suppliers warrant that the
Offerings will operate uninterrupted, that Offerings will be free from defects
or errors, or that the Offerings will meet (or are designed to meet) Customer's
requirements. \n7. INDEMNIFICATION. \n7.1. Defense and Indemnification. Subject
to the remainder of this section 7 (Indemnification), VMware will: (a) defend
Customer against any Infringement Claim; and (b) indemnify Customer from amounts
finally awarded against Customer by a court of competent jurisdiction or a
government agency, or agreed to in a settlement, for the Infringement Claim.
\n7.2. Requirements. Customer must provide VMware with prompt notice of any
Infringement Claim and reasonably cooperate with VMware's requests for
assistance. VMware will have sole control of the defense and settlement of
the Infringement Claim.\n7.3. Exclusions. VMware has no obligation under this
section 7 (Indemnification) with respect to an Infringement Claim based on:
(a) combination of Indemnified Materials with non-VMware materials; (b) use
of an older version of Indemnified Materials when use of a newer version would
have avoided the infringement; (c) any modification to Indemnified Materials
other than those made by VMware; (d) any Deliverable provided by VMware in
accordance with Customer's specifications; (e) any claim relating to
open source software or freeware technology that is not embedded by VMware
into the Offerings; or (f) any Indemnified Material provided on a no-charge,
beta, or evaluation basis.\n7.4. Remedies. If Indemnified Materials become,
or in VMware's reasonable opinion are likely to become, the subject of
an Infringement Claim, VMware must, at its option and expense, either: (a)
procure the necessary rights for Customer to keep using the Indemnified Materials;
or (b) modify or replace the Indemnified Materials to make them non-infringing.
If those remedies are not commercially feasible, VMware may terminate Customer's
entitlement to the Indemnified Materials and refund any applicable: \n(1)
prepaid fees for Cloud Services or Subscription Software, prorated for the
remaining portion of the then-current Subscription Term;\n(2) fees paid for
Perpetual Licenses or Deliverables, less straight-line depreciation over a
three-year useful life; and \n(3) unused, prepaid fees for discontinued Support
Services. \n7.5. Sole Remedy. This section 7 (Indemnification) states Customer's
sole remedy and VMware's entire liability for Infringement Claims. \n8.
LIMITATION OF LIABILITY. \n8.1. Disclaimer. To the maximum extent permitted
by law, neither party will be liable for lost profits or business opportunities,
loss of use, loss of data, loss of goodwill, business interruption, or any
indirect, special, incidental, or consequential damages under any theory of
liability. This limitation will apply regardless of whether a party has been
advised of the possibility of those damages and regardless of whether any
remedy fails of its essential purpose. \n8.2. Cap on Monetary Liability. Each
party's aggregate liability under this Agreement will not exceed amounts
paid or payable by Customer for the Offering giving rise to the claim in the
12 months prior to the event giving rise to the claim, except for Perpetual
Licenses, where each party's aggregate liability will not exceed the
license fees paid for the Software giving rise to the claim. VMware's
aggregate liability for an Evaluation will not exceed $5,000 USD.\n8.3. Exclusions.
The limitations of liability in sections 8.1 (Disclaimer) and 8.2 (Cap on
Monetary Liability) will not apply to: (a) VMware's indemnification obligations
under section 7 (Indemnification); (b) either party's infringement of
the other party's Intellectual Property Rights; (c) Customer's violation
of section 2 of the Cloud Services Exhibit (Acceptable Use); or (d) any liability
that may not be limited by law.\n8.4. Further Limitations.VMware's liability
for any third-party software embedded into the Software or Cloud Services
is subject to this section 8 (Limitation of Liability). VMware's suppliers
have no liability under the Agreement, and Customer may not bring claims directly
against them. VMware has no liability with respect to any Third-Party Content.\n9.
DATA USE AND PRIVACY.\n9.1. Personal Data. If VMware acts as a processor of
Personal Data, VMware will process Personal Data in accordance with the Data
Processing Addendum.\n9.2. Account, Operations, and Usage Data. VMware collects
Customer contact and purchase information to manage Customer's account
and to fulfill Orders. VMware also processes: (a) information necessary to
facilitate delivery and operation of the Offerings, verify compliance with
the terms of the Agreement, invoice, and provide Support Services; and (b)
configuration, performance, and usage data to improve VMware products and
services, and other analytics purposes as detailed in the Offering-specific
Notes. To the extent any of that data includes information that identifies
an individual, VMware will process that information in accordance with VMware's
Products & Services Privacy Notice available at www.vmware.com/help/privacy.html.\n9.3.
Support Requests and Professional Services. Customer is responsible for taking
steps necessary to protect any sensitive information or Personal Data that
it provides to VMware while receiving Support Services or Professional Services.
Those steps may include obfuscating or removing such information or working
with VMware at the time of submission to limit disclosure.\n9.4. Required
Disclosures. VMware may disclose Customer Content or Confidential Information
if VMware is required by law or by order of a judicial or administrative body
of competent jurisdiction (a "Demand"). Unless legally prohibited
from doing so, VMware must provide Customer with notice and a copy of the
Demand. If the Demand relates to Cloud Services, VMware must (i) inform the
relevant authority that VMware is a service provider acting on Customer's
behalf and all requests for access to Customer Content should be directed
in writing to the contact Customer identifies (or if no contact is timely
provided, to Customer's legal department) and (ii) only provide access
to Customer Content with Customer's authorization. If Customer requests
and at Customer's expense, VMware must take reasonable steps to contest
the Demand. If VMware is legally prohibited from notifying Customer of the
Demand, VMware must evaluate the validity of the Demand, and, if VMware does
not believe the Demand is legal, VMware must challenge the Demand. VMware
must limit the scope of any disclosure to the minimum information required
to comply with the Demand. \n10. OPEN SOURCE SOFTWARE. Open source software
is licensed to Customer under the open source software's own applicable
license terms, which can be found in either the open source_licenses.txt file
accompanying the Offerings, the Documentation, or at www.vmware.com/download/open_source.html.
These license terms are consistent with the license granted in the Agreement
and may contain additional rights benefiting Customer. The open source license
terms take precedence over the Agreement to the extent that the Agreement
imposes greater restrictions on Customer than the applicable open source license
terms. To the extent the license for any open source software requires VMware
to make the corresponding source code and/or modifications (the "Source
Files") available to Customer, Customer may obtain a copy of the applicable
Source Files at www.vmware.com/download/open_source.html or by sending a written
request, with name and address, to: VMware, Inc., 3401 Hillview Avenue, Palo
Alto, CA 94304, United States of America. All requests should clearly specify:
Open Source Files Request, Attention: General Counsel. This offer to obtain
a copy of the Source Files is valid for three years from the date Customer
acquires its entitlement to the Offering.\n11. MISCELLANEOUS.\n11.1. Transfer
and Assignment. Customer may not assign the Agreement or any Order without
VMware's consent. Once validly assigned, the Agreement will bind and
inure to the benefit of the parties and their respective successors and assigns.
\n11.2. Notice. All notices must be in writing. Notices to Customer will
be given: (a) by email to the email address associated with Customer's
account, if Customer has subscribed to email notices; or (b) by posting in
the VMware customer portal. Legal notices to VMware will be given to VMware,
Inc., 3401 Hillview Avenue, Palo Alto, California 94304, United States of
America, Attention: Legal Department.\n11.3. Waiver. Waiver of a breach of
the Agreement will not constitute a waiver of any later breach.\n11.4. Severability.
If any part of the Agreement is held to be invalid or unenforceable, all remaining
provisions will remain in force to the extent feasible to effectuate the intent
of the parties.\n11.5. Insurance. VMware will carry insurance for the term
of the Agreement. VMware's Memorandum of Insurance may be viewed at www.vmware.com/agreements.\n11.6.
Compliance with Laws. Each party must comply with all applicable laws.\n11.7.
Export Control. The Offerings are subject to the U.S. Export Administration
Regulations (including "deemed export" and "deemed re-export"
regulations), and may be subject to the export control laws of other countries.
Customer represents and warrants that: (a) Customer and any User, are not,
and are not acting on behalf of: (1) any person who is a citizen, national,
or resident of, or who is controlled by, the government of any country to
which the United States has prohibited export transactions; or (2) any person
or entity listed on the U.S. Treasury Department list of Specially Designated
Nationals and Blocked Persons, or the U.S. Commerce Department Denied Persons
List or Entity List, or any similar applicable designated persons list; (b)
Customer, and any User, will not permit the Offerings to be used for any purposes
prohibited by law, including any prohibited development, design, manufacture,
or production of missiles or nuclear, chemical, or biological weapons; and
(c) Customer, and any User, are not subject, either directly or indirectly,
to any order issued by any agency of the United States government revoking
or denying, in whole or in part, Customer's United States export privileges.
Customer must notify VMware promptly if Customer or any User becomes subject
to any order of that type. \n11.8. Governing Law. The Agreement is governed
by the laws of the State of California and U.S. federal laws, if the billing
address for Customer's Order is in the United States, and by the laws
of Ireland if the billing address for Customer's Order is outside the
United States. Conflict of law rules are expressly disclaimed. The United
Nations Convention on Contracts for the International Sale of Goods does not
apply.\n11.9. U.S. Public Sector End User. If Customer is a U.S. Public Sector
End User, the U.S. Public Sector Exhibit available at www.vmware.com/agreements
supersedes or modifies the referenced provisions of the Agreement.\n11.10.
Third Party Rights. Other than as expressly stated, the Agreement does not
create any rights for any person who is not a party to it. Only persons who
are parties to the Agreement may enforce or rely on any of its terms.\n11.11.
Force Majeure. Except for Customer's payment obligations, neither party
will be liable for any delay or failure to perform due to any cause beyond
the party's reasonable control, including labor disputes, industrial
disturbances, systemic utility failures, acts of nature, pandemics, embargoes,
riots, government orders, acts of terrorism, or war.\n11.12. No Agency. Nothing
in the Agreement is intended to constitute a fiduciary relationship, agency,
joint venture, partnership, or trust between the parties. No party has authority
to bind the other party. \n11.13. Translation. This non-English version of
these General Terms is provided only as a courtesy, and Customer's use
of the Offerings is governed by the English version of these General Terms,
published at www.vmware.com/agreements.\n11.14. Counterparts. The Agreement
may be signed electronically or in counterparts, in which case each signed
copy will be deemed an original as though both signatures appeared on the
same document.\n11.15. Entire Agreement. The Agreement contains the entire
agreement of the parties and supersedes all previous or contemporaneous communications,
representations, proposals, commitments, understandings, and agreements, whether
written or oral, between the parties regarding its subject matter. The Agreement
may be amended only in writing and signed by both parties.\n12. DEFINITIONS.\nAffiliate
means an entity that is directly or indirectly controlled by, is under common
control with, or controls that party, where "control" means an ownership,
voting, or similar interest representing more than 50% of the total interests
outstanding of that entity at that time.\nCloud Service means the VMware cloud
service specified in Customer's Order.\nCloud Services Guide means the
then-current VMware Cloud Services Guide, available at www.vmware.com/agreements.\nConfidential
Information means information or materials provided by a party ("Discloser")
to the other party ("Recipient") that: (a) is in tangible form and
labelled "confidential" or similar; or (b) information which a reasonable
person knew or should have known to be confidential. Confidential Information
includes: (1) license keys; (2) VMware pricing, product roadmaps or strategic
marketing plans; (3) non-public materials relating to the Offerings; and (4)
Customer Login Credentials.\nCustomer means the entity identified in the Order
as "Customer".\nCustomer Content means content uploaded by Customer
or any User into the Cloud Service or provided to VMware as a part of Support
Services, but does not include Third-Party Content or account information.
For purposes of this definition, "content" means any data, including
all text, sound, video, or image files, and software (including machine images).\nData
Processing Addendum means the then-current VMware Data Processing Addendum,
available at www.vmware.com/agreements.\nDeliverables means any reports, analyses,
scripts, templates, code, or other work results delivered by VMware as specified
in the applicable SOW for Professional Services.\nDelivery means: (a) for
Cloud Services, when VMware emails the Login Credentials to the email address
associated with Customer's account; (b) for Software, when VMware notifies
Customer of availability of Software for download; (c) for Support Services,
upon VMware's issuance of an invoice for those Support Services; (d)
for Professional Services, as specified in the applicable SOW; (e) for purchasing
program credits, when VMware makes the fund balance available in the applicable
portal; and (f) for shipping and delivery of physical objects, Ex Works VMware's
regional fulfillment facility (INCOTERMS 2020(TM)).\nDocumentation means the
product documentation describing the features, functionality, and use of the
Offerings published and updated by VMware from time to time at docs.vmware.com.\nEvaluation
means an Offering (or part of an Offering) made available free of charge,
for evaluation, trial, proof of concept, or similar purpose. \nExhibits means
the exhibits to these General Terms (Software, Cloud Services, Professional
Services, U.S. Federal, and VMware Entities) available at www.vmware.com/agreements.\nIndemnified
Materials means the Cloud Services, Software, and Deliverables.\nInfringement
Claim means any claim by a third party that the Indemnified Materials infringe
any patent, trademark, or copyright of that third party, or misappropriate
a trade secret (only to the extent that misappropriation is not a result of
Customer's actions).\nIntellectual Property Rights means all worldwide
intellectual property rights, including copyrights, trademarks, service marks,
trade secrets, know-how, inventions, patents, patent applications, moral rights,
and all other proprietary rights, whether registered or unregistered.\nLogin
Credentials means any passwords, authentication keys, or security credentials
that enable Customer's access to and management of the Cloud Service.\nOffering(s)
means, collectively, Services or Software.\nOffering-specific Notes means
the applicable license notes or services notes found in the Product Guide,
the Cloud Services Guide, and the Support Services Guide.\nOrder means an
enterprise order, SOW, quote, or other ordering document for Offerings, issued
by Customer to VMware or to Customer's VMware authorized reseller and
accepted by VMware described in section 2 of these General Terms (Orders and
Payments). \nPerpetual License means a license to the Software with a perpetual
term.\nPersonal Data is defined in the Data Processing Addendum. \nProduct
Guide means VMware's then-current Product Guide available at www.vmware.com/agreements.\nProfessional
Services means those services described in the applicable SOW. \nService Level
Agreement means the then-current version of the applicable service level agreement
for a Cloud Service, available at www.vmware.com/agreements. \nService(s)
means Cloud Services, Support Services, or Professional Services.\nSoftware
means the VMware computer programs that Customer licenses under an Order,
together with any related software code VMware provides as part of Support
Services and that is not subject to a separate license agreement.\nSOW means
a written agreement between Customer and VMware containing project-specific
details of the Professional Services or VMware online datasheet.\nSubscription
Software means Software that is licensed for a specific term. \nSubscription
Term means the period Customer is permitted to use a Cloud Service or Subscription
Software, stated in the applicable Order. For any on-demand Cloud Services,
Subscription Term means the period during which Customer uses the Cloud Service.\nSupport
Services means VMware support and subscription services that are purchased
under an Order or included with purchase of Subscription Software or Cloud
Services.\nSupport Services Guide means VMware's then-current Support
Services Guide, available at www.vmware.com/agreements.\nTax means any sales,
consumption, VAT, GST, use, gross receipts, business and occupation, withholding,
and other taxes (other than taxes on VMware income), export and import fees,
customs duties, and similar fees imposed by any government or other authority.
\nThird-Party Agent means a third party delivering information technology
services to Customer under a contract with Customer.\nThird-Party Content
means content provided by a third party that interoperates with a Cloud Service,
but that is not part of the Cloud Service. Third-Party Content is optional
and is subject to the third-party terms accompanying the Third-Party Content.\nU.S.
Public Sector End User means a U.S. Federal End User or a U.S. State or Local
Government End User, as those terms are defined in the U.S. Public Sector
Exhibit.\nUser means an employee, contractor, or Third-Party Agent that Customer
authorizes to use the Offerings as permitted under the Agreement or under
Customer's Login Credentials.\nVMware means VMware, Inc., a Delaware
corporation, if the billing address for the Order is in the United States,
or VMware International Unlimited Company, a company organized and existing
under the laws of Ireland, if the billing address for the Order is outside
the United States, except if the billing address for the Order is in the United
Kingdom, Australia, or New Zealand or the Pacific Islands, in which case VMware
means the applicable entity identified in the VMware Entities Exhibit found
at www.vmware.com/agreements.\n</eula><installBootRequired>false</installBootRequired><installBootStopDelay>0</installBootStopDelay></vAppConfig><vAssertsEnabled>false</vAssertsEnabled><changeTrackingEnabled>false</changeTrackingEnabled><firmware>bios</firmware><maxMksConnections>40</maxMksConnections><guestAutoLockEnabled>true</guestAutoLockEnabled><managedBy><extensionKey>com.vmware.vim.eam</extensionKey><type>cluster-agent</type></managedBy><memoryReservationLockedToMax>false</memoryReservationLockedToMax><initialOverhead><initialMemoryReservation>57659392</initialMemoryReservation><initialSwapReservation>1060564992</initialSwapReservation></initialOverhead><nestedHVEnabled>false</nestedHVEnabled><vPMCEnabled>false</vPMCEnabled><scheduledHardwareUpgradeInfo><upgradePolicy>never</upgradePolicy><scheduledHardwareUpgradeStatus>none</scheduledHardwareUpgradeStatus></scheduledHardwareUpgradeInfo><vmxConfigChecksum>VBn1Z7tILKERM8p3/3kIRWUflT9JDiW+HbOAf23Am2M=</vmxConfigChecksum><messageBusTunnelEnabled>false</messageBusTunnelEnabled><vmStorageObjectId>3b307865-804d-7d05-3a9d-0625178fc4c6</vmStorageObjectId><swapStorageObjectId>ad307865-d031-6bd2-c20f-0625178fc4c6</swapStorageObjectId><guestIntegrityInfo><enabled>false</enabled></guestIntegrityInfo><migrateEncryption>opportunistic</migrateEncryption><sgxInfo><epcSize>0</epcSize><flcMode>unlocked</flcMode><requireAttestation>false</requireAttestation></sgxInfo><ftEncryptionMode>ftEncryptionOpportunistic</ftEncryptionMode><guestMonitoringModeInfo></guestMonitoringModeInfo><sevEnabled>false</sevEnabled><numaInfo><coresPerNumaNode>1</coresPerNumaNode><autoCoresPerNumaNode>true</autoCoresPerNumaNode><vnumaOnCpuHotaddExposed>false</vnumaOnCpuHotaddExposed></numaInfo><pmemFailoverEnabled>false</pmemFailoverEnabled><vmxStatsCollectionEnabled>true</vmxStatsCollectionEnabled><vmOpNotificationToAppEnabled>false</vmOpNotificationToAppEnabled><vmOpNotificationTimeout>-1</vmOpNotificationTimeout><deviceSwap><lsiToPvscsi><enabled>true</enabled><applicable>false</applicable><status>none</status></lsiToPvscsi></deviceSwap><deviceGroups></deviceGroups><fixedPassthruHotPlugEnabled>false</fixedPassthruHotPlugEnabled></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '54849'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:10 GMT
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-envoy-upstream-service-time:
- '7'
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="VirtualMachine">vm-19</_this><prop
versionId="8.0.2.0">layout</prop></Fetch></soapenv:Body>
</soapenv:Envelope>'
headers:
Accept-Encoding:
- gzip, deflate
Content-Type:
- text/xml; charset=UTF-8
Cookie:
- vmware_soap_session="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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=\"VirtualMachineFileLayout\"><configFile>vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573.nvram</configFile><configFile>vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573.vmsd</configFile><logFile>vmware-9.log</logFile><logFile>vmware-8.log</logFile><logFile>vmware-5.log</logFile><logFile>vmware-4.log</logFile><logFile>vmware-7.log</logFile><logFile>vmware-6.log</logFile><logFile>vmware-13.log</logFile><logFile>vmware-12.log</logFile><logFile>vmware-11.log</logFile><logFile>vmware-10.log</logFile><logFile>vmware.log</logFile><disk><key>2000</key><diskFile>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573.vmdk</diskFile></disk><swapFile>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573-ed4cc4ef.vswp</swapFile></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '1198'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:10 GMT
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-envoy-upstream-service-time:
- '8'
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="VirtualMachine">vm-19</_this><prop
versionId="8.0.2.0">layoutEx</prop></Fetch></soapenv:Body>
</soapenv:Envelope>'
headers:
Accept-Encoding:
- gzip, deflate
Content-Type:
- text/xml; charset=UTF-8
Cookie:
- vmware_soap_session="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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=\"VirtualMachineFileLayoutEx\"><file><key>0</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573.vmx</name><type>config</type><size>4009</size><uniqueSize>4009</uniqueSize><backingObjectId>3b307865-804d-7d05-3a9d-0625178fc4c6</backingObjectId><accessible>true</accessible></file><file><key>4</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573.nvram</name><type>nvram</type><size>8684</size><uniqueSize>8684</uniqueSize><accessible>true</accessible></file><file><key>1</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573.vmsd</name><type>snapshotList</type><size>0</size><uniqueSize>0</uniqueSize><accessible>true</accessible></file><file><key>2</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573.vmdk</name><type>diskDescriptor</type><size>1119879168</size><uniqueSize>1119879168</uniqueSize><backingObjectId>40307865-8a72-9a84-5fdc-0625178fc4c6</backingObjectId><accessible>true</accessible></file><file><key>5</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573-ed4cc4ef.vswp</name><type>swap</type><size>134217728</size><uniqueSize>37748736</uniqueSize><backingObjectId>ad307865-d031-6bd2-c20f-0625178fc4c6</backingObjectId><accessible>true</accessible></file><file><key>6</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vmx-vCLS-8f66678f-3d69-4-776c27db52d25569dc0513778d370a2c1f3e604d766a0a0d1da2a7970386a949-1.vswp</name><type>uwswap</type><size>83886080</size><uniqueSize>83886080</uniqueSize><accessible>true</accessible></file><file><key>15</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vmware-9.log</name><type>log</type><size>2048407</size><uniqueSize>2048407</uniqueSize><accessible>true</accessible></file><file><key>14</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vmware-8.log</name><type>log</type><size>2048327</size><uniqueSize>2048327</uniqueSize><accessible>true</accessible></file><file><key>11</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vmware-5.log</name><type>log</type><size>2048366</size><uniqueSize>2048366</uniqueSize><accessible>true</accessible></file><file><key>10</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vmware-4.log</name><type>log</type><size>2048388</size><uniqueSize>2048388</uniqueSize><accessible>true</accessible></file><file><key>13</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vmware-7.log</name><type>log</type><size>2048328</size><uniqueSize>2048328</uniqueSize><accessible>true</accessible></file><file><key>12</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vmware-6.log</name><type>log</type><size>2048432</size><uniqueSize>2048432</uniqueSize><accessible>true</accessible></file><file><key>9</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vmware-13.log</name><type>log</type><size>2048348</size><uniqueSize>2048348</uniqueSize><accessible>true</accessible></file><file><key>8</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vmware-12.log</name><type>log</type><size>2048339</size><uniqueSize>2048339</uniqueSize><accessible>true</accessible></file><file><key>7</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vmware-11.log</name><type>log</type><size>2048408</size><uniqueSize>2048408</uniqueSize><accessible>true</accessible></file><file><key>16</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vmware-10.log</name><type>log</type><size>2048410</size><uniqueSize>2048410</uniqueSize><accessible>true</accessible></file><file><key>3</key><name>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vmware.log</name><type>log</type><size>1111690</size><uniqueSize>1111690</uniqueSize><accessible>true</accessible></file><disk><key>2000</key><chain><fileKey>2</fileKey></chain></disk><timestamp>2023-12-14T10:13:03.35926Z</timestamp></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '4450'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:10 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="VirtualMachine">vm-19</_this><prop
versionId="8.0.2.0">storage</prop></Fetch></soapenv:Body>
</soapenv:Envelope>'
headers:
Accept-Encoding:
- gzip, deflate
Content-Type:
- text/xml; charset=UTF-8
Cookie:
- vmware_soap_session="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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=\"VirtualMachineStorageInfo\"><perDatastoreUsage><datastore
type=\"Datastore\">datastore-17</datastore><committed>2470445056</committed><uncommitted>3271557120</uncommitted><unshared>1119879168</unshared></perDatastoreUsage><timestamp>2023-12-14T10:13:03.363Z</timestamp></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:26:10 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="VirtualMachine">vm-19</_this><prop
versionId="8.0.2.0">environmentBrowser</prop></Fetch></soapenv:Body>
</soapenv:Envelope>'
headers:
Accept-Encoding:
- gzip, deflate
Content-Type:
- text/xml; charset=UTF-8
Cookie:
- vmware_soap_session="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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=\"EnvironmentBrowser\" xsi:type=\"ManagedObjectReference\">envbrowser-19</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:26: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="VirtualMachine">vm-19</_this><prop
versionId="8.0.2.0">resourcePool</prop></Fetch></soapenv:Body>
</soapenv:Envelope>'
headers:
Accept-Encoding:
- gzip, deflate
Content-Type:
- text/xml; charset=UTF-8
Cookie:
- vmware_soap_session="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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=\"ResourcePool\" xsi:type=\"ManagedObjectReference\">resgroup-10</returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '464'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:11 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="VirtualMachine">vm-19</_this><prop
versionId="8.0.2.0">parentVApp</prop></Fetch></soapenv:Body>
</soapenv:Envelope>'
headers:
Accept-Encoding:
- gzip, deflate
Content-Type:
- text/xml; charset=UTF-8
Cookie:
- vmware_soap_session="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26: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="VirtualMachine">vm-19</_this><prop
versionId="8.0.2.0">resourceConfig</prop></Fetch></soapenv:Body>
</soapenv:Envelope>'
headers:
Accept-Encoding:
- gzip, deflate
Content-Type:
- text/xml; charset=UTF-8
Cookie:
- vmware_soap_session="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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=\"ResourceConfigSpec\"><entity type=\"VirtualMachine\">vm-19</entity><cpuAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1000</shares><level>normal</level></shares></cpuAllocation><memoryAllocation><reservation>0</reservation><expandableReservation>false</expandableReservation><limit>-1</limit><shares><shares>1280</shares><level>normal</level></shares></memoryAllocation></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '853'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26: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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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=\"VirtualMachineRuntimeInfo\"><host
type=\"HostSystem\">host-16</host><connectionState>connected</connectionState><powerState>poweredOn</powerState><faultToleranceState>notConfigured</faultToleranceState><toolsInstallerMounted>false</toolsInstallerMounted><bootTime>2023-12-12T10:06:39Z</bootTime><suspendInterval>0</suspendInterval><maxCpuUsage>0</maxCpuUsage><maxMemoryUsage>0</maxMemoryUsage><numMksConnections>0</numMksConnections><recordReplayState>inactive</recordReplayState><onlineStandby>false</onlineStandby><minRequiredEVCModeKey>intel-merom</minRequiredEVCModeKey><consolidationNeeded>false</consolidationNeeded><offlineFeatureRequirement><key>cpuid.cmpxchg16b</key><featureName>cpuid.cmpxchg16b</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.ds</key><featureName>cpuid.ds</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.intel</key><featureName>cpuid.intel</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.lahf64</key><featureName>cpuid.lahf64</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.lm</key><featureName>cpuid.lm</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.mwait</key><featureName>cpuid.mwait</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.nx</key><featureName>cpuid.nx</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.ss</key><featureName>cpuid.ss</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.sse3</key><featureName>cpuid.sse3</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.ssse3</key><featureName>cpuid.ssse3</featureName><value>Num:Match:1</value></offlineFeatureRequirement><featureRequirement><key>cpuid.cmpxchg16b</key><featureName>cpuid.cmpxchg16b</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.ds</key><featureName>cpuid.ds</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.intel</key><featureName>cpuid.intel</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.lahf64</key><featureName>cpuid.lahf64</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.lm</key><featureName>cpuid.lm</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.mwait</key><featureName>cpuid.mwait</featureName><value>Num:Match:1</value></featureRequirement><featureRequirement><key>cpuid.nx</key><featureName>cpuid.nx</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.ss</key><featureName>cpuid.ss</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.sse3</key><featureName>cpuid.sse3</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.ssse3</key><featureName>cpuid.ssse3</featureName><value>Bool:Match:1</value></featureRequirement><featureMask><key>cpuid.STEPPING</key><featureName>cpuid.STEPPING</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.Intel</key><featureName>cpuid.Intel</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.MODEL</key><featureName>cpuid.MODEL</featureName><value>Val:0xf</value></featureMask><featureMask><key>cpuid.LM</key><featureName>cpuid.LM</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.NUM_EXT_LEVELS</key><featureName>cpuid.NUM_EXT_LEVELS</featureName><value>Val:0x80000008</value></featureMask><featureMask><key>cpuid.MWAIT</key><featureName>cpuid.MWAIT</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.FAMILY</key><featureName>cpuid.FAMILY</featureName><value>Val:6</value></featureMask><featureMask><key>cpuid.SSSE3</key><featureName>cpuid.SSSE3</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.SSE3</key><featureName>cpuid.SSE3</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.NX</key><featureName>cpuid.NX</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.SS</key><featureName>cpuid.SS</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.DS</key><featureName>cpuid.DS</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.LAHF64</key><featureName>cpuid.LAHF64</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.CMPXCHG16B</key><featureName>cpuid.CMPXCHG16B</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.NUMLEVELS</key><featureName>cpuid.NUMLEVELS</featureName><value>Val:0xa</value></featureMask><paused>false</paused><snapshotInBackground>false</snapshotInBackground><instantCloneFrozen>false</instantCloneFrozen></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '5445'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26:12 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="VirtualMachine">vm-19</_this><prop
versionId="8.0.2.0">guest</prop></Fetch></soapenv:Body>
</soapenv:Envelope>'
headers:
Accept-Encoding:
- gzip, deflate
Content-Type:
- text/xml; charset=UTF-8
Cookie:
- vmware_soap_session="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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=\"GuestInfo\"><toolsStatus>toolsOk</toolsStatus><toolsVersionStatus>guestToolsUnmanaged</toolsVersionStatus><toolsVersionStatus2>guestToolsUnmanaged</toolsVersionStatus2><toolsRunningStatus>guestToolsRunning</toolsRunningStatus><toolsVersion>12389</toolsVersion><toolsInstallType>guestToolsTypeOpenVMTools</toolsInstallType><guestId>vmwarePhoton64Guest</guestId><guestFamily>linuxGuest</guestFamily><guestFullName>VMware
Photon OS (64-bit)</guestFullName><guestDetailedData>architecture='X86'
bitness='64' distroAddlVersion='5.0' distroName='VMware
Photon OS' distroVersion='5.0' familyName='Linux'
kernelVersion='6.1.60-5.ph5-esx' prettyName='VMware Photon
OS/Linux'</guestDetailedData><hostName>None</hostName><ipStack><dnsConfig><dhcp>false</dhcp><hostName>None</hostName><domainName>.</domainName><ipAddress>1.1.1.1</ipAddress><ipAddress>8.8.8.8</ipAddress><ipAddress>1.0.0.1</ipAddress><ipAddress>8.8.4.4</ipAddress><ipAddress>2606:4700:4700::1111</ipAddress><ipAddress>2001:4860:4860::8888</ipAddress><ipAddress>2606:4700:4700::1001</ipAddress><ipAddress>2001:4860:4860::8844</ipAddress><searchDomain>.</searchDomain></dnsConfig><ipRouteConfig></ipRouteConfig></ipStack><disk><diskPath>/</diskPath><capacity>2058399744</capacity><freeSpace>1299390464</freeSpace><filesystemType>ext4</filesystemType><mappings><key>2000</key></mappings></disk><disk><diskPath>/boot/efi</diskPath><capacity>10446848</capacity><freeSpace>9050112</freeSpace><filesystemType>vfat</filesystemType><mappings><key>2000</key></mappings></disk><screen><width>800</width><height>600</height></screen><guestState>running</guestState><appHeartbeatStatus>appStatusGray</appHeartbeatStatus><guestKernelCrashed>false</guestKernelCrashed><appState>none</appState><guestOperationsReady>true</guestOperationsReady><interactiveGuestOperationsReady>false</interactiveGuestOperationsReady><guestStateChangeSupported>true</guestStateChangeSupported><hwVersion>vmx-11</hwVersion><customizationInfo><customizationStatus>TOOLSDEPLOYPKG_SUCCEEDED</customizationStatus><startTime>2023-12-12T10:07:22.614869Z</startTime><endTime>2023-12-12T10:07:46.553245Z</endTime></customizationInfo></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '2632'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26: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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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=\"VirtualMachineSummary\"><vm type=\"VirtualMachine\">vm-19</vm><runtime><host
type=\"HostSystem\">host-16</host><connectionState>connected</connectionState><powerState>poweredOn</powerState><faultToleranceState>notConfigured</faultToleranceState><toolsInstallerMounted>false</toolsInstallerMounted><bootTime>2023-12-12T10:06:39Z</bootTime><suspendInterval>0</suspendInterval><maxCpuUsage>0</maxCpuUsage><maxMemoryUsage>0</maxMemoryUsage><numMksConnections>0</numMksConnections><recordReplayState>inactive</recordReplayState><onlineStandby>false</onlineStandby><minRequiredEVCModeKey>intel-merom</minRequiredEVCModeKey><consolidationNeeded>false</consolidationNeeded><offlineFeatureRequirement><key>cpuid.cmpxchg16b</key><featureName>cpuid.cmpxchg16b</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.ds</key><featureName>cpuid.ds</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.intel</key><featureName>cpuid.intel</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.lahf64</key><featureName>cpuid.lahf64</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.lm</key><featureName>cpuid.lm</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.mwait</key><featureName>cpuid.mwait</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.nx</key><featureName>cpuid.nx</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.ss</key><featureName>cpuid.ss</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.sse3</key><featureName>cpuid.sse3</featureName><value>Num:Match:1</value></offlineFeatureRequirement><offlineFeatureRequirement><key>cpuid.ssse3</key><featureName>cpuid.ssse3</featureName><value>Num:Match:1</value></offlineFeatureRequirement><featureRequirement><key>cpuid.cmpxchg16b</key><featureName>cpuid.cmpxchg16b</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.ds</key><featureName>cpuid.ds</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.intel</key><featureName>cpuid.intel</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.lahf64</key><featureName>cpuid.lahf64</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.lm</key><featureName>cpuid.lm</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.mwait</key><featureName>cpuid.mwait</featureName><value>Num:Match:1</value></featureRequirement><featureRequirement><key>cpuid.nx</key><featureName>cpuid.nx</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.ss</key><featureName>cpuid.ss</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.sse3</key><featureName>cpuid.sse3</featureName><value>Bool:Match:1</value></featureRequirement><featureRequirement><key>cpuid.ssse3</key><featureName>cpuid.ssse3</featureName><value>Bool:Match:1</value></featureRequirement><featureMask><key>cpuid.STEPPING</key><featureName>cpuid.STEPPING</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.Intel</key><featureName>cpuid.Intel</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.MODEL</key><featureName>cpuid.MODEL</featureName><value>Val:0xf</value></featureMask><featureMask><key>cpuid.LM</key><featureName>cpuid.LM</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.NUM_EXT_LEVELS</key><featureName>cpuid.NUM_EXT_LEVELS</featureName><value>Val:0x80000008</value></featureMask><featureMask><key>cpuid.MWAIT</key><featureName>cpuid.MWAIT</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.FAMILY</key><featureName>cpuid.FAMILY</featureName><value>Val:6</value></featureMask><featureMask><key>cpuid.SSSE3</key><featureName>cpuid.SSSE3</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.SSE3</key><featureName>cpuid.SSE3</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.NX</key><featureName>cpuid.NX</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.SS</key><featureName>cpuid.SS</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.DS</key><featureName>cpuid.DS</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.LAHF64</key><featureName>cpuid.LAHF64</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.CMPXCHG16B</key><featureName>cpuid.CMPXCHG16B</featureName><value>Val:1</value></featureMask><featureMask><key>cpuid.NUMLEVELS</key><featureName>cpuid.NUMLEVELS</featureName><value>Val:0xa</value></featureMask><paused>false</paused><snapshotInBackground>false</snapshotInBackground><instantCloneFrozen>false</instantCloneFrozen></runtime><guest><guestId>vmwarePhoton64Guest</guestId><guestFullName>VMware
Photon OS (64-bit)</guestFullName><toolsStatus>toolsOk</toolsStatus><toolsVersionStatus>guestToolsUnmanaged</toolsVersionStatus><toolsVersionStatus2>guestToolsUnmanaged</toolsVersionStatus2><toolsRunningStatus>guestToolsRunning</toolsRunningStatus><hostName>None</hostName><hwVersion>vmx-11</hwVersion></guest><config><name>vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573</name><template>false</template><vmPathName>[vsanDatastore]
3b307865-804d-7d05-3a9d-0625178fc4c6/vCLS-8f66678f-3d69-4b58-a4c7-bae62203b573.vmx</vmPathName><memorySizeMB>128</memorySizeMB><cpuReservation>0</cpuReservation><memoryReservation>0</memoryReservation><numCpu>1</numCpu><numEthernetCards>0</numEthernetCards><numVirtualDisks>1</numVirtualDisks><uuid>4220824e-c2eb-ed46-47db-8e5746f5bde4</uuid><instanceUuid>50201f05-b37c-db69-fda5-fb077e87af04</instanceUuid><guestId>other26xLinux64Guest</guestId><guestFullName>Other
2.6.x Linux (64-bit)</guestFullName><annotation>vSphere Cluster Service VM
is deployed from an OVA with a minimal installed profile of PhotonOS. vSphere
Cluster Service manages the resources, power state and availability of these
VMs. vSphere Cluster Service VMs are required for maintaining the health and
availability of vSphere Cluster Service. Any impact on the power state or
resources of these VMs might degrade the health of the vSphere Cluster Service
and cause vSphere DRS to cease operation for the cluster.\n</annotation><product><key>0</key><classId></classId><instanceId></instanceId><name>Photon
OS</name><vendor>VMware Inc.</vendor><version></version><fullVersion></fullVersion><vendorUrl></vendorUrl><productUrl></productUrl><appUrl></appUrl></product><installBootRequired>false</installBootRequired><managedBy><extensionKey>com.vmware.vim.eam</extensionKey><type>cluster-agent</type></managedBy><tpmPresent>false</tpmPresent><numVmiopBackings>0</numVmiopBackings><hwVersion>vmx-11</hwVersion></config><storage><committed>2470445056</committed><uncommitted>3271557120</uncommitted><unshared>1119879168</unshared><timestamp>2023-12-14T10:13:03.363337Z</timestamp></storage><quickStats><overallCpuUsage>19</overallCpuUsage><overallCpuDemand>19</overallCpuDemand><overallCpuReadiness>0</overallCpuReadiness><guestMemoryUsage>25</guestMemoryUsage><hostMemoryUsage>177</hostMemoryUsage><guestHeartbeatStatus>green</guestHeartbeatStatus><distributedCpuEntitlement>0</distributedCpuEntitlement><distributedMemoryEntitlement>0</distributedMemoryEntitlement><staticCpuEntitlement>0</staticCpuEntitlement><staticMemoryEntitlement>0</staticMemoryEntitlement><grantedMemory>127</grantedMemory><privateMemory>127</privateMemory><sharedMemory>0</sharedMemory><swappedMemory>0</swappedMemory><balloonedMemory>0</balloonedMemory><consumedOverheadMemory>50</consumedOverheadMemory><ftLogBandwidth>-1</ftLogBandwidth><ftSecondaryLatency>-1</ftSecondaryLatency><ftLatencyStatus>gray</ftLatencyStatus><compressedMemory>0</compressedMemory><uptimeSeconds>173902</uptimeSeconds><ssdSwappedMemory>0</ssdSwappedMemory><activeMemory>25</activeMemory></quickStats><overallStatus>green</overallStatus></returnval></FetchResponse>\n</soapenv:Body>\n</soapenv:Envelope>"
headers:
cache-control:
- no-cache
content-length:
- '8645'
content-type:
- text/xml; charset=utf-8
date:
- Thu, 14 Dec 2023 10:26: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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26: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="VirtualMachine">vm-19</_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="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26: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="VirtualMachine">vm-19</_this><prop
versionId="8.0.2.0">snapshot</prop></Fetch></soapenv:Body>
</soapenv:Envelope>'
headers:
Accept-Encoding:
- gzip, deflate
Content-Type:
- text/xml; charset=UTF-8
Cookie:
- vmware_soap_session="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26:13 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="VirtualMachine">vm-19</_this><prop
versionId="8.0.2.0">rootSnapshot</prop></Fetch></soapenv:Body>
</soapenv:Envelope>'
headers:
Accept-Encoding:
- gzip, deflate
Content-Type:
- text/xml; charset=UTF-8
Cookie:
- vmware_soap_session="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26:13 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="VirtualMachine">vm-19</_this><prop
versionId="8.0.2.0">guestHeartbeatStatus</prop></Fetch></soapenv:Body>
</soapenv:Envelope>'
headers:
Accept-Encoding:
- gzip, deflate
Content-Type:
- text/xml; charset=UTF-8
Cookie:
- vmware_soap_session="265d9603d7bad07b858b1a9eef4a695f6fe87dbf"; 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:26:14 GMT
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-envoy-upstream-service-time:
- '3'
status:
code: 200
message: OK
version: 1
|