Newer
Older
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
[2024-02-15 11:40:24,430] DEBUG:bgpls_speaker.service.tools.DiscoveredDBManager:(FindConnectedNodes) link in up:2.2.2.2 1.1.1.1
[2024-02-15 11:40:24,430] DEBUG:bgpls_speaker.service.tools.DiscoveredDBManager:(FindConnectedNodes) comparing ...:1.1.1.1
[2024-02-15 11:40:24,431] DEBUG:bgpls_speaker.service.tools.DiscoveredDBManager:(FindConnectedNodes) link in up:1.1.1.1 3.3.3.3
[2024-02-15 11:40:24,431] DEBUG:bgpls_speaker.service.tools.DiscoveredDBManager:(FindConnectedNodes) comparing ...:1.1.1.1
[2024-02-15 11:40:24,431] DEBUG:bgpls_speaker.service.tools.DiscoveredDBManager:(FindConnectedNodes) link in up:1.1.1.1 2.2.2.2
[2024-02-15 11:40:24,431] DEBUG:bgpls_speaker.service.tools.DiscoveredDBManager:(FindConnectedNodes) comparing ...:1.1.1.1
[2024-02-15 11:40:24,431] DEBUG:bgpls_speaker.service.tools.DiscoveredDBManager:(FindConnectedNodes) links to local node:1.1.1.1
[2024-02-15 11:40:24,431] DEBUG:bgpls_speaker.service.tools.DiscoveredDBManager:(FindConnectedNodes) ['3.3.3.3', '2.2.2.2', '3.3.3.3', '2.2.2.2']
[2024-02-15 11:40:24,431] DEBUG:context.client.ContextClient:Creating channel to 10.152.183.34:1010...
[2024-02-15 11:40:24,431] DEBUG:context.client.ContextClient:Channel created
[2024-02-15 11:40:24,432] INFO:bgpls_speaker.service.tools.DiscoveredDBManager:(AddContextDevices)
[2024-02-15 11:40:24,432] DEBUG:context.client.ContextClient:ListDevices request: {}
[2024-02-15 11:40:24,590] DEBUG:bgpls_speaker.service.tools.DiscoveredDBManager:device_ (AddContextDevices) R155
[2024-02-15 11:40:24,591] DEBUG:bgpls_speaker.service.tools.DiscoveredDBManager:device_ (AddContextDevices) 1.1.1.1
[2024-02-15 11:40:24,592] DEBUG:bgpls_speaker.service.tools.DiscoveredDBManager:device_ (AddContextDevices) 3.3.3.3
[2024-02-15 11:40:24,592] DEBUG:bgpls_speaker.service.tools.DiscoveredDBManager:device_ (AddContextDevices) R149
[2024-02-15 11:40:24,595] DEBUG:bgpls_speaker.service.BgplsServiceServicerImpl:(NotifyAddNodeToContext) Devices in context: ['R155', '1.1.1.1', '3.3.3.3', 'R149']
[2024-02-15 11:40:24,596] DEBUG:bgpls_speaker.service.BgplsServiceServicerImpl:(NotifyAddNodeToContext) Nodes conected in context: ['3.3.3.3', '2.2.2.2', '3.3.3.3', '2.2.2.2']
[2024-02-15 11:40:24,597] DEBUG:bgpls_speaker.service.BgplsServiceServicerImpl:(NotifyAddNodeToContext) nodes_conected_in_context: ['3.3.3.3']
[2024-02-15 11:40:24,597] DEBUG:context.client.ContextClient:GetDevice request: {"device_uuid": {"uuid": "1.1.1.1"}}
[2024-02-15 11:40:24,681] DEBUG:context.client.ContextClient:GetDevice result: {"components": [{"attributes": {"description": "\"Port Container for port56\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "000db335-086d-5b38-b8ff-7f10516b61c4"}, "name": "0/0-Ether Port container 56", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port43\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "018a8ed9-176a-5368-a522-a4fcbdaf6600"}, "name": "0/0-Ether Port container 43", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port138\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "022db90d-73dd-5763-9c50-1702e6654373"}, "name": "0/0-Ether Port container 138", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port38\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "0311e710-80b9-5588-b114-8af357070de4"}, "name": "0/0-Ether Port container 38", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port109\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "038164d2-53c3-5f44-960f-eabbe479a406"}, "name": "0/0-Ether Port container 109", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port30\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "0671759b-ac54-506d-9da4-941325fe4903"}, "name": "0/0-Ether Port container 30", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Ethernet Port One Gig\"", "empty": "\"false\"", "location": "\"0/0/1\"", "removable": "\"false\""}, "component_uuid": {"uuid": "071b4067-3b7f-54b7-92e1-8d4cc247d679"}, "name": "0/0/1-GigabitEthernet0/0/0/1", "parent": "0/0/1-Virtual-Board", "type": "idx:PORT"}, {"attributes": {"description": "\"Pluggable Optical Module Container\"", "empty": "\"true\"", "location": "\"0/0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "08186e31-830d-5b6c-9031-4cf5eda04b4b"}, "name": "0/0/0-SFP Socket", "parent": "0/0/0-GigabitEthernet0/0/0/0", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port133\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "08801ec8-a4e2-5b61-978d-fe4e411bd4ba"}, "name": "0/0-Ether Port container 133", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port73\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "09611cdc-a4ec-5339-b1bf-58ad77bdf0e6"}, "name": "0/0-Ether Port container 73", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port183\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "0980621c-56ef-5b08-9ff9-38d4ac34f2c7"}, "name": "0/0-Ether Port container 183", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port4\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "0a823deb-3849-59b3-951b-d816dd5ecc36"}, "name": "0/0-Ether Port container 4", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Processor Module\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "0b1a691a-1875-57ad-ae62-890ee11d9df7"}, "name": "0/RP0-Intel 8 Core CPU Complex", "parent": "0/RP0-CPU Module", "type": "idx:CPU"}, {"attributes": {"description": "\"Port Container for port21\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "0e86422a-6db9-5306-a2d0-836ab356272f"}, "name": "0/0-Ether Port container 21", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port90\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "0f85db78-8a54-5b11-a425-e37d524e6ed2"}, "name": "0/0-Ether Port container 90", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port150\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "119ccfa0-9997-5db6-9fa5-7ea24ed465d0"}, "name": "0/0-Ether Port container 150", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port86\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "1308907d-6b4f-53a0-b842-bf5271049258"}, "name": "0/0-Ether Port container 86", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port196\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "15211612-b795-5ad0-a145-0028266bd48c"}, "name": "0/0-Ether Port container 196", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port114\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "15d106bc-c3d6-548e-9300-492d22dc4b97"}, "name": "0/0-Ether Port container 114", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port139\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "165522c7-5ef5-59c4-88bf-966e3c02845c"}, "name": "0/0-Ether Port container 139", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Virtual 1G Module\"", "empty": "\"false\"", "location": "\"0/0/2\"", "removable": "\"false\""}, "component_uuid": {"uuid": "189297fa-beb5-5921-9c84-dcd14a676709"}, "name": "0/0/2-Virtual-Board", "parent": "0/0/2", "type": ""}, {"attributes": {"description": "\"Port Container for port19\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "198a6dec-c9d9-5f88-88d4-c26766217d23"}, "name": "0/0-Ether Port container 19", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port174\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "19d58a67-df9e-5e1e-a477-bf5ecb850968"}, "name": "0/0-Ether Port container 174", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port187\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "1ba025db-0ad3-5d39-9d49-afa1d1d0f40c"}, "name": "0/0-Ether Port container 187", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port182\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "1d9f9135-049c-5300-9bdb-e32096ce263e"}, "name": "0/0-Ether Port container 182", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port42\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "1fd1bfd3-4fba-598c-a6bb-f7179e804234"}, "name": "0/0-Ether Port container 42", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port33\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2035d36b-5134-5f03-ba2e-85ac86e820a3"}, "name": "0/0-Ether Port container 33", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port105\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "210b5db5-2506-5455-bf79-41cb130c7bf0"}, "name": "0/0-Ether Port container 105", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port95\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2165e0eb-f139-5bc8-af2d-86abcfd12270"}, "name": "0/0-Ether Port container 95", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port65\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "26100bd8-57e0-5f79-805d-210d66f595ff"}, "name": "0/0-Ether Port container 65", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port101\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2787313e-8b49-5796-bb31-1176d06b5029"}, "name": "0/0-Ether Port container 101", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port96\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "28c2533d-19e2-593b-b137-4af63296d221"}, "name": "0/0-Ether Port container 96", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port50\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2c1562bb-7ad6-5489-99c6-36990d83dace"}, "name": "0/0-Ether Port container 50", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port172\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2c2faa8e-fb3a-541d-b82e-5c013a02874a"}, "name": "0/0-Ether Port container 172", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port7\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2dc2b054-c911-55dc-a1ca-aed4ec8a2547"}, "name": "0/0-Ether Port container 7", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port61\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2ded673b-6567-5824-b41d-36ce1028af97"}, "name": "0/0-Ether Port container 61", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port36\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2ea64526-f0a8-5d34-a19a-283d49fff773"}, "name": "0/0-Ether Port container 36", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port10\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2f1f05b9-b1fc-5827-853a-d5bbe5a8cd93"}, "name": "0/0-Ether Port container 10", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port162\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2f45eab5-5aa5-5b15-b0da-e1dee66b8b12"}, "name": "0/0-Ether Port container 162", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port119\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "32843a45-e0e0-5da2-a465-d045bec3ad9d"}, "name": "0/0-Ether Port container 119", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port102\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "32fcdf91-a401-5568-b322-0bf60fa2b348"}, "name": "0/0-Ether Port container 102", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Virtual 1G Module\"", "empty": "\"false\"", "location": "\"0/0/3\"", "removable": "\"false\""}, "component_uuid": {"uuid": "3350df39-a1ae-5f55-8c58-d2390c60d58d"}, "name": "0/0/3-Virtual-Board", "parent": "0/0/3", "type": ""}, {"attributes": {"description": "\"Port Container for port3\"", "empty": "\"false\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "340b7a14-f4ba-56cf-9bc2-2886fc3f38e4"}, "name": "0/0-Ether Port container 3", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port26\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "34866d84-ade0-5c65-b466-9d949d30252c"}, "name": "0/0-Ether Port container 26", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port175\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "356634c3-f93d-56ce-9b39-3de56382a119"}, "name": "0/0-Ether Port container 175", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port81\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "35b2f531-70dc-53cc-86b0-184f9e5fcfcf"}, "name": "0/0-Ether Port container 81", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port181\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "368111fb-c5fc-5552-907b-42c605bf9ac3"}, "name": "0/0-Ether Port container 181", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port47\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "369f5ef5-a197-582c-b9a9-142a8120b0f6"}, "name": "0/0-Ether Port container 47", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port112\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "36c1f67e-e0d3-541c-8fef-35b7a7a27872"}, "name": "0/0-Ether Port container 112", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port164\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "379d835c-a28c-5f2f-b4f4-2df2a31e5032"}, "name": "0/0-Ether Port container 164", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port160\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "37bdaf08-0a41-545a-929f-07e341ca9a07"}, "name": "0/0-Ether Port container 160", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Virtual LC Motherboard\"", "empty": "\"false\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "39c3bbb4-7a0c-5d49-b5e4-2ce71f8eab2f"}, "name": "0/0-Virtual-Motherboard", "parent": "0/0", "type": ""}, {"attributes": {"description": "\"Port Container for port148\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "3a9a0375-920a-5a8d-b153-1423b997ea49"}, "name": "0/0-Ether Port container 148", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port8\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "3ce01f06-a855-54d6-a844-08243cb598f7"}, "name": "0/0-Ether Port container 8", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Pluggable Optical Module Container\"", "empty": "\"true\"", "location": "\"0/0/2\"", "removable": "\"false\""}, "component_uuid": {"uuid": "3e082f30-dedd-56d2-b1a6-4f29e22e31ab"}, "name": "0/0/2-SFP Socket", "parent": "0/0/2-GigabitEthernet0/0/0/2", "type": "idx:PORT"}, {"attributes": {"description": "\"Virtual Processor Module for LCP-XR VM\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "4348896d-fba0-5ef4-afd7-03622b303fbf"}, "name": "0/RP0-Virtual processor for LCP XR", "parent": "0/RP0-CPU Module", "type": "idx:CPU"}, {"attributes": {"description": "\"Port Container for port147\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "43905e27-76ac-57bf-a710-849b3427dc3b"}, "name": "0/0-Ether Port container 147", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port111\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "444587f9-81eb-59ed-b9dd-a1300ac44fd3"}, "name": "0/0-Ether Port container 111", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port83\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "46e65159-4e9f-5ecb-a52f-434098f82a21"}, "name": "0/0-Ether Port container 83", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port35\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "47463ece-9afa-5281-960f-004c964e511e"}, "name": "0/0-Ether Port container 35", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port79\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "4b0a25ac-0de6-55db-befb-be05cab8bace"}, "name": "0/0-Ether Port container 79", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port71\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "4b723eb3-a8ea-57d2-b25a-9ad17c964744"}, "name": "0/0-Ether Port container 71", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port67\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "4c1308bb-2f8b-557c-9df7-b1f864051830"}, "name": "0/0-Ether Port container 67", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port106\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "4d8a7aff-1a89-5f3e-8831-a30e0a59476c"}, "name": "0/0-Ether Port container 106", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port74\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "4ebdd279-2984-5254-92c2-547f483b7eca"}, "name": "0/0-Ether Port container 74", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port176\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "4f07d72a-957b-53a0-a531-45bb261e1faf"}, "name": "0/0-Ether Port container 176", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"N/A\""}, "component_uuid": {"uuid": "4f492379-446f-5d4a-ad34-58dd4a726b7b"}, "name": "0/0/0-Virtual-IDPROM", "parent": "0/0/0-Virtual-Board", "type": ""}, {"attributes": {"description": "\"Port Container for port120\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "514daee1-1607-53e9-bb2e-17f0902dad1e"}, "name": "0/0-Ether Port container 120", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port20\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5390f7dd-bca2-5052-883e-1ffb4dff762b"}, "name": "0/0-Ether Port container 20", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port143\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "54287ae9-d0fa-546f-bb77-c763a569909a"}, "name": "0/0-Ether Port container 143", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port23\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "55b83df7-17bd-5f60-9865-9738e7eccbd2"}, "name": "0/0-Ether Port container 23", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/1\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"N/A\""}, "component_uuid": {"uuid": "55c7239e-eda5-5aac-ae48-dc0b937a3460"}, "name": "0/0/1-Virtual-IDPROM", "parent": "0/0/1-Virtual-Board", "type": ""}, {"attributes": {"description": "\"Port Container for port152\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "566100cd-0d69-5bfe-9999-d33de6642bb8"}, "name": "0/0-Ether Port container 152", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/2\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"N/A\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "57d2aac2-29cb-5c6d-b558-3615e39ddb4c"}, "name": "0/0/2", "parent": "0/0-Ether Port container 2", "type": "idx:FRU"}, {"attributes": {"description": "\"Port Container for port127\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "58f600e4-4bff-5f80-abd6-33f1656ffc31"}, "name": "0/0-Ether Port container 127", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port151\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "59216c84-f2b9-5a3a-94c3-8044a495dfd1"}, "name": "0/0-Ether Port container 151", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port94\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5a833551-3e3a-57ce-859b-c6ba1c2cf82a"}, "name": "0/0-Ether Port container 94", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"IOS XR Software Module\"", "removable": "\"true\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "5ac788b4-f54c-520b-8791-e76e17564a8b"}, "name": "IOSXR-PKG/2 xrv9k-xr-7.8.2", "parent": "", "type": "idx:SOFTWARE_MODULE"}, {"attributes": {"description": "\"Port Container for port5\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5b6d7fed-016b-5bde-8465-8edaa59bb489"}, "name": "0/0-Ether Port container 5", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port166\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5bd41109-5006-5dbb-9096-4072286621ca"}, "name": "0/0-Ether Port container 166", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port62\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5c32e114-595b-50ef-accf-2a8503713ab3"}, "name": "0/0-Ether Port container 62", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port98\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5c65c197-c428-5688-bc92-55e411151106"}, "name": "0/0-Ether Port container 98", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port63\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5c8ccd6b-14dc-5473-b7a8-9d31df8f278b"}, "name": "0/0-Ether Port container 63", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port54\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5d6bddf1-6993-56e1-b618-5af730a3df33"}, "name": "0/0-Ether Port container 54", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port156\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5d90532d-2c42-53cb-a771-f964a06627f9"}, "name": "0/0-Ether Port container 156", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"CPU Module\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5e5645b3-9c85-5000-8fe8-914a90cfc479"}, "name": "0/RP0-CPU Module", "parent": "0/RP0", "type": ""}, {"attributes": {"description": "\"Port Container for port171\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5f03044a-45f0-57b1-b65f-49ace94864f2"}, "name": "0/0-Ether Port container 171", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port100\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5f6eaec2-5cae-5d3a-b556-dcab2c1f0195"}, "name": "0/0-Ether Port container 100", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port158\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "60f5e594-128a-566a-a2d6-ea9eec5c1880"}, "name": "0/0-Ether Port container 158", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port199\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "61b67c82-d59c-5873-ae12-e1237f7ec9a5"}, "name": "0/0-Ether Port container 199", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"IOS XR Operating System\"", "location": "\"0/0/CPU0\"", "removable": "\"true\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "61d4783a-f443-5a78-b28e-15541f9ae7d6"}, "name": "IOSXR-NODE 0/0/CPU0", "parent": "", "type": "idx:OPERATING_SYSTEM"}, {"attributes": {"description": "\"Port Container for port122\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "64ddea0b-8199-53e3-acde-17e73d582e64"}, "name": "0/0-Ether Port container 122", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port40\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "663b3533-f6d2-5add-84cf-e928f5c164ea"}, "name": "0/0-Ether Port container 40", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Route Processor\"", "empty": "\"false\"", "hardware-rev": "\"V01\"", "location": "\"0/RP0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"F7C62C1CA14\""}, "component_uuid": {"uuid": "675a46a7-f8f1-57cb-a6a0-ab6e5cf96606"}, "name": "0/RP0-Virtual-IDPROM", "parent": "0/RP0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port44\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "68ede0a4-330b-56ce-8a0a-05d348c8fa01"}, "name": "0/0-Ether Port container 44", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port29\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "6af25d19-39b5-5d24-af73-72c219f5cab2"}, "name": "0/0-Ether Port container 29", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port113\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "6b9b9ddb-f648-50af-bc36-87f1b3b7e5be"}, "name": "0/0-Ether Port container 113", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port24\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "6cd927d3-d72e-5671-96af-cb4598a338dc"}, "name": "0/0-Ether Port container 24", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port76\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "6d01d6cb-49e3-50d5-ad03-e60bb7b5447a"}, "name": "0/0-Ether Port container 76", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port130\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "6d09a5b2-641f-5af1-bdff-fc91a7c14e87"}, "name": "0/0-Ether Port container 130", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port2\"", "empty": "\"false\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "6d93439c-a295-532b-9016-c16983feb8a7"}, "name": "0/0-Ether Port container 2", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port11\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "6f1ad1aa-944a-5d56-87a4-e0ec518afdac"}, "name": "0/0-Ether Port container 11", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port142\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "6fbcd9ff-5463-5043-8c25-0f7da34702c6"}, "name": "0/0-Ether Port container 142", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Pluggable Optical Module Container\"", "empty": "\"true\"", "location": "\"0/0/1\"", "removable": "\"false\""}, "component_uuid": {"uuid": "70403105-655a-5090-8920-a78423730a9a"}, "name": "0/0/1-SFP Socket", "parent": "0/0/1-GigabitEthernet0/0/0/1", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port13\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7183f850-1932-5bfb-9442-5cd3ca3807ab"}, "name": "0/0-Ether Port container 13", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port149\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "71da0e30-db24-5254-9828-b900b33eeee4"}, "name": "0/0-Ether Port container 149", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port186\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "73f8a372-0751-570e-8293-e28780b26c2e"}, "name": "0/0-Ether Port container 186", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port60\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "761126a1-bda7-54ab-9f8d-016ea25c1442"}, "name": "0/0-Ether Port container 60", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port31\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7641d37e-7348-5d01-99d7-d9b3103d5d2e"}, "name": "0/0-Ether Port container 31", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port97\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "77025781-743c-50cd-a0b2-b77e8e7c3a6c"}, "name": "0/0-Ether Port container 97", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Virtual 1G Module\"", "empty": "\"false\"", "location": "\"0/0/1\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7794a8f1-4a39-5a6e-8c5d-34023c76d724"}, "name": "0/0/1-Virtual-Board", "parent": "0/0/1", "type": ""}, {"attributes": {"description": "\"Port Container for port190\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7907a1e1-bbc1-50f9-8f41-6bd55f1dac47"}, "name": "0/0-Ether Port container 190", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port48\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7a7c893d-4e14-5deb-8780-1df53c5ff5a7"}, "name": "0/0-Ether Port container 48", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port180\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7aaa5afd-062a-5eea-b9ff-193c9a70c750"}, "name": "0/0-Ether Port container 180", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port108\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7ad25dad-1a2a-53a8-aaca-c4eaaae9607e"}, "name": "0/0-Ether Port container 108", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port132\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7ad47cfc-7476-543d-a066-09575e1f41ce"}, "name": "0/0-Ether Port container 132", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port0\"", "empty": "\"false\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7b8c4a0d-cb4a-5374-9b30-c566911272a1"}, "name": "0/0-Ether Port container 0", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port144\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7cee5e2a-2beb-57c0-be9a-0369b4fec227"}, "name": "0/0-Ether Port container 144", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port137\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7f3524e2-9d2d-56b8-99ec-b7ba5be3ac6c"}, "name": "0/0-Ether Port container 137", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port80\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7f5277f6-2fe1-55ed-a148-5b5933bc9b45"}, "name": "0/0-Ether Port container 80", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Route Processor Slot\"", "empty": "\"false\"", "location": "\"Rack 0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "81658fbf-6dc1-51ea-8704-cff95b5edd7d"}, "name": "Rack 0-Route Processor Slot 0", "parent": "Rack 0", "type": ""}, {"attributes": {"description": "\"Port Container for port135\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "825453f6-e65f-576b-b612-a84f57b4cb61"}, "name": "0/0-Ether Port container 135", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port124\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8296011d-a98b-51a2-a1af-96187c4689fd"}, "name": "0/0-Ether Port container 124", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port140\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "83ca7fa2-ff4c-59b1-a8f2-336623b3aaa2"}, "name": "0/0-Ether Port container 140", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/3\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"N/A\""}, "component_uuid": {"uuid": "84cd11a7-fd24-5c83-855b-3bfd53dada52"}, "name": "0/0/3-Virtual-IDPROM", "parent": "0/0/3-Virtual-Board", "type": ""}, {"attributes": {"description": "\"Port Container for port52\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "86f5185d-4cd3-51d7-9061-c7c3d32916c7"}, "name": "0/0-Ether Port container 52", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port154\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "87d3b21b-510a-5cef-a6c1-f5be312382a7"}, "name": "0/0-Ether Port container 154", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port84\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "88059c8a-75de-54d7-9318-075a12cd5012"}, "name": "0/0-Ether Port container 84", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port123\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "89a8b828-7ee9-5a75-bc9f-4b5df9d9a7c6"}, "name": "0/0-Ether Port container 123", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port78\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8cb560eb-0348-5183-8e50-a6bb3c562c8c"}, "name": "0/0-Ether Port container 78", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Virtual Router\"", "empty": "\"false\"", "hardware-rev": "\"V01\"", "location": "\"Rack 0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"812ED7DDDC2\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "8d300ade-0ecf-5fc1-b1a0-1e80b8ea8691"}, "name": "Rack 0", "parent": "", "type": "idx:CHASSIS"}, {"attributes": {"description": "\"IOS XR Operating System\"", "location": "\"0/RP0/CPU0\"", "removable": "\"true\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "8d6d2970-0583-50bd-89df-53c24a6cc5d9"}, "name": "IOSXR-NODE 0/RP0/CPU0", "parent": "", "type": "idx:OPERATING_SYSTEM"}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Route Processor\"", "empty": "\"false\"", "hardware-rev": "\"V01\"", "location": "\"0/RP0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"F7C62C1CA14\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "8e6b7337-2266-51a5-aee2-307204c4ee88"}, "name": "0/RP0", "parent": "Rack 0-Route Processor Slot 0", "type": "idx:CONTROLLER_CARD"}, {"attributes": {"description": "\"Port Container for port103\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8f1b2bf0-b1ee-51f1-a9ec-8e1a24eb520c"}, "name": "0/0-Ether Port container 103", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Ethernet Port One Gig\"", "empty": "\"false\"", "location": "\"0/0/2\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8f9d3de9-47c6-5082-8fe4-277966f427cc"}, "name": "0/0/2-GigabitEthernet0/0/0/2", "parent": "0/0/2-Virtual-Board", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port22\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8ff73c0a-d7ff-5d9f-9963-ef183ad57531"}, "name": "0/0-Ether Port container 22", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port27\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "909b1755-cb00-59ec-a877-f2a98f5188ee"}, "name": "0/0-Ether Port container 27", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port170\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "91f3c2ef-06ea-5e64-9a41-ee9be96086c2"}, "name": "0/0-Ether Port container 170", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port9\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "92d0be00-a24e-5fa6-a10c-be7ff41d50d1"}, "name": "0/0-Ether Port container 9", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port189\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "93a9b2c8-3a2b-560d-a1a9-97face840556"}, "name": "0/0-Ether Port container 189", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port110\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "95b2c98e-06a5-545b-9e07-6a1a9646ae9b"}, "name": "0/0-Ether Port container 110", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Virtual Processor Module for RP-IOS-XR\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "97e20352-ea52-5104-b64a-0c3365d68f43"}, "name": "0/RP0-Virtual processor for RP IOS-XR", "parent": "0/RP0-CPU Module", "type": "idx:CPU"}, {"attributes": {"description": "\"Port Container for port85\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "988e6259-3a4f-5bb1-ab62-0d969b7c364d"}, "name": "0/0-Ether Port container 85", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port6\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "99b9003d-40de-5a8a-9f2a-d6bb1095c628"}, "name": "0/0-Ether Port container 6", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port188\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "9b72c57f-9900-5509-afdc-6cfcc39f23c6"}, "name": "0/0-Ether Port container 188", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port141\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "9c87133b-960a-599e-ab11-d75c16d2d4ac"}, "name": "0/0-Ether Port container 141", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port178\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "9e9a3e11-6936-5b31-8f90-f9285cc027bd"}, "name": "0/0-Ether Port container 178", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port89\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a0fba9ba-02cb-5791-8ab9-71ed6e5d7521"}, "name": "0/0-Ether Port container 89", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Line Card\"", "empty": "\"false\"", "hardware-rev": "\"V01\"", "location": "\"0/0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"8F25A975EA5\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "a193edae-3765-5ead-be53-a8e189a0346a"}, "name": "0/0", "parent": "Rack 0-Line Card Slot 0", "type": "idx:LINECARD"}, {"attributes": {"description": "\"Port Container for port145\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a1f10fb5-2064-52c1-9d67-9566afc49b8c"}, "name": "0/0-Ether Port container 145", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port157\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a3d17968-448c-55d1-933e-0c172e6d0a7b"}, "name": "0/0-Ether Port container 157", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port18\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a509362c-1aa5-5908-961d-8460425afcfd"}, "name": "0/0-Ether Port container 18", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port1\"", "empty": "\"false\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a51798b0-6daa-5f4d-91e0-b1bb14ff71cf"}, "name": "0/0-Ether Port container 1", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port129\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a61f6c73-6eaa-5f0d-b92d-229afdaace4a"}, "name": "0/0-Ether Port container 129", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port72\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a7490e47-f008-52d1-8f66-1116d0ea9832"}, "name": "0/0-Ether Port container 72", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port66\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a77330d3-1c5a-5233-82a6-990ea7e809f4"}, "name": "0/0-Ether Port container 66", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port57\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a9d8aeff-7ac4-5b0f-857c-610878fa2641"}, "name": "0/0-Ether Port container 57", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port136\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "aae035a9-680c-52c5-a387-4a4545723595"}, "name": "0/0-Ether Port container 136", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port32\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ac96522a-f00f-5f30-b902-b73c7f6bf5af"}, "name": "0/0-Ether Port container 32", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port104\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "aca8a3ff-439a-5158-b557-12e85ab9cc81"}, "name": "0/0-Ether Port container 104", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port34\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ae612d09-ddc5-5350-a8f5-28132401c9b1"}, "name": "0/0-Ether Port container 34", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port99\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b1a2209e-9135-57d2-b8a6-0948b5ef7369"}, "name": "0/0-Ether Port container 99", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port195\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b1de7b10-afef-5b2d-b580-c756aaa083f1"}, "name": "0/0-Ether Port container 195", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port116\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b25d53ff-9cf0-5f6d-a02c-0e91c0a3da1f"}, "name": "0/0-Ether Port container 116", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port68\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b286a2d5-c008-5e97-9c68-0bc15e89aeb7"}, "name": "0/0-Ether Port container 68", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Virtual Router\"", "empty": "\"false\"", "hardware-rev": "\"V01\"", "location": "\"Rack 0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"812ED7DDDC2\""}, "component_uuid": {"uuid": "b2e850a5-98b4-5207-88e3-076aa75d193b"}, "name": "Rack 0-Virtual-IDPROM", "parent": "Rack 0-VirtualBackplane", "type": ""}, {"attributes": {"description": "\"Port Container for port155\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b4d9d499-8abd-5fdc-8d9b-80fe6f8261d8"}, "name": "0/0-Ether Port container 155", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port46\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b4e66d42-fe8e-5270-81b1-ad6dbb7a8600"}, "name": "0/0-Ether Port container 46", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"N/A\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "b56eb19c-6018-5ec4-b285-542cd28b280a"}, "name": "0/0/0", "parent": "0/0-Ether Port container 0", "type": "idx:FRU"}, {"attributes": {"description": "\"Port Container for port64\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b5e8d66a-afa3-55ae-83a5-d2fe01f8c9ec"}, "name": "0/0-Ether Port container 64", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/1\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"N/A\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "b7b6199c-10b7-59ba-964e-d02eef374e7d"}, "name": "0/0/1", "parent": "0/0-Ether Port container 1", "type": "idx:FRU"}, {"attributes": {"description": "\"Port Container for port25\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b8563448-8b48-5883-bf73-310d1bb533de"}, "name": "0/0-Ether Port container 25", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Pluggable Optical Module Container\"", "empty": "\"true\"", "location": "\"0/0/3\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b8b8bea5-9863-5599-8b62-1574ff3d3531"}, "name": "0/0/3-SFP Socket", "parent": "0/0/3-GigabitEthernet0/0/0/3", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port131\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b8ba5981-6ba8-5d62-9928-deee9228aa07"}, "name": "0/0-Ether Port container 131", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port49\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b9a80303-9683-59a4-ba93-22d0f41fbd4e"}, "name": "0/0-Ether Port container 49", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Virtual Backplane\"", "empty": "\"false\"", "location": "\"Rack 0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "bc4d2126-2989-5696-a240-3636e23c3894"}, "name": "Rack 0-VirtualBackplane", "parent": "Rack 0", "type": "idx:BACKPLANE"}, {"attributes": {"description": "\"Management Ethernet Port 0\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "bd5d4c07-4487-5f6c-9843-4cf2ff12795c"}, "name": "0/RP0-MgmtEth0/RP0/CPU0/0", "parent": "0/RP0-Virtual-Motherboard", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port161\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "bee99067-ad36-5a10-930a-d416984c0be4"}, "name": "0/0-Ether Port container 161", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port93\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "bf373500-2eb9-5375-b655-334aa892247c"}, "name": "0/0-Ether Port container 93", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"IOS XR Software Module\"", "removable": "\"true\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "c0111de4-4640-5cdd-ab91-e0b903e19508"}, "name": "IOSXR-PKG/1 xrv9k-xr-7.8.2", "parent": "", "type": "idx:SOFTWARE_MODULE"}, {"attributes": {"description": "\"Port Container for port193\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "c166d910-480e-52ce-846f-5ea412a4cf9f"}, "name": "0/0-Ether Port container 193", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port165\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "c2c46d07-64fe-5672-83a7-f3980bcf79b0"}, "name": "0/0-Ether Port container 165", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port167\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "c30eb259-b372-5a59-8e51-4b143cba9265"}, "name": "0/0-Ether Port container 167", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Virtual Processor Module for sysadmin\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "c3e81b13-ac08-5827-bf31-ab7b34f980e0"}, "name": "0/RP0-Virtual processor for sysadmin", "parent": "0/RP0-CPU Module", "type": "idx:CPU"}, {"attributes": {"description": "\"Port Container for port87\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "c418ee2f-09d2-5af5-8724-e5e7b7ec52c6"}, "name": "0/0-Ether Port container 87", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port117\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "c599031f-7dd0-5dd0-9722-c30ec7bc672c"}, "name": "0/0-Ether Port container 117", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port37\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "c7806b23-c804-5546-b83a-396f4c7cdc8b"}, "name": "0/0-Ether Port container 37", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port45\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "c9cd1cf0-23c1-5c9f-97f5-f6ff7bc94e3d"}, "name": "0/0-Ether Port container 45", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/3\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"N/A\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "ca3a1a5c-3fa8-54af-984a-c1ad18b08651"}, "name": "0/0/3", "parent": "0/0-Ether Port container 3", "type": "idx:FRU"}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Virtual 1G Module\"", "empty": "\"false\"", "location": "\"0/0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ca95da37-8ceb-5797-a1dc-89c3237cd3e8"}, "name": "0/0/0-Virtual-Board", "parent": "0/0/0", "type": ""}, {"attributes": {"description": "\"Port Container for port39\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "cbd63a2e-2103-5460-b691-c0644b63698e"}, "name": "0/0-Ether Port container 39", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port134\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "cc1a5079-8b97-5497-ab84-58267141476e"}, "name": "0/0-Ether Port container 134", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port173\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "cd8f1efa-9b7a-553b-a9a2-a0157d5237a4"}, "name": "0/0-Ether Port container 173", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port159\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "cf15cf50-5019-5590-9463-8d2a2d5d7f26"}, "name": "0/0-Ether Port container 159", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port59\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "cfec5022-dc77-5107-8e98-9658a226b79d"}, "name": "0/0-Ether Port container 59", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port92\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d0455472-1718-5512-bc90-4ebc83d9ffda"}, "name": "0/0-Ether Port container 92", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port128\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d21033b9-6c7f-516a-97df-d2ee272c5070"}, "name": "0/0-Ether Port container 128", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port75\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d38e9e22-6319-52dc-9742-88cf18401a72"}, "name": "0/0-Ether Port container 75", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port17\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d408a03c-9692-54b2-a858-db9731249bb2"}, "name": "0/0-Ether Port container 17", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port91\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d426d3c1-e272-5a7e-917c-fa3e404629ee"}, "name": "0/0-Ether Port container 91", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port125\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d4aa3f6d-b78c-5535-b398-3432d9aadf1b"}, "name": "0/0-Ether Port container 125", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/2\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"N/A\""}, "component_uuid": {"uuid": "d501a3de-abc6-548d-a9b7-3c7f744c765b"}, "name": "0/0/2-Virtual-IDPROM", "parent": "0/0/2-Virtual-Board", "type": ""}, {"attributes": {"description": "\"Port Container for port197\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d6a96927-cf28-5fde-bc7f-07c8fcfa0d3f"}, "name": "0/0-Ether Port container 197", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port194\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d8b6cd5b-73aa-5956-bb79-0751e63e63b6"}, "name": "0/0-Ether Port container 194", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port146\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d96a7e15-a3f4-5463-9c74-81202e18829c"}, "name": "0/0-Ether Port container 146", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port82\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "da6d7f32-8410-5e10-9ea0-63a79f4e87d3"}, "name": "0/0-Ether Port container 82", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Ethernet Port One Gig\"", "empty": "\"false\"", "location": "\"0/0/3\"", "removable": "\"false\""}, "component_uuid": {"uuid": "dbba7d5f-284f-56f8-9add-79c5a72711d0"}, "name": "0/0/3-GigabitEthernet0/0/0/3", "parent": "0/0/3-Virtual-Board", "type": "idx:PORT"}, {"attributes": {"description": "\"Ethernet Port One Gig\"", "empty": "\"false\"", "location": "\"0/0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "dc73cbce-216a-51e0-a2d4-57d4fb13f9c6"}, "name": "0/0/0-GigabitEthernet0/0/0/0", "parent": "0/0/0-Virtual-Board", "type": "idx:PORT"}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Line Card\"", "empty": "\"false\"", "hardware-rev": "\"V01\"", "location": "\"0/0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"8F25A975EA5\""}, "component_uuid": {"uuid": "dccbe736-26e9-5d34-895a-c133b1e40a89"}, "name": "0/0-Virtual-IDPROM", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port53\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "dd21c6fe-8320-5118-8b34-91805f53cede"}, "name": "0/0-Ether Port container 53", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port163\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ddb1bbfa-7693-5c09-921d-7fc769ebbe3e"}, "name": "0/0-Ether Port container 163", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port168\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e0f70f54-0dfa-5c8d-ba02-a448874755c8"}, "name": "0/0-Ether Port container 168", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port16\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e2d41955-3736-5da0-aa3b-e36601b769f6"}, "name": "0/0-Ether Port container 16", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port69\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e379df59-9902-5cb0-bb38-7881bdac403a"}, "name": "0/0-Ether Port container 69", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port198\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e3c25632-0c73-5aac-8bdf-30ddf72dca59"}, "name": "0/0-Ether Port container 198", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port191\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e5337ee2-c2ed-5aa0-9c15-3f121647fd00"}, "name": "0/0-Ether Port container 191", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port58\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e53c5ede-0761-5463-ba80-199aa956c1cb"}, "name": "0/0-Ether Port container 58", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port115\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e646c64f-fbc1-5e1e-98e6-5b103e059279"}, "name": "0/0-Ether Port container 115", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port14\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e90e8fcf-a9b9-5eb3-b8d5-fc4b7f6a1dc8"}, "name": "0/0-Ether Port container 14", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port70\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ea1e49b0-faf1-5f62-87ae-51b1748eafc0"}, "name": "0/0-Ether Port container 70", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port28\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "eb85d88d-d850-5d21-8df4-fa8b3df08be6"}, "name": "0/0-Ether Port container 28", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port184\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ebc1ade7-3911-51e6-aaaf-39a7e5b3da64"}, "name": "0/0-Ether Port container 184", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port169\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ec1aa959-d290-5768-bdb3-56c77139c2d8"}, "name": "0/0-Ether Port container 169", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port51\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "eccac0d6-23ba-568f-b9c6-3ab7374568da"}, "name": "0/0-Ether Port container 51", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port55\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "edb7661e-aa72-5962-8f59-eedd69114804"}, "name": "0/0-Ether Port container 55", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port153\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "eef61a37-ee94-55a8-814d-ff2016ac7678"}, "name": "0/0-Ether Port container 153", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port192\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ef5194de-42a4-5420-b8a1-696c2481bba0"}, "name": "0/0-Ether Port container 192", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port77\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "efe9e4de-7c00-5dce-8311-32dce8facbaf"}, "name": "0/0-Ether Port container 77", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port41\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f108847b-f670-5e8b-bbee-8ea3f52a4929"}, "name": "0/0-Ether Port container 41", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port107\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f10eb7a7-9979-5438-ad78-9824dbea9fcd"}, "name": "0/0-Ether Port container 107", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port12\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f122dc73-3335-5ac8-9b59-6ad439c7c82f"}, "name": "0/0-Ether Port container 12", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port15\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f323f16f-e9f5-529a-92f4-79cc13c62c6c"}, "name": "0/0-Ether Port container 15", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port118\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f5c2de76-5be6-57dc-af23-6f8949a1950f"}, "name": "0/0-Ether Port container 118", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port179\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f6ed1885-9c7d-5204-a467-2e22411a4a03"}, "name": "0/0-Ether Port container 179", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port126\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f8324b96-6dde-5cf7-a4d0-a1c6975269e6"}, "name": "0/0-Ether Port container 126", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Virtual RP Motherboard\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f891c341-3448-5f4f-bb04-987c37d6e72b"}, "name": "0/RP0-Virtual-Motherboard", "parent": "0/RP0", "type": ""}, {"attributes": {"description": "\"Port Container for port88\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "fc37c49e-763b-54f0-ad7a-fb80b00309c0"}, "name": "0/0-Ether Port container 88", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port177\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "fce198bf-8e71-5fbf-985f-0cd3ed637477"}, "name": "0/0-Ether Port container 177", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port185\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "fd8cc3f1-50d3-52ca-9594-47bd8fe5148c"}, "name": "0/0-Ether Port container 185", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port121\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "fe709fd1-a72e-5e30-9ffb-6c50e3613b25"}, "name": "0/0-Ether Port container 121", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Line Card Slot\"", "empty": "\"false\"", "location": "\"Rack 0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "fe9296fc-5f18-563f-abe8-2bcea50fde6b"}, "name": "Rack 0-Line Card Slot 0", "parent": "Rack 0", "type": ""}], "controller_id": {}, "device_config": {"config_rules": [{"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/address", "resource_value": "10.95.90.41"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/port", "resource_value": "830"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/settings", "resource_value": "{\"username\": \"cisco\", \"password\": \"cisco12345\", \"vendor\": \"CISCO\", \"force_running\": false, \"hostkey_verify\": false, \"message_renderer\": \"pyangbind\", \"look_for_keys\": false, \"allow_agent\": false, \"commit_per_rule\": true, \"device_params\": {\"name\": \"default\"}, \"manager_params\": {\"timeout\": 120}}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/Rack 0", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Virtual Router\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"Rack 0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"812ED7DDDC2\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:CHASSIS\", \"component-reference\": [1, \"idx:CHASSIS\"], \"name\": \"Rack 0\", \"parent-component-references\": \"\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/Rack 0-Line Card Slot 0", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Line Card Slot\", \"empty\": \"false\", \"location\": \"Rack 0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [2, \"idx:CHASSIS\", \"\"], \"name\": \"Rack 0-Line Card Slot 0\", \"parent-component-references\": \"Rack 0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Line Card\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"0/0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"8F25A975EA5\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:LINECARD\", \"component-reference\": [3, \"\"], \"name\": \"0/0\", \"parent-component-references\": \"Rack 0-Line Card Slot 0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Virtual-Motherboard", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual LC Motherboard\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [4, \"idx:LINECARD\", \"\"], \"name\": \"0/0-Virtual-Motherboard\", \"parent-component-references\": \"0/0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 0", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port0\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 0\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/0", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"N/A\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:FRU\", \"component-reference\": [6, \"\"], \"name\": \"0/0/0\", \"parent-component-references\": \"0/0-Ether Port container 0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/0-Virtual-Board", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual 1G Module\", \"empty\": \"false\", \"location\": \"0/0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [7, \"idx:FRU\", \"\"], \"name\": \"0/0/0-Virtual-Board\", \"parent-component-references\": \"0/0/0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/0-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"N/A\"}, \"class\": \"\", \"component-reference\": [8, \"\"], \"name\": \"0/0/0-Virtual-IDPROM\", \"parent-component-references\": \"0/0/0-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/0-GigabitEthernet0/0/0/0", "resource_value": "{\"attributes\": {\"description\": \"Ethernet Port One Gig\", \"empty\": \"false\", \"location\": \"0/0/0\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [8, \"\"], \"name\": \"0/0/0-GigabitEthernet0/0/0/0\", \"parent-component-references\": \"0/0/0-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/0-SFP Socket", "resource_value": "{\"attributes\": {\"description\": \"Pluggable Optical Module Container\", \"empty\": \"true\", \"location\": \"0/0/0\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [9, \"idx:PORT\"], \"name\": \"0/0/0-SFP Socket\", \"parent-component-references\": \"0/0/0-GigabitEthernet0/0/0/0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 1", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port1\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 1\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/1", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/1\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"N/A\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:FRU\", \"component-reference\": [10, \"\"], \"name\": \"0/0/1\", \"parent-component-references\": \"0/0-Ether Port container 1\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/1-Virtual-Board", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual 1G Module\", \"empty\": \"false\", \"location\": \"0/0/1\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [11, \"idx:FRU\", \"\"], \"name\": \"0/0/1-Virtual-Board\", \"parent-component-references\": \"0/0/1\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/1-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/1\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"N/A\"}, \"class\": \"\", \"component-reference\": [12, \"\"], \"name\": \"0/0/1-Virtual-IDPROM\", \"parent-component-references\": \"0/0/1-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/1-GigabitEthernet0/0/0/1", "resource_value": "{\"attributes\": {\"description\": \"Ethernet Port One Gig\", \"empty\": \"false\", \"location\": \"0/0/1\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [12, \"\"], \"name\": \"0/0/1-GigabitEthernet0/0/0/1\", \"parent-component-references\": \"0/0/1-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/1-SFP Socket", "resource_value": "{\"attributes\": {\"description\": \"Pluggable Optical Module Container\", \"empty\": \"true\", \"location\": \"0/0/1\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [13, \"idx:PORT\"], \"name\": \"0/0/1-SFP Socket\", \"parent-component-references\": \"0/0/1-GigabitEthernet0/0/0/1\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 2", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port2\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 2\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/2", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/2\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"N/A\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:FRU\", \"component-reference\": [14, \"\"], \"name\": \"0/0/2\", \"parent-component-references\": \"0/0-Ether Port container 2\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/2-Virtual-Board", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual 1G Module\", \"empty\": \"false\", \"location\": \"0/0/2\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [15, \"idx:FRU\", \"\"], \"name\": \"0/0/2-Virtual-Board\", \"parent-component-references\": \"0/0/2\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/2-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/2\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"N/A\"}, \"class\": \"\", \"component-reference\": [16, \"\"], \"name\": \"0/0/2-Virtual-IDPROM\", \"parent-component-references\": \"0/0/2-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/2-GigabitEthernet0/0/0/2", "resource_value": "{\"attributes\": {\"description\": \"Ethernet Port One Gig\", \"empty\": \"false\", \"location\": \"0/0/2\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [16, \"\"], \"name\": \"0/0/2-GigabitEthernet0/0/0/2\", \"parent-component-references\": \"0/0/2-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/2-SFP Socket", "resource_value": "{\"attributes\": {\"description\": \"Pluggable Optical Module Container\", \"empty\": \"true\", \"location\": \"0/0/2\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [17, \"idx:PORT\"], \"name\": \"0/0/2-SFP Socket\", \"parent-component-references\": \"0/0/2-GigabitEthernet0/0/0/2\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 3", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port3\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 3\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/3", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/3\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"N/A\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:FRU\", \"component-reference\": [18, \"\"], \"name\": \"0/0/3\", \"parent-component-references\": \"0/0-Ether Port container 3\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/3-Virtual-Board", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual 1G Module\", \"empty\": \"false\", \"location\": \"0/0/3\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [19, \"idx:FRU\", \"\"], \"name\": \"0/0/3-Virtual-Board\", \"parent-component-references\": \"0/0/3\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/3-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/3\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"N/A\"}, \"class\": \"\", \"component-reference\": [20, \"\"], \"name\": \"0/0/3-Virtual-IDPROM\", \"parent-component-references\": \"0/0/3-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/3-GigabitEthernet0/0/0/3", "resource_value": "{\"attributes\": {\"description\": \"Ethernet Port One Gig\", \"empty\": \"false\", \"location\": \"0/0/3\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [20, \"\"], \"name\": \"0/0/3-GigabitEthernet0/0/0/3\", \"parent-component-references\": \"0/0/3-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/3-SFP Socket", "resource_value": "{\"attributes\": {\"description\": \"Pluggable Optical Module Container\", \"empty\": \"true\", \"location\": \"0/0/3\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [21, \"idx:PORT\"], \"name\": \"0/0/3-SFP Socket\", \"parent-component-references\": \"0/0/3-GigabitEthernet0/0/0/3\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 4", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port4\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 4\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 5", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port5\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 5\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 6", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port6\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 6\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 7", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port7\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 7\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 8", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port8\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 8\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 9", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port9\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 9\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 10", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port10\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 10\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 11", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port11\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 11\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 12", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port12\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 12\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 13", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port13\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 13\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 14", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port14\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 14\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 15", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port15\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 15\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 16", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port16\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 16\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 17", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port17\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 17\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 18", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port18\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 18\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 19", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port19\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 19\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 20", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port20\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 20\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 21", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port21\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 21\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 22", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port22\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 22\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 23", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port23\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 23\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 24", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port24\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 24\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 25", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port25\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 25\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 26", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port26\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 26\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 27", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port27\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 27\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 28", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port28\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 28\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 29", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port29\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 29\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 30", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port30\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 30\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 31", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port31\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 31\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 32", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port32\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 32\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 33", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port33\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 33\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 34", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port34\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 34\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 35", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port35\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 35\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 36", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port36\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 36\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 37", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port37\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 37\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 38", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port38\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 38\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 39", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port39\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 39\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 40", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port40\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 40\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 41", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port41\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 41\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 42", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port42\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 42\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 43", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port43\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 43\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 44", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port44\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 44\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 45", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port45\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 45\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 46", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port46\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 46\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 47", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port47\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 47\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 48", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port48\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 48\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 49", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port49\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 49\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 50", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port50\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 50\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 51", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port51\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 51\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 52", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port52\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 52\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 53", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port53\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 53\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 54", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port54\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 54\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 55", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port55\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 55\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 56", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port56\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 56\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 57", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port57\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 57\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 58", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port58\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 58\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 59", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port59\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 59\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 60", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port60\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 60\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 61", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port61\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 61\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 62", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port62\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 62\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 63", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port63\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 63\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 64", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port64\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 64\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 65", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port65\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 65\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 66", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port66\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 66\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 67", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port67\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 67\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 68", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port68\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 68\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 69", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port69\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 69\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 70", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port70\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 70\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 71", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port71\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 71\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 72", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port72\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 72\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 73", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port73\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 73\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 74", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port74\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 74\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 75", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port75\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 75\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 76", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port76\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 76\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 77", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port77\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 77\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 78", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port78\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 78\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 79", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port79\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 79\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 80", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port80\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 80\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 81", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port81\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 81\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 82", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port82\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 82\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 83", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port83\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 83\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 84", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port84\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 84\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 85", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port85\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 85\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 86", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port86\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 86\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 87", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port87\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 87\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 88", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port88\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 88\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 89", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port89\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 89\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 90", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port90\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 90\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 91", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port91\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 91\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 92", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port92\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 92\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 93", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port93\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 93\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 94", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port94\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 94\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 95", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port95\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 95\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 96", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port96\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 96\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 97", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port97\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 97\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 98", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port98\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 98\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 99", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port99\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 99\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 100", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port100\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 100\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 101", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port101\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 101\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 102", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port102\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 102\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 103", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port103\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 103\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 104", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port104\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 104\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 105", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port105\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 105\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 106", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port106\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 106\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 107", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port107\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 107\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 108", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port108\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 108\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 109", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port109\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 109\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 110", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port110\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 110\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 111", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port111\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 111\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 112", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port112\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 112\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 113", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port113\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 113\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 114", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port114\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 114\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 115", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port115\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 115\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 116", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port116\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 116\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 117", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port117\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 117\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 118", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port118\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 118\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 119", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port119\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 119\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 120", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port120\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 120\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 121", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port121\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 121\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 122", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port122\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 122\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 123", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port123\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 123\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 124", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port124\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 124\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 125", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port125\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 125\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 126", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port126\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 126\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 127", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port127\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 127\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 128", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port128\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 128\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 129", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port129\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 129\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 130", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port130\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 130\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 131", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port131\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 131\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 132", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port132\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 132\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 133", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port133\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 133\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 134", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port134\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 134\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 135", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port135\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 135\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 136", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port136\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 136\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 137", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port137\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 137\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 138", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port138\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 138\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 139", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port139\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 139\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 140", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port140\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 140\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 141", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port141\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 141\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 142", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port142\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 142\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 143", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port143\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 143\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 144", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port144\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 144\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 145", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port145\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 145\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 146", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port146\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 146\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 147", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port147\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 147\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 148", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port148\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 148\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 149", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port149\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 149\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 150", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port150\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 150\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 151", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port151\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 151\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 152", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port152\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 152\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 153", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port153\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 153\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 154", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port154\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 154\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 155", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port155\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 155\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 156", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port156\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 156\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 157", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port157\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 157\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 158", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port158\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 158\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 159", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port159\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 159\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 160", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port160\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 160\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 161", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port161\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 161\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 162", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port162\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 162\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 163", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port163\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 163\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 164", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port164\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 164\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 165", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port165\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 165\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 166", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port166\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 166\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 167", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port167\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 167\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 168", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port168\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 168\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 169", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port169\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 169\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 170", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port170\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 170\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 171", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port171\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 171\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 172", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port172\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 172\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 173", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port173\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 173\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 174", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port174\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 174\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 175", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port175\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 175\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 176", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port176\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 176\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 177", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port177\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 177\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 178", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port178\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 178\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 179", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port179\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 179\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 180", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port180\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 180\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 181", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port181\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 181\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 182", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port182\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 182\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 183", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port183\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 183\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 184", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port184\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 184\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 185", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port185\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 185\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 186", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port186\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 186\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 187", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port187\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 187\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 188", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port188\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 188\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 189", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port189\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 189\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 190", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port190\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 190\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 191", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port191\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 191\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 192", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port192\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 192\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 193", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port193\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 193\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 194", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port194\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 194\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 195", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port195\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 195\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 196", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port196\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 196\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 197", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port197\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 197\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 198", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port198\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 198\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 199", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port199\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 199\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Line Card\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"0/0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"8F25A975EA5\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Virtual-IDPROM\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/Rack 0-Route Processor Slot 0", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Route Processor Slot\", \"empty\": \"false\", \"location\": \"Rack 0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [2, \"idx:CHASSIS\", \"\", \"\"], \"name\": \"Rack 0-Route Processor Slot 0\", \"parent-component-references\": \"Rack 0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Route Processor\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"0/RP0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"F7C62C1CA14\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:CONTROLLER_CARD\", \"component-reference\": [22, \"\"], \"name\": \"0/RP0\", \"parent-component-references\": \"Rack 0-Route Processor Slot 0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-Virtual-Motherboard", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual RP Motherboard\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [23, \"idx:CONTROLLER_CARD\", \"\"], \"name\": \"0/RP0-Virtual-Motherboard\", \"parent-component-references\": \"0/RP0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Route Processor\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"0/RP0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"F7C62C1CA14\"}, \"class\": \"\", \"component-reference\": [24, \"\"], \"name\": \"0/RP0-Virtual-IDPROM\", \"parent-component-references\": \"0/RP0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-MgmtEth0/RP0/CPU0/0", "resource_value": "{\"attributes\": {\"description\": \"Management Ethernet Port 0\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [24, \"\"], \"name\": \"0/RP0-MgmtEth0/RP0/CPU0/0\", \"parent-component-references\": \"0/RP0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-CPU Module", "resource_value": "{\"attributes\": {\"description\": \"CPU Module\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [23, \"idx:CONTROLLER_CARD\", \"\", \"\", \"idx:PORT\", \"\"], \"name\": \"0/RP0-CPU Module\", \"parent-component-references\": \"0/RP0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-Intel 8 Core CPU Complex", "resource_value": "{\"attributes\": {\"description\": \"Processor Module\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"idx:CPU\", \"component-reference\": [25, \"\"], \"name\": \"0/RP0-Intel 8 Core CPU Complex\", \"parent-component-references\": \"0/RP0-CPU Module\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-Virtual processor for sysadmin", "resource_value": "{\"attributes\": {\"description\": \"Virtual Processor Module for sysadmin\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"idx:CPU\", \"component-reference\": [25, \"\"], \"name\": \"0/RP0-Virtual processor for sysadmin\", \"parent-component-references\": \"0/RP0-CPU Module\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-Virtual processor for RP IOS-XR", "resource_value": "{\"attributes\": {\"description\": \"Virtual Processor Module for RP-IOS-XR\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"idx:CPU\", \"component-reference\": [25, \"\"], \"name\": \"0/RP0-Virtual processor for RP IOS-XR\", \"parent-component-references\": \"0/RP0-CPU Module\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-Virtual processor for LCP XR", "resource_value": "{\"attributes\": {\"description\": \"Virtual Processor Module for LCP-XR VM\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"idx:CPU\", \"component-reference\": [25, \"\"], \"name\": \"0/RP0-Virtual processor for LCP XR\", \"parent-component-references\": \"0/RP0-CPU Module\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/Rack 0-VirtualBackplane", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Virtual Backplane\", \"empty\": \"false\", \"location\": \"Rack 0\", \"removable\": \"false\"}, \"class\": \"idx:BACKPLANE\", \"component-reference\": [2, \"idx:CHASSIS\", \"\", \"\", \"idx:BACKPLANE\"], \"name\": \"Rack 0-VirtualBackplane\", \"parent-component-references\": \"Rack 0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/Rack 0-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Virtual Router\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"Rack 0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"812ED7DDDC2\"}, \"class\": \"\", \"component-reference\": [26, \"idx:BACKPLANE\"], \"name\": \"Rack 0-Virtual-IDPROM\", \"parent-component-references\": \"Rack 0-VirtualBackplane\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/IOSXR-NODE 0/RP0/CPU0", "resource_value": "{\"attributes\": {\"description\": \"IOS XR Operating System\", \"location\": \"0/RP0/CPU0\", \"removable\": \"true\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:OPERATING_SYSTEM\", \"component-reference\": [1, \"idx:CHASSIS\", \"\", \"idx:LINECARD\", \"\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"idx:CONTROLLER_CARD\", \"\", \"\", \"idx:PORT\", \"\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:BACKPLANE\", \"\", \"idx:OPERATING_SYSTEM\"], \"name\": \"IOSXR-NODE 0/RP0/CPU0\", \"parent-component-references\": \"\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/IOSXR-PKG/1 xrv9k-xr-7.8.2", "resource_value": "{\"attributes\": {\"description\": \"IOS XR Software Module\", \"removable\": \"true\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:SOFTWARE_MODULE\", \"component-reference\": [1, \"idx:CHASSIS\", \"\", \"idx:LINECARD\", \"\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"idx:CONTROLLER_CARD\", \"\", \"\", \"idx:PORT\", \"\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:BACKPLANE\", \"\", \"idx:OPERATING_SYSTEM\", \"idx:SOFTWARE_MODULE\"], \"name\": \"IOSXR-PKG/1 xrv9k-xr-7.8.2\", \"parent-component-references\": \"\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/IOSXR-NODE 0/0/CPU0", "resource_value": "{\"attributes\": {\"description\": \"IOS XR Operating System\", \"location\": \"0/0/CPU0\", \"removable\": \"true\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:OPERATING_SYSTEM\", \"component-reference\": [1, \"idx:CHASSIS\", \"\", \"idx:LINECARD\", \"\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"idx:CONTROLLER_CARD\", \"\", \"\", \"idx:PORT\", \"\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:BACKPLANE\", \"\", \"idx:OPERATING_SYSTEM\", \"idx:SOFTWARE_MODULE\", \"idx:OPERATING_SYSTEM\"], \"name\": \"IOSXR-NODE 0/0/CPU0\", \"parent-component-references\": \"\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/IOSXR-PKG/2 xrv9k-xr-7.8.2", "resource_value": "{\"attributes\": {\"description\": \"IOS XR Software Module\", \"removable\": \"true\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:SOFTWARE_MODULE\", \"component-reference\": [1, \"idx:CHASSIS\", \"\", \"idx:LINECARD\", \"\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"idx:CONTROLLER_CARD\", \"\", \"\", \"idx:PORT\", \"\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:BACKPLANE\", \"\", \"idx:OPERATING_SYSTEM\", \"idx:SOFTWARE_MODULE\", \"idx:OPERATING_SYSTEM\", \"idx:SOFTWARE_MODULE\"], \"name\": \"IOSXR-PKG/2 xrv9k-xr-7.8.2\", \"parent-component-references\": \"\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/0-GigabitEthernet0/0/0/0]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-GigabitEthernet0/0/0/0']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-GigabitEthernet0/0/0/0']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-GigabitEthernet0/0/0/0']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-GigabitEthernet0/0/0/0']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/0-GigabitEthernet0/0/0/0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/0-SFP Socket]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-SFP Socket']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-SFP Socket']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-SFP Socket']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-SFP Socket']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/0-SFP Socket\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/1-GigabitEthernet0/0/0/1]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-GigabitEthernet0/0/0/1']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-GigabitEthernet0/0/0/1']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-GigabitEthernet0/0/0/1']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-GigabitEthernet0/0/0/1']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/1-GigabitEthernet0/0/0/1\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/1-SFP Socket]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-SFP Socket']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-SFP Socket']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-SFP Socket']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-SFP Socket']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/1-SFP Socket\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/2-GigabitEthernet0/0/0/2]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-GigabitEthernet0/0/0/2']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-GigabitEthernet0/0/0/2']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-GigabitEthernet0/0/0/2']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-GigabitEthernet0/0/0/2']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/2-GigabitEthernet0/0/0/2\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/2-SFP Socket]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-SFP Socket']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-SFP Socket']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-SFP Socket']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-SFP Socket']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/2-SFP Socket\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/3-GigabitEthernet0/0/0/3]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-GigabitEthernet0/0/0/3']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-GigabitEthernet0/0/0/3']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-GigabitEthernet0/0/0/3']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-GigabitEthernet0/0/0/3']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/3-GigabitEthernet0/0/0/3\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/3-SFP Socket]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-SFP Socket']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-SFP Socket']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-SFP Socket']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-SFP Socket']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/3-SFP Socket\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/RP0-MgmtEth0/RP0/CPU0/0]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/RP0-MgmtEth0/RP0/CPU0/0']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/RP0-MgmtEth0/RP0/CPU0/0']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/RP0-MgmtEth0/RP0/CPU0/0']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/RP0-MgmtEth0/RP0/CPU0/0']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/RP0-MgmtEth0/RP0/CPU0/0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[MgmtEth0/RP0/CPU0/0]/subinterface[0]", "resource_value": "{\"address_ip\": \"10.95.90.41\", \"address_prefix\": 24, \"index\": 0, \"name\": \"MgmtEth0/RP0/CPU0/0\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[MgmtEth0/RP0/CPU0/0]", "resource_value": "{\"name\": \"MgmtEth0/RP0/CPU0/0\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/0]/subinterface[0]", "resource_value": "{\"address_ip\": \"192.168.12.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"GigabitEthernet0/0/0/0\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/0]", "resource_value": "{\"name\": \"GigabitEthernet0/0/0/0\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/1]/subinterface[0]", "resource_value": "{\"address_ip\": \"192.168.13.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"GigabitEthernet0/0/0/1\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/1]", "resource_value": "{\"name\": \"GigabitEthernet0/0/0/1\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/2]", "resource_value": "{\"name\": \"GigabitEthernet0/0/0/2\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/3]", "resource_value": "{\"name\": \"GigabitEthernet0/0/0/3\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[Null0]", "resource_value": "{\"name\": \"Null0\", \"type\": \"idx:other\"}"}}]}, "device_drivers": ["DEVICEDRIVER_OPENCONFIG"], "device_endpoints": [{"endpoint_id": {"device_id": {"device_uuid": {"uuid": "5bad1790-0856-52e0-b181-fb9f15f3e4a9"}}, "endpoint_uuid": {"uuid": "5380b235-fb6b-5402-8af4-240a393d8d93"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/0-SFP Socket"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "5bad1790-0856-52e0-b181-fb9f15f3e4a9"}}, "endpoint_uuid": {"uuid": "71a80342-b85f-56bc-b07b-4e603babafec"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/RP0-MgmtEth0/RP0/CPU0/0"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "5bad1790-0856-52e0-b181-fb9f15f3e4a9"}}, "endpoint_uuid": {"uuid": "8ba49623-10d1-58fa-83be-1b462b4f0180"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/2-SFP Socket"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "5bad1790-0856-52e0-b181-fb9f15f3e4a9"}}, "endpoint_uuid": {"uuid": "96b350ae-f5f4-53d8-b468-bc5e4049b7e4"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/1-SFP Socket"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "5bad1790-0856-52e0-b181-fb9f15f3e4a9"}}, "endpoint_uuid": {"uuid": "9bd69bb3-d166-52c5-8794-38035bcb0c1d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/2-GigabitEthernet0/0/0/2"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "5bad1790-0856-52e0-b181-fb9f15f3e4a9"}}, "endpoint_uuid": {"uuid": "a3daeed6-eb88-5280-80c8-a39e3816e317"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/0-GigabitEthernet0/0/0/0"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "5bad1790-0856-52e0-b181-fb9f15f3e4a9"}}, "endpoint_uuid": {"uuid": "ac75238f-a265-5d86-9b57-105f77df285a"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/3-SFP Socket"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "5bad1790-0856-52e0-b181-fb9f15f3e4a9"}}, "endpoint_uuid": {"uuid": "b8af194d-3d08-5af4-806c-99c7f791a7bf"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/1-GigabitEthernet0/0/0/1"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "5bad1790-0856-52e0-b181-fb9f15f3e4a9"}}, "endpoint_uuid": {"uuid": "c9caccfa-34b4-57bf-8403-5d77c2926cc2"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/3-GigabitEthernet0/0/0/3"}], "device_id": {"device_uuid": {"uuid": "5bad1790-0856-52e0-b181-fb9f15f3e4a9"}}, "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", "device_type": "packet-router", "name": "1.1.1.1"}
[2024-02-15 11:40:24,682] DEBUG:context.client.ContextClient:GetDevice request: {"device_uuid": {"uuid": "3.3.3.3"}}
[2024-02-15 11:40:24,768] DEBUG:context.client.ContextClient:GetDevice result: {"components": [{"attributes": {"description": "\"Virtual Processor Module for sysadmin\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "00c96646-222f-51e1-a18a-e213a2c70591"}, "name": "0/RP0-Virtual processor for sysadmin", "parent": "0/RP0-CPU Module", "type": "idx:CPU"}, {"attributes": {"description": "\"Port Container for port59\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "015c84cb-0b86-55b8-aae2-6ab08e21845f"}, "name": "0/0-Ether Port container 59", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port4\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "030cbdd6-b43c-5f9c-8022-40a0ed9da784"}, "name": "0/0-Ether Port container 4", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"CPU Module\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "045ef632-b407-5837-a1ca-b7e3eb881d9b"}, "name": "0/RP0-CPU Module", "parent": "0/RP0", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/3\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"N/A\""}, "component_uuid": {"uuid": "04b521bd-b57a-5cf2-b332-de79d3335aa2"}, "name": "0/0/3-Virtual-IDPROM", "parent": "0/0/3-Virtual-Board", "type": ""}, {"attributes": {"description": "\"Port Container for port189\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "060c730f-1e9d-50f5-b077-d3ed1442026c"}, "name": "0/0-Ether Port container 189", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Virtual 1G Module\"", "empty": "\"false\"", "location": "\"0/0/1\"", "removable": "\"false\""}, "component_uuid": {"uuid": "06a7771d-66b3-5ef1-bdc3-475d5eee24ff"}, "name": "0/0/1-Virtual-Board", "parent": "0/0/1", "type": ""}, {"attributes": {"description": "\"Port Container for port152\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "084d4624-2326-5e2c-a17d-9569593ce259"}, "name": "0/0-Ether Port container 152", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Ethernet Port One Gig\"", "empty": "\"false\"", "location": "\"0/0/2\"", "removable": "\"false\""}, "component_uuid": {"uuid": "0b061bfd-3cce-5e9c-9222-73ced684750f"}, "name": "0/0/2-GigabitEthernet0/0/0/2", "parent": "0/0/2-Virtual-Board", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port69\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "0b8db8ee-c252-559a-91d0-93d106592da9"}, "name": "0/0-Ether Port container 69", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port93\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "0be32da0-2185-5130-a92f-934c801fae65"}, "name": "0/0-Ether Port container 93", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/3\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"N/A\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "0dc41378-0c0f-5694-95d2-d0a80731577a"}, "name": "0/0/3", "parent": "0/0-Ether Port container 3", "type": "idx:FRU"}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Virtual Backplane\"", "empty": "\"false\"", "location": "\"Rack 0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "0f1252d5-20ca-523a-88ae-63815e260018"}, "name": "Rack 0-VirtualBackplane", "parent": "Rack 0", "type": "idx:BACKPLANE"}, {"attributes": {"description": "\"Port Container for port131\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "0fbf3fe1-3b3a-5ffe-ad6b-a60a1516b0f5"}, "name": "0/0-Ether Port container 131", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port148\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "102811a5-daf7-5896-85c0-3c0b79861443"}, "name": "0/0-Ether Port container 148", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Management Ethernet Port 0\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "106bb987-7139-50eb-baa1-033a8ef0fe8d"}, "name": "0/RP0-MgmtEth0/RP0/CPU0/0", "parent": "0/RP0-Virtual-Motherboard", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port160\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "109adeb3-2bf5-5c3e-8880-5d48e0c7c370"}, "name": "0/0-Ether Port container 160", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port88\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "12c676c7-21f2-5900-b585-464c22bde39d"}, "name": "0/0-Ether Port container 88", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port163\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "134d3081-d46b-57cf-8dca-6d9e6999b4ba"}, "name": "0/0-Ether Port container 163", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port20\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "1354d3cd-e13d-5d13-b010-473f27dc9964"}, "name": "0/0-Ether Port container 20", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port112\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "1366f94e-7c7e-5e08-8126-b24def0b220a"}, "name": "0/0-Ether Port container 112", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port167\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "16074708-01ca-5fff-b08e-f6ea6a1e39c8"}, "name": "0/0-Ether Port container 167", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port179\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "16e8ea3c-d06d-5e1c-a432-548c7a16a6cc"}, "name": "0/0-Ether Port container 179", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port96\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "17357b8b-8f6d-5256-8bf1-b1aa2106729d"}, "name": "0/0-Ether Port container 96", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port114\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "177539d3-fc71-589c-a738-17ee202a2645"}, "name": "0/0-Ether Port container 114", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port169\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "195de60a-29fb-5be3-81b7-85d2a0f1423b"}, "name": "0/0-Ether Port container 169", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port17\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "19f93b40-06de-5198-a256-0cfcdd5cee9a"}, "name": "0/0-Ether Port container 17", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port137\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "19f9f126-7671-5deb-ab1d-96879be27ae4"}, "name": "0/0-Ether Port container 137", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Pluggable Optical Module Container\"", "empty": "\"true\"", "location": "\"0/0/2\"", "removable": "\"false\""}, "component_uuid": {"uuid": "1a6d8643-2f0b-5c57-b777-ee310b6cb345"}, "name": "0/0/2-SFP Socket", "parent": "0/0/2-GigabitEthernet0/0/0/2", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port12\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "1c352410-fa81-5417-8865-f9baec19002a"}, "name": "0/0-Ether Port container 12", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port147\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "1fb435ca-ff09-5eb4-895f-2591abe2c8ec"}, "name": "0/0-Ether Port container 147", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Route Processor Slot\"", "empty": "\"false\"", "location": "\"Rack 0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "208ac0d5-df1d-5aff-b117-9c63f6de7bd4"}, "name": "Rack 0-Route Processor Slot 0", "parent": "Rack 0", "type": ""}, {"attributes": {"description": "\"Port Container for port199\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2110abe6-c5d8-5305-90c2-efd38fbe9150"}, "name": "0/0-Ether Port container 199", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Virtual Processor Module for RP-IOS-XR\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2195edc3-1889-5fa3-ba0d-fdaadb331e43"}, "name": "0/RP0-Virtual processor for RP IOS-XR", "parent": "0/RP0-CPU Module", "type": "idx:CPU"}, {"attributes": {"description": "\"Port Container for port5\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "22e2264e-e9f1-5f7b-a35a-c81ce8117738"}, "name": "0/0-Ether Port container 5", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port46\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "238f1866-dca9-5900-92b0-b2b038a23b24"}, "name": "0/0-Ether Port container 46", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port194\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2491937f-4811-5d44-bcaf-d67762096d66"}, "name": "0/0-Ether Port container 194", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port39\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "24a1efe5-2f24-5694-8762-f8403230d50a"}, "name": "0/0-Ether Port container 39", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port16\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "25b1abb5-3dd2-5546-8807-cebc5a74eaa8"}, "name": "0/0-Ether Port container 16", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port90\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2849db32-22ac-5f7e-8ec1-f810b1855462"}, "name": "0/0-Ether Port container 90", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port24\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "290c5004-150b-56f9-8ae0-2e312128eafb"}, "name": "0/0-Ether Port container 24", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Virtual RP Motherboard\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2943ea77-3481-55c8-bf93-2a29a3c93951"}, "name": "0/RP0-Virtual-Motherboard", "parent": "0/RP0", "type": ""}, {"attributes": {"description": "\"Port Container for port65\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "298f33f3-7d36-5253-bf57-24b1ab9ce40f"}, "name": "0/0-Ether Port container 65", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port22\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2a971a6f-048b-5da9-abbe-43575b34f25b"}, "name": "0/0-Ether Port container 22", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port182\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2d046372-31c7-5354-b685-a42bd2441d94"}, "name": "0/0-Ether Port container 182", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port61\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2d5f645c-c114-5683-b76a-3282489e2ad1"}, "name": "0/0-Ether Port container 61", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port81\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2d79bccb-3e37-54a2-8081-1e7eb1e12de0"}, "name": "0/0-Ether Port container 81", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port0\"", "empty": "\"false\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2df98a23-a825-5bd3-98ab-9b357f2f95cb"}, "name": "0/0-Ether Port container 0", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port33\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2ebc8fdd-8ea3-597f-a02c-c80df633a9dd"}, "name": "0/0-Ether Port container 33", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Virtual 1G Module\"", "empty": "\"false\"", "location": "\"0/0/2\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2ed657d5-995e-52c4-a15b-03bd8521f667"}, "name": "0/0/2-Virtual-Board", "parent": "0/0/2", "type": ""}, {"attributes": {"description": "\"Port Container for port166\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2f24ea5f-8fa7-5fa4-bb58-e2c625c21b5b"}, "name": "0/0-Ether Port container 166", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port119\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2f7c68c4-8391-52a0-aa3c-e3905299d3a1"}, "name": "0/0-Ether Port container 119", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port193\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "2f829eb6-2219-5fde-8cb3-20f31f4d22e1"}, "name": "0/0-Ether Port container 193", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port103\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "30b34ef7-f817-5c28-9919-63d590b086fe"}, "name": "0/0-Ether Port container 103", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port176\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "31fe4fb2-e890-5faa-a10e-6c81e0fe91fb"}, "name": "0/0-Ether Port container 176", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port64\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "34052e9a-7528-5ba2-ad1a-ee7b8302e55c"}, "name": "0/0-Ether Port container 64", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port21\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "347c9606-579d-5e99-bb9c-c978b0ef4e74"}, "name": "0/0-Ether Port container 21", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port158\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "358a7fe2-c2d0-5e58-9908-d5deb8b6db27"}, "name": "0/0-Ether Port container 158", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port99\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "36560f59-3433-524c-aa67-e04456e93457"}, "name": "0/0-Ether Port container 99", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port191\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "391c4373-cf2b-5120-8abc-ff0eb8429595"}, "name": "0/0-Ether Port container 191", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port174\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "3c98b41d-bfd6-5710-92cd-5da9c65f82d1"}, "name": "0/0-Ether Port container 174", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port82\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "3fe3a614-b9e1-57a1-838f-85fc5af7b842"}, "name": "0/0-Ether Port container 82", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port97\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "40012b8b-8f94-5304-bb41-81d8f1d59c02"}, "name": "0/0-Ether Port container 97", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port71\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "40d2e03c-352b-56d7-b380-aed1c17a84a4"}, "name": "0/0-Ether Port container 71", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port60\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "40dbd39c-fe84-5666-85be-7fa417476938"}, "name": "0/0-Ether Port container 60", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port128\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "41032727-d2b4-5540-a722-3e59481bc24c"}, "name": "0/0-Ether Port container 128", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Ethernet Port One Gig\"", "empty": "\"false\"", "location": "\"0/0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "410ead9b-6f1b-5458-a8cd-2522ade6dc75"}, "name": "0/0/0-GigabitEthernet0/0/0/0", "parent": "0/0/0-Virtual-Board", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port180\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "4207af6d-31f9-53a4-a84b-6b2c82843f15"}, "name": "0/0-Ether Port container 180", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port37\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "46110795-4b33-50eb-83cb-bf8fc3bf04b2"}, "name": "0/0-Ether Port container 37", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/1\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"N/A\""}, "component_uuid": {"uuid": "464781f1-7e18-5e61-9dd4-3f50f84192ab"}, "name": "0/0/1-Virtual-IDPROM", "parent": "0/0/1-Virtual-Board", "type": ""}, {"attributes": {"description": "\"Pluggable Optical Module Container\"", "empty": "\"true\"", "location": "\"0/0/1\"", "removable": "\"false\""}, "component_uuid": {"uuid": "469bc530-cae0-59ef-bbb0-3593fa6279a8"}, "name": "0/0/1-SFP Socket", "parent": "0/0/1-GigabitEthernet0/0/0/1", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port149\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "47948152-1e2c-5c2f-bf9f-3820ad354308"}, "name": "0/0-Ether Port container 149", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port91\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "47fd9211-08c2-5b75-b70b-1d05d73de19c"}, "name": "0/0-Ether Port container 91", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port155\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "48aa81a7-97a6-57db-a3ee-afb4a1bd7352"}, "name": "0/0-Ether Port container 155", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port106\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "49e2fe4d-923c-5403-aeb0-16550e9be71a"}, "name": "0/0-Ether Port container 106", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Pluggable Optical Module Container\"", "empty": "\"true\"", "location": "\"0/0/3\"", "removable": "\"false\""}, "component_uuid": {"uuid": "4adfc0a0-9c09-5d1f-b923-e8db2770763d"}, "name": "0/0/3-SFP Socket", "parent": "0/0/3-GigabitEthernet0/0/0/3", "type": "idx:PORT"}, {"attributes": {"description": "\"IOS XR Software Module\"", "removable": "\"true\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "4b722dc8-c748-5214-99dc-f663663ef159"}, "name": "IOSXR-PKG/1 xrv9k-xr-7.8.2", "parent": "", "type": "idx:SOFTWARE_MODULE"}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"N/A\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "4d956c54-9b6d-5e08-bbd5-2db68c887735"}, "name": "0/0/0", "parent": "0/0-Ether Port container 0", "type": "idx:FRU"}, {"attributes": {"description": "\"Port Container for port28\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "4daec1d7-8f46-585e-b76d-9e9f65d3569f"}, "name": "0/0-Ether Port container 28", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port44\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "4e0e7486-1525-5ca9-bdca-b88e474b64bd"}, "name": "0/0-Ether Port container 44", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port186\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "4f712dd5-c2d3-58fa-875e-3580015763bd"}, "name": "0/0-Ether Port container 186", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port143\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "50c8367b-3e27-5ec2-90ea-8ce85f5f4608"}, "name": "0/0-Ether Port container 143", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port42\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "51c121e7-8de3-5de7-9ab6-93f901347571"}, "name": "0/0-Ether Port container 42", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port144\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "521a8da6-1d34-5acb-add5-ef59ce1031f6"}, "name": "0/0-Ether Port container 144", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port41\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5389b3a0-a2db-5f70-988c-26947658a34d"}, "name": "0/0-Ether Port container 41", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port62\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "545e2e42-6fba-5422-a9b3-7e1d5ddd2db4"}, "name": "0/0-Ether Port container 62", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port177\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "55628926-e40d-5f0b-b574-fb3375f73397"}, "name": "0/0-Ether Port container 177", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port55\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "565ea14f-6c6e-536d-9820-82d411c5118b"}, "name": "0/0-Ether Port container 55", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port52\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "56be443e-dc4b-5179-aa99-68a2c35f4e06"}, "name": "0/0-Ether Port container 52", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port98\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "599b6b22-7a88-571a-bb84-aabb47e7cb1d"}, "name": "0/0-Ether Port container 98", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port135\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5af1cc92-2ca7-5a7c-90fd-0c1a318b8044"}, "name": "0/0-Ether Port container 135", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port43\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5b7324d1-e098-5a68-91b5-a8ff647802ff"}, "name": "0/0-Ether Port container 43", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Virtual Router\"", "empty": "\"false\"", "hardware-rev": "\"V01\"", "location": "\"Rack 0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"6AD5C7BC582\""}, "component_uuid": {"uuid": "5cc75999-6159-511b-9af6-b92e37c6d58b"}, "name": "Rack 0-Virtual-IDPROM", "parent": "Rack 0-VirtualBackplane", "type": ""}, {"attributes": {"description": "\"Port Container for port188\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5f02df0f-aa70-5df1-9c48-ac1fcb69d975"}, "name": "0/0-Ether Port container 188", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Virtual Router\"", "empty": "\"false\"", "hardware-rev": "\"V01\"", "location": "\"Rack 0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"6AD5C7BC582\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "5f152950-5d3e-59d8-98ee-df1a9368ea22"}, "name": "Rack 0", "parent": "", "type": "idx:CHASSIS"}, {"attributes": {"description": "\"Port Container for port72\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "5f36f85f-c539-5341-ba87-e046af770947"}, "name": "0/0-Ether Port container 72", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port134\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "607019ef-3fd5-5626-8b50-330d8ac6afdd"}, "name": "0/0-Ether Port container 134", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port30\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "62a6a527-44bd-58a0-9b9d-1075104f9daa"}, "name": "0/0-Ether Port container 30", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port136\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "6394e873-92ec-5193-8b4d-4a35357d0ffa"}, "name": "0/0-Ether Port container 136", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port178\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "659802a2-5773-520e-9c6b-99c5df6d463b"}, "name": "0/0-Ether Port container 178", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/2\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"N/A\""}, "component_uuid": {"uuid": "66d5f350-95c0-5457-8d1a-9363fb8014b7"}, "name": "0/0/2-Virtual-IDPROM", "parent": "0/0/2-Virtual-Board", "type": ""}, {"attributes": {"description": "\"Port Container for port68\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "68604713-81e5-5699-847f-4ab5646c75d7"}, "name": "0/0-Ether Port container 68", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Line Card\"", "empty": "\"false\"", "hardware-rev": "\"V01\"", "location": "\"0/0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"CDF228DF603\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "6902ea97-125a-5481-91e3-254e97ac2253"}, "name": "0/0", "parent": "Rack 0-Line Card Slot 0", "type": "idx:LINECARD"}, {"attributes": {"description": "\"Port Container for port27\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "69d715f1-72c8-508a-85eb-9edbb3f46e93"}, "name": "0/0-Ether Port container 27", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port141\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "6ba82898-11b0-5db4-a2c5-468a5fba1378"}, "name": "0/0-Ether Port container 141", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port56\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "6df3ab8d-ef72-5542-b48c-13fcb68d9a09"}, "name": "0/0-Ether Port container 56", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port197\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "708c0dfd-eb52-5105-862b-b10b4f416075"}, "name": "0/0-Ether Port container 197", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port170\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "73a0b34d-0c2e-5b3d-9f7d-6a92a951c14b"}, "name": "0/0-Ether Port container 170", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port63\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "73ae354c-4822-52f0-890d-3109d47ae504"}, "name": "0/0-Ether Port container 63", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port32\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7aa17df3-5d42-5c6c-b264-921caeeac838"}, "name": "0/0-Ether Port container 32", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Ethernet Port One Gig\"", "empty": "\"false\"", "location": "\"0/0/3\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7aa1b579-21d2-57b8-ab1a-57a0799d50ee"}, "name": "0/0/3-GigabitEthernet0/0/0/3", "parent": "0/0/3-Virtual-Board", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port171\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7b27e81b-8e69-5470-b2e5-107eba41e598"}, "name": "0/0-Ether Port container 171", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port183\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7beb60d2-df7d-5172-9b81-ba1696e3da0f"}, "name": "0/0-Ether Port container 183", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port185\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7c53fc95-310d-5447-a465-d214a00ed341"}, "name": "0/0-Ether Port container 185", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port108\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7cd0db82-6324-52a2-aa58-f8f561179739"}, "name": "0/0-Ether Port container 108", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port127\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7d5f5740-7f68-5c4d-8ae8-9fbb00523c65"}, "name": "0/0-Ether Port container 127", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port196\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7eef7aad-dc74-5a06-b327-63560c94c11a"}, "name": "0/0-Ether Port container 196", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port195\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "7f32f212-ea03-5d94-a78f-73aec1bd3468"}, "name": "0/0-Ether Port container 195", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Virtual 1G Module\"", "empty": "\"false\"", "location": "\"0/0/3\"", "removable": "\"false\""}, "component_uuid": {"uuid": "80757703-3bf8-50be-bd36-7c68673e1453"}, "name": "0/0/3-Virtual-Board", "parent": "0/0/3", "type": ""}, {"attributes": {"description": "\"Port Container for port190\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "81f4b3a9-cc8f-58f4-86a2-fdf1ae84164c"}, "name": "0/0-Ether Port container 190", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port164\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "83342fff-2557-5ddb-9a80-a1c14ef15768"}, "name": "0/0-Ether Port container 164", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port118\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8386a8d7-e799-583c-b6b1-ec64ee608053"}, "name": "0/0-Ether Port container 118", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port139\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "83d72920-0326-5e70-a7c7-d0d62fd0b115"}, "name": "0/0-Ether Port container 139", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port117\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "850aafdb-67a4-5eda-af55-67d847f781e0"}, "name": "0/0-Ether Port container 117", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port175\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "85927b9f-5f60-5e49-920c-2a70b53e4534"}, "name": "0/0-Ether Port container 175", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port116\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "877935a4-8cd7-50f5-a712-2e85f86d64e4"}, "name": "0/0-Ether Port container 116", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port105\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "87dc4d0a-5f78-5bef-b108-c43cac77f8e3"}, "name": "0/0-Ether Port container 105", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port142\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8a65e988-2a8e-5c01-9f92-9bd91e2a828b"}, "name": "0/0-Ether Port container 142", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port125\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8a7e0f81-2fa1-547a-b23e-fa9e5d683cdd"}, "name": "0/0-Ether Port container 125", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port126\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8ba7b6c3-ddcc-585f-a46c-927d53631d94"}, "name": "0/0-Ether Port container 126", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port18\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8bcdedb2-ca22-5362-90b6-5f23ac120dfb"}, "name": "0/0-Ether Port container 18", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port3\"", "empty": "\"false\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8c2cd342-a913-59a6-90c3-6762059f659e"}, "name": "0/0-Ether Port container 3", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port15\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8d0634be-d05b-5a79-8cbe-614954a0a54e"}, "name": "0/0-Ether Port container 15", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port51\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8ef86ad0-b46c-5209-8ab1-2a49f1dc2b98"}, "name": "0/0-Ether Port container 51", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port23\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8f0b03b2-a722-5209-b953-231c7c520c9d"}, "name": "0/0-Ether Port container 23", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port86\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8fb4fed9-ef80-5faa-8aea-0fd94284fa60"}, "name": "0/0-Ether Port container 86", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port173\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8fd68390-8700-5053-9d2e-17274ee271af"}, "name": "0/0-Ether Port container 173", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port104\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "8fe82fca-5f0a-5c95-a0a8-143171232171"}, "name": "0/0-Ether Port container 104", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port181\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "90241d2f-aa7d-5e37-bfee-f4f94564ee39"}, "name": "0/0-Ether Port container 181", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port184\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "902b6527-f469-5e49-815c-3e861fb9280e"}, "name": "0/0-Ether Port container 184", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port110\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "921a5cd4-ae21-53fb-b919-2f477ee650ef"}, "name": "0/0-Ether Port container 110", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port57\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "9386f941-7c78-56bf-ad6c-ab9e4ced928e"}, "name": "0/0-Ether Port container 57", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port40\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "9484049b-40fb-5a6d-ae62-2759de253f59"}, "name": "0/0-Ether Port container 40", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port54\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "9484cb02-93c7-5017-aa2e-f88c0ba4fac4"}, "name": "0/0-Ether Port container 54", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Route Processor\"", "empty": "\"false\"", "hardware-rev": "\"V01\"", "location": "\"0/RP0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"0E3F48343D5\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "95b78ec2-d1c6-5fdf-9bc3-b1062fcdcf92"}, "name": "0/RP0", "parent": "Rack 0-Route Processor Slot 0", "type": "idx:CONTROLLER_CARD"}, {"attributes": {"description": "\"Pluggable Optical Module Container\"", "empty": "\"true\"", "location": "\"0/0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "98434790-5b27-5edf-abc1-ae50a99e8913"}, "name": "0/0/0-SFP Socket", "parent": "0/0/0-GigabitEthernet0/0/0/0", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port138\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "9ab37a3f-98f9-5ead-9e57-6f21381f3320"}, "name": "0/0-Ether Port container 138", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Route Processor\"", "empty": "\"false\"", "hardware-rev": "\"V01\"", "location": "\"0/RP0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"0E3F48343D5\""}, "component_uuid": {"uuid": "9ae4c807-1e3c-5743-bb24-663df88dc915"}, "name": "0/RP0-Virtual-IDPROM", "parent": "0/RP0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port129\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "9bd2c24f-7a45-51c6-9983-68a736417b78"}, "name": "0/0-Ether Port container 129", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port121\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a146653e-9886-5f37-b856-d3c77cdb7ead"}, "name": "0/0-Ether Port container 121", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port92\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a1d3b930-cf0a-5f61-a838-fe2473594cd7"}, "name": "0/0-Ether Port container 92", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port123\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a34dc1ca-a18f-5394-a865-e620630734e6"}, "name": "0/0-Ether Port container 123", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port45\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a350884e-2d5b-5785-9a64-f0bc968f8148"}, "name": "0/0-Ether Port container 45", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port13\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a4feccdc-5a92-537b-8545-0b40367ca7f3"}, "name": "0/0-Ether Port container 13", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port101\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a67aaebc-ec6d-5fb9-81bf-aab97880d058"}, "name": "0/0-Ether Port container 101", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"IOS XR Operating System\"", "location": "\"0/RP0/CPU0\"", "removable": "\"true\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "a6874124-53b1-5f8f-b3bd-e597dbdbee05"}, "name": "IOSXR-NODE 0/RP0/CPU0", "parent": "", "type": "idx:OPERATING_SYSTEM"}, {"attributes": {"description": "\"Port Container for port124\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a6a98810-af79-507c-94e5-5065639c1018"}, "name": "0/0-Ether Port container 124", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port111\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a6fad638-ea7e-553c-996d-d1fe5040ff87"}, "name": "0/0-Ether Port container 111", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port6\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a7d7dcb3-eaf4-57bc-aeb0-b96c96ad210a"}, "name": "0/0-Ether Port container 6", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port162\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a81f9ca9-a3c0-5a65-8d77-052ab4313deb"}, "name": "0/0-Ether Port container 162", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port132\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a8d6f3c0-ca5f-5ffa-b9b4-520e56d4b58c"}, "name": "0/0-Ether Port container 132", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port70\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a8dd792a-aee4-5652-b347-ef03e3ecf58a"}, "name": "0/0-Ether Port container 70", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Virtual LC Motherboard\"", "empty": "\"false\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "a9413ad4-9938-52be-a8a4-45898f342b3f"}, "name": "0/0-Virtual-Motherboard", "parent": "0/0", "type": ""}, {"attributes": {"description": "\"Port Container for port154\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ab6b3fc0-23b9-534d-bc9e-9474100769a3"}, "name": "0/0-Ether Port container 154", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Processor Module\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "abc83304-cdb0-57a8-a61d-93a873d9dc5a"}, "name": "0/RP0-Intel 8 Core CPU Complex", "parent": "0/RP0-CPU Module", "type": "idx:CPU"}, {"attributes": {"description": "\"Port Container for port157\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "acd57ac4-206e-58cf-ac4a-c33474d86dd6"}, "name": "0/0-Ether Port container 157", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port38\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ae3904c8-18fa-5797-889f-3856107efb24"}, "name": "0/0-Ether Port container 38", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port94\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b0d7f7da-dbf3-50c7-81e8-73b50cb8290e"}, "name": "0/0-Ether Port container 94", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port102\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b0e84965-fab8-5f56-b798-9c2efb4875ad"}, "name": "0/0-Ether Port container 102", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port19\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b10b3727-0c62-5ff7-bf3e-75bdee8f36e5"}, "name": "0/0-Ether Port container 19", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port140\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b122b85c-a427-5d8d-ae70-9eafe76fb9d0"}, "name": "0/0-Ether Port container 140", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Ethernet Port One Gig\"", "empty": "\"false\"", "location": "\"0/0/1\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b1b290b6-0d61-5b77-996a-06dede87f6b3"}, "name": "0/0/1-GigabitEthernet0/0/0/1", "parent": "0/0/1-Virtual-Board", "type": "idx:PORT"}, {"attributes": {"description": "\"Port Container for port130\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b28a55e9-ccad-5475-87fe-8a1224ea082b"}, "name": "0/0-Ether Port container 130", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port75\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b2b0ff42-d47a-5b1b-a2a6-da49d293c049"}, "name": "0/0-Ether Port container 75", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Centralized Line Card\"", "empty": "\"false\"", "hardware-rev": "\"V01\"", "location": "\"0/0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"CDF228DF603\""}, "component_uuid": {"uuid": "b2b86442-e898-5f73-90e1-5b4366a3c113"}, "name": "0/0-Virtual-IDPROM", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port133\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b430240c-a364-50de-a95e-2913687a346e"}, "name": "0/0-Ether Port container 133", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port73\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b47af5fd-2d22-52ea-9408-d192d9e2bc80"}, "name": "0/0-Ether Port container 73", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port122\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b4c65976-1c72-51ad-976f-599d10ecfd2c"}, "name": "0/0-Ether Port container 122", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port47\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b592a770-41f3-55eb-969b-906def427d6e"}, "name": "0/0-Ether Port container 47", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port49\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "b8dc5ecf-4300-5260-bb3e-0159ff6b8d37"}, "name": "0/0-Ether Port container 49", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port78\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "bab7e9f9-6b51-5f04-8a87-97a40d416a38"}, "name": "0/0-Ether Port container 78", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port74\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "bc8c0008-0460-5939-927e-37a1b7e03c74"}, "name": "0/0-Ether Port container 74", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port67\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "bf311285-ca4a-54b6-9865-7b1a96cf72b5"}, "name": "0/0-Ether Port container 67", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port14\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "c4b1b6f2-6483-5ce9-b33a-ee545e581377"}, "name": "0/0-Ether Port container 14", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port80\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "c67131a4-3971-501e-b86f-1060e5ff3579"}, "name": "0/0-Ether Port container 80", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port53\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "c6887c74-4ab7-5a8b-99f7-2694f0e2674d"}, "name": "0/0-Ether Port container 53", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port36\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "c700e34b-6248-5f60-9f91-10073ee0255f"}, "name": "0/0-Ether Port container 36", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/1\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"N/A\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "ca27d78a-69cc-52ba-850f-df75c2d98265"}, "name": "0/0/1", "parent": "0/0-Ether Port container 1", "type": "idx:FRU"}, {"attributes": {"description": "\"Port Container for port26\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "cb5afd7e-6198-5e66-b920-975c9237dfb4"}, "name": "0/0-Ether Port container 26", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port113\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "cd9f75e6-559c-5498-bfb6-7c837246c2fd"}, "name": "0/0-Ether Port container 113", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port161\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ce045559-f139-5246-8b8b-c3558cf04b70"}, "name": "0/0-Ether Port container 161", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port7\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ce4b5bb6-1648-5d3e-8703-45a5942acc4c"}, "name": "0/0-Ether Port container 7", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port192\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "cf64987c-68b8-55a6-9a4a-38882a621466"}, "name": "0/0-Ether Port container 192", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port198\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "cfb156dc-67c6-5554-ba88-d60f09f8a91d"}, "name": "0/0-Ether Port container 198", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port165\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d00dfdca-f306-506e-b837-1adb71f2fd35"}, "name": "0/0-Ether Port container 165", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port8\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d365cc26-ec13-52f4-b6f3-4d5b59c9c301"}, "name": "0/0-Ether Port container 8", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Virtual 1G Module\"", "empty": "\"false\"", "location": "\"0/0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d60a4bfa-957b-5cf4-a227-a5d63cd8b7ed"}, "name": "0/0/0-Virtual-Board", "parent": "0/0/0", "type": ""}, {"attributes": {"description": "\"Port Container for port66\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d65b7e48-c3ca-5e8e-9981-9eee67551078"}, "name": "0/0-Ether Port container 66", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port84\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d6aa9ea2-198e-5fe3-b5f7-b534c7c13547"}, "name": "0/0-Ether Port container 84", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port150\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d814264d-b4a6-5b26-a1f6-d055008a180f"}, "name": "0/0-Ether Port container 150", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port146\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d89337b2-8d6a-5859-8152-11f2220c40a7"}, "name": "0/0-Ether Port container 146", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Virtual Processor Module for LCP-XR VM\"", "empty": "\"false\"", "location": "\"0/RP0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "d895a81b-07c0-50bc-84ca-b5fa571912c1"}, "name": "0/RP0-Virtual processor for LCP XR", "parent": "0/RP0-CPU Module", "type": "idx:CPU"}, {"attributes": {"description": "\"Port Container for port25\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "da025a08-4c57-529e-9d27-43d96942739f"}, "name": "0/0-Ether Port container 25", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port151\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "db7eaa52-2ec6-5874-bdb9-380047706bdd"}, "name": "0/0-Ether Port container 151", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port83\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "dc70f022-c9d4-5b49-bbb2-ef3b834f5b88"}, "name": "0/0-Ether Port container 83", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port77\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "df25da22-21a3-5e57-9a82-13e28f1253ce"}, "name": "0/0-Ether Port container 77", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port95\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "df59c97e-88db-5d88-b55c-b75a731b6fc0"}, "name": "0/0-Ether Port container 95", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port172\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e099f374-5b65-51c7-9f10-b31bd437a579"}, "name": "0/0-Ether Port container 172", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port9\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e1478e3d-60aa-598d-952e-0c66982a6eb1"}, "name": "0/0-Ether Port container 9", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port187\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e1d903cb-da3f-5254-ac98-f072a0d917af"}, "name": "0/0-Ether Port container 187", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port107\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e2cf83f8-a3d8-55b7-bbeb-82f7ed163c9a"}, "name": "0/0-Ether Port container 107", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port50\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e2f3161b-7ac8-5e60-9b7f-e93348a1aa65"}, "name": "0/0-Ether Port container 50", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port48\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e3339c48-5ece-53ce-81bc-c8d93b40c28b"}, "name": "0/0-Ether Port container 48", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port31\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e3e58a63-9477-5630-89fa-2299741db1c6"}, "name": "0/0-Ether Port container 31", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port159\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e502e53d-1be1-5fa9-9fbb-bab70925f7c5"}, "name": "0/0-Ether Port container 159", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"IOS XR Operating System\"", "location": "\"0/0/CPU0\"", "removable": "\"true\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "e6ca7234-7c52-57ec-b6d1-b03da133fae5"}, "name": "IOSXR-NODE 0/0/CPU0", "parent": "", "type": "idx:OPERATING_SYSTEM"}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/2\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"true\"", "serial-num": "\"N/A\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "e70395f9-d5a0-5106-8ee9-08e834d685f3"}, "name": "0/0/2", "parent": "0/0-Ether Port container 2", "type": "idx:FRU"}, {"attributes": {"description": "\"N/A\"", "empty": "\"false\"", "hardware-rev": "\"N/A\"", "location": "\"0/0/0\"", "manufacturer-name": "\"CISCO SYSTEMS, INC\"", "removable": "\"false\"", "serial-num": "\"N/A\""}, "component_uuid": {"uuid": "e716955c-5c41-5d52-a8b0-c6ba9b6d89c1"}, "name": "0/0/0-Virtual-IDPROM", "parent": "0/0/0-Virtual-Board", "type": ""}, {"attributes": {"description": "\"Port Container for port87\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e82c0b1d-6451-5167-ac78-eb3762700acf"}, "name": "0/0-Ether Port container 87", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port145\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e89a4cf5-31ad-5e49-9199-956359f28cda"}, "name": "0/0-Ether Port container 145", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port29\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e8d1e794-530e-50b2-8f6f-824d8ad2b14d"}, "name": "0/0-Ether Port container 29", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port156\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "e94b0f1a-99ac-5c08-8faa-e368fe061384"}, "name": "0/0-Ether Port container 156", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Cisco IOS-XRv 9000 Line Card Slot\"", "empty": "\"false\"", "location": "\"Rack 0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "eba02a80-782d-551d-9c92-177b4b4c8612"}, "name": "Rack 0-Line Card Slot 0", "parent": "Rack 0", "type": ""}, {"attributes": {"description": "\"Port Container for port34\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "ee3a44ca-2a4a-56c5-a20c-087f55b7a788"}, "name": "0/0-Ether Port container 34", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port2\"", "empty": "\"false\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "eed47761-d388-5902-b685-501fc4728252"}, "name": "0/0-Ether Port container 2", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port1\"", "empty": "\"false\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "efa4fb4b-93ab-5a4a-81d7-a1926e23ca47"}, "name": "0/0-Ether Port container 1", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port120\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "efaf19cb-b060-560a-a316-408d354edd2a"}, "name": "0/0-Ether Port container 120", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port153\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f07a97fa-ec56-50b9-910d-3ac15ef43b35"}, "name": "0/0-Ether Port container 153", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port11\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f0eec4c5-ff40-560d-aebb-0f4a2cfbee7d"}, "name": "0/0-Ether Port container 11", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port100\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f0f3ff6c-95f8-58d7-aad3-0c2b1a6ae20b"}, "name": "0/0-Ether Port container 100", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port79\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f13eab0d-efe7-5474-8da2-ee29ebe821e6"}, "name": "0/0-Ether Port container 79", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port109\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f5e43e0c-fe21-5fde-b7a1-e1cfe5a9911f"}, "name": "0/0-Ether Port container 109", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port115\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f720071b-59bb-505b-93e6-946975130540"}, "name": "0/0-Ether Port container 115", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port35\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f750feed-cad5-5b24-b624-b465789e6724"}, "name": "0/0-Ether Port container 35", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port10\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f822aa7a-8b4e-58b2-b327-0364be92556f"}, "name": "0/0-Ether Port container 10", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port168\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f83e18a3-ad96-5426-9fb6-9cc6f394c9b4"}, "name": "0/0-Ether Port container 168", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port58\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "f9581772-2ee8-5081-b83a-f81eab0ecbef"}, "name": "0/0-Ether Port container 58", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"IOS XR Software Module\"", "removable": "\"true\"", "software-rev": "\"7.8.2\""}, "component_uuid": {"uuid": "fbdd0412-3c04-5aa4-a1c5-b92b0648f2b3"}, "name": "IOSXR-PKG/2 xrv9k-xr-7.8.2", "parent": "", "type": "idx:SOFTWARE_MODULE"}, {"attributes": {"description": "\"Port Container for port76\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "fc471708-86cb-5b80-981b-68b255a47a2d"}, "name": "0/0-Ether Port container 76", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port89\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "fe628038-841a-5b26-81c5-da0a601123ba"}, "name": "0/0-Ether Port container 89", "parent": "0/0-Virtual-Motherboard", "type": ""}, {"attributes": {"description": "\"Port Container for port85\"", "empty": "\"true\"", "location": "\"0/0\"", "removable": "\"false\""}, "component_uuid": {"uuid": "fe852c92-abbd-585f-9d79-69070721e646"}, "name": "0/0-Ether Port container 85", "parent": "0/0-Virtual-Motherboard", "type": ""}], "controller_id": {}, "device_config": {"config_rules": [{"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/address", "resource_value": "10.95.90.43"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/port", "resource_value": "830"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "_connect/settings", "resource_value": "{\"username\": \"cisco\", \"password\": \"cisco12345\", \"vendor\": \"CISCO\", \"force_running\": false, \"hostkey_verify\": false, \"message_renderer\": \"pyangbind\", \"look_for_keys\": false, \"allow_agent\": false, \"commit_per_rule\": true, \"device_params\": {\"name\": \"default\"}, \"manager_params\": {\"timeout\": 120}}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/Rack 0", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Virtual Router\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"Rack 0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"6AD5C7BC582\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:CHASSIS\", \"component-reference\": [1, \"idx:CHASSIS\"], \"name\": \"Rack 0\", \"parent-component-references\": \"\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/Rack 0-Line Card Slot 0", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Line Card Slot\", \"empty\": \"false\", \"location\": \"Rack 0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [2, \"idx:CHASSIS\", \"\"], \"name\": \"Rack 0-Line Card Slot 0\", \"parent-component-references\": \"Rack 0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Line Card\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"0/0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"CDF228DF603\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:LINECARD\", \"component-reference\": [3, \"\"], \"name\": \"0/0\", \"parent-component-references\": \"Rack 0-Line Card Slot 0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Virtual-Motherboard", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual LC Motherboard\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [4, \"idx:LINECARD\", \"\"], \"name\": \"0/0-Virtual-Motherboard\", \"parent-component-references\": \"0/0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 0", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port0\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 0\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/0", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"N/A\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:FRU\", \"component-reference\": [6, \"\"], \"name\": \"0/0/0\", \"parent-component-references\": \"0/0-Ether Port container 0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/0-Virtual-Board", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual 1G Module\", \"empty\": \"false\", \"location\": \"0/0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [7, \"idx:FRU\", \"\"], \"name\": \"0/0/0-Virtual-Board\", \"parent-component-references\": \"0/0/0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/0-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"N/A\"}, \"class\": \"\", \"component-reference\": [8, \"\"], \"name\": \"0/0/0-Virtual-IDPROM\", \"parent-component-references\": \"0/0/0-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/0-GigabitEthernet0/0/0/0", "resource_value": "{\"attributes\": {\"description\": \"Ethernet Port One Gig\", \"empty\": \"false\", \"location\": \"0/0/0\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [8, \"\"], \"name\": \"0/0/0-GigabitEthernet0/0/0/0\", \"parent-component-references\": \"0/0/0-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/0-SFP Socket", "resource_value": "{\"attributes\": {\"description\": \"Pluggable Optical Module Container\", \"empty\": \"true\", \"location\": \"0/0/0\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [9, \"idx:PORT\"], \"name\": \"0/0/0-SFP Socket\", \"parent-component-references\": \"0/0/0-GigabitEthernet0/0/0/0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 1", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port1\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 1\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/1", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/1\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"N/A\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:FRU\", \"component-reference\": [10, \"\"], \"name\": \"0/0/1\", \"parent-component-references\": \"0/0-Ether Port container 1\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/1-Virtual-Board", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual 1G Module\", \"empty\": \"false\", \"location\": \"0/0/1\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [11, \"idx:FRU\", \"\"], \"name\": \"0/0/1-Virtual-Board\", \"parent-component-references\": \"0/0/1\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/1-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/1\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"N/A\"}, \"class\": \"\", \"component-reference\": [12, \"\"], \"name\": \"0/0/1-Virtual-IDPROM\", \"parent-component-references\": \"0/0/1-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/1-GigabitEthernet0/0/0/1", "resource_value": "{\"attributes\": {\"description\": \"Ethernet Port One Gig\", \"empty\": \"false\", \"location\": \"0/0/1\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [12, \"\"], \"name\": \"0/0/1-GigabitEthernet0/0/0/1\", \"parent-component-references\": \"0/0/1-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/1-SFP Socket", "resource_value": "{\"attributes\": {\"description\": \"Pluggable Optical Module Container\", \"empty\": \"true\", \"location\": \"0/0/1\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [13, \"idx:PORT\"], \"name\": \"0/0/1-SFP Socket\", \"parent-component-references\": \"0/0/1-GigabitEthernet0/0/0/1\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 2", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port2\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 2\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/2", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/2\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"N/A\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:FRU\", \"component-reference\": [14, \"\"], \"name\": \"0/0/2\", \"parent-component-references\": \"0/0-Ether Port container 2\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/2-Virtual-Board", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual 1G Module\", \"empty\": \"false\", \"location\": \"0/0/2\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [15, \"idx:FRU\", \"\"], \"name\": \"0/0/2-Virtual-Board\", \"parent-component-references\": \"0/0/2\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/2-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/2\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"N/A\"}, \"class\": \"\", \"component-reference\": [16, \"\"], \"name\": \"0/0/2-Virtual-IDPROM\", \"parent-component-references\": \"0/0/2-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/2-GigabitEthernet0/0/0/2", "resource_value": "{\"attributes\": {\"description\": \"Ethernet Port One Gig\", \"empty\": \"false\", \"location\": \"0/0/2\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [16, \"\"], \"name\": \"0/0/2-GigabitEthernet0/0/0/2\", \"parent-component-references\": \"0/0/2-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/2-SFP Socket", "resource_value": "{\"attributes\": {\"description\": \"Pluggable Optical Module Container\", \"empty\": \"true\", \"location\": \"0/0/2\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [17, \"idx:PORT\"], \"name\": \"0/0/2-SFP Socket\", \"parent-component-references\": \"0/0/2-GigabitEthernet0/0/0/2\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 3", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port3\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 3\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/3", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/3\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"N/A\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:FRU\", \"component-reference\": [18, \"\"], \"name\": \"0/0/3\", \"parent-component-references\": \"0/0-Ether Port container 3\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/3-Virtual-Board", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual 1G Module\", \"empty\": \"false\", \"location\": \"0/0/3\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [19, \"idx:FRU\", \"\"], \"name\": \"0/0/3-Virtual-Board\", \"parent-component-references\": \"0/0/3\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/3-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/3\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"N/A\"}, \"class\": \"\", \"component-reference\": [20, \"\"], \"name\": \"0/0/3-Virtual-IDPROM\", \"parent-component-references\": \"0/0/3-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/3-GigabitEthernet0/0/0/3", "resource_value": "{\"attributes\": {\"description\": \"Ethernet Port One Gig\", \"empty\": \"false\", \"location\": \"0/0/3\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [20, \"\"], \"name\": \"0/0/3-GigabitEthernet0/0/0/3\", \"parent-component-references\": \"0/0/3-Virtual-Board\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0/3-SFP Socket", "resource_value": "{\"attributes\": {\"description\": \"Pluggable Optical Module Container\", \"empty\": \"true\", \"location\": \"0/0/3\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [21, \"idx:PORT\"], \"name\": \"0/0/3-SFP Socket\", \"parent-component-references\": \"0/0/3-GigabitEthernet0/0/0/3\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 4", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port4\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 4\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 5", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port5\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 5\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 6", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port6\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 6\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 7", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port7\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 7\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 8", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port8\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 8\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 9", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port9\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 9\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 10", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port10\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 10\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 11", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port11\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 11\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 12", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port12\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 12\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 13", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port13\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 13\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 14", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port14\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 14\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 15", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port15\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 15\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 16", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port16\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 16\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 17", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port17\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 17\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 18", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port18\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 18\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 19", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port19\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 19\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 20", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port20\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 20\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 21", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port21\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 21\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 22", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port22\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 22\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 23", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port23\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 23\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 24", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port24\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 24\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 25", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port25\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 25\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 26", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port26\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 26\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 27", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port27\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 27\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 28", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port28\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 28\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 29", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port29\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 29\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 30", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port30\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 30\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 31", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port31\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 31\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 32", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port32\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 32\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 33", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port33\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 33\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 34", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port34\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 34\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 35", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port35\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 35\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 36", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port36\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 36\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 37", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port37\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 37\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 38", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port38\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 38\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 39", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port39\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 39\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 40", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port40\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 40\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 41", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port41\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 41\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 42", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port42\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 42\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 43", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port43\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 43\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 44", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port44\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 44\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 45", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port45\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 45\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 46", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port46\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 46\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 47", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port47\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 47\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 48", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port48\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 48\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 49", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port49\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 49\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 50", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port50\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 50\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 51", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port51\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 51\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 52", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port52\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 52\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 53", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port53\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 53\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 54", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port54\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 54\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 55", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port55\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 55\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 56", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port56\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 56\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 57", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port57\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 57\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 58", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port58\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 58\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 59", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port59\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 59\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 60", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port60\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 60\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 61", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port61\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 61\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 62", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port62\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 62\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 63", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port63\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 63\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 64", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port64\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 64\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 65", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port65\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 65\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 66", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port66\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 66\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 67", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port67\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 67\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 68", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port68\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 68\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 69", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port69\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 69\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 70", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port70\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 70\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 71", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port71\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 71\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 72", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port72\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 72\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 73", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port73\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 73\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 74", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port74\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 74\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 75", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port75\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 75\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 76", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port76\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 76\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 77", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port77\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 77\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 78", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port78\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 78\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 79", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port79\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 79\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 80", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port80\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 80\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 81", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port81\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 81\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 82", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port82\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 82\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 83", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port83\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 83\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 84", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port84\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 84\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 85", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port85\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 85\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 86", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port86\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 86\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 87", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port87\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 87\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 88", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port88\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 88\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 89", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port89\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 89\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 90", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port90\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 90\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 91", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port91\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 91\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 92", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port92\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 92\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 93", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port93\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 93\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 94", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port94\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 94\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 95", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port95\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 95\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 96", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port96\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 96\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 97", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port97\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 97\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 98", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port98\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 98\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 99", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port99\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 99\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 100", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port100\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 100\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 101", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port101\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 101\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 102", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port102\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 102\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 103", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port103\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 103\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 104", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port104\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 104\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 105", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port105\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 105\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 106", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port106\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 106\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 107", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port107\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 107\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 108", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port108\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 108\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 109", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port109\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 109\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 110", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port110\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 110\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 111", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port111\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 111\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 112", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port112\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 112\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 113", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port113\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 113\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 114", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port114\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 114\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 115", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port115\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 115\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 116", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port116\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 116\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 117", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port117\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 117\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 118", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port118\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 118\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 119", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port119\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 119\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 120", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port120\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 120\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 121", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port121\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 121\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 122", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port122\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 122\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 123", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port123\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 123\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 124", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port124\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 124\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 125", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port125\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 125\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 126", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port126\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 126\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 127", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port127\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 127\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 128", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port128\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 128\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 129", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port129\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 129\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 130", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port130\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 130\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 131", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port131\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 131\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 132", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port132\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 132\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 133", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port133\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 133\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 134", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port134\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 134\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 135", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port135\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 135\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 136", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port136\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 136\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 137", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port137\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 137\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 138", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port138\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 138\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 139", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port139\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 139\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 140", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port140\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 140\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 141", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port141\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 141\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 142", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port142\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 142\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 143", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port143\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 143\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 144", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port144\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 144\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 145", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port145\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 145\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 146", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port146\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 146\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 147", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port147\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 147\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 148", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port148\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 148\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 149", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port149\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 149\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 150", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port150\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 150\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 151", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port151\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 151\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 152", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port152\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 152\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 153", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port153\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 153\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 154", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port154\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 154\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 155", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port155\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 155\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 156", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port156\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 156\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 157", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port157\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 157\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 158", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port158\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 158\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 159", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port159\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 159\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 160", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port160\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 160\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 161", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port161\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 161\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 162", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port162\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 162\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 163", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port163\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 163\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 164", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port164\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 164\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 165", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port165\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 165\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 166", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port166\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 166\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 167", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port167\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 167\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 168", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port168\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 168\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 169", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port169\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 169\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 170", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port170\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 170\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 171", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port171\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 171\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 172", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port172\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 172\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 173", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port173\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 173\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 174", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port174\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 174\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 175", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port175\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 175\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 176", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port176\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 176\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 177", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port177\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 177\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 178", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port178\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 178\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 179", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port179\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 179\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 180", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port180\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 180\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 181", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port181\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 181\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 182", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port182\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 182\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 183", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port183\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 183\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 184", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port184\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 184\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 185", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port185\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 185\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 186", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port186\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 186\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 187", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port187\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 187\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 188", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port188\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 188\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 189", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port189\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 189\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 190", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port190\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 190\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 191", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port191\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 191\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 192", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port192\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 192\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 193", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port193\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 193\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 194", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port194\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 194\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 195", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port195\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 195\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 196", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port196\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 196\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 197", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port197\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 197\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 198", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port198\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 198\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Ether Port container 199", "resource_value": "{\"attributes\": {\"description\": \"Port Container for port199\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 199\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/0-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Line Card\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"0/0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"CDF228DF603\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Virtual-IDPROM\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/Rack 0-Route Processor Slot 0", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Route Processor Slot\", \"empty\": \"false\", \"location\": \"Rack 0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [2, \"idx:CHASSIS\", \"\", \"\"], \"name\": \"Rack 0-Route Processor Slot 0\", \"parent-component-references\": \"Rack 0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Route Processor\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"0/RP0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"0E3F48343D5\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:CONTROLLER_CARD\", \"component-reference\": [22, \"\"], \"name\": \"0/RP0\", \"parent-component-references\": \"Rack 0-Route Processor Slot 0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-Virtual-Motherboard", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual RP Motherboard\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [23, \"idx:CONTROLLER_CARD\", \"\"], \"name\": \"0/RP0-Virtual-Motherboard\", \"parent-component-references\": \"0/RP0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Route Processor\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"0/RP0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"0E3F48343D5\"}, \"class\": \"\", \"component-reference\": [24, \"\"], \"name\": \"0/RP0-Virtual-IDPROM\", \"parent-component-references\": \"0/RP0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-MgmtEth0/RP0/CPU0/0", "resource_value": "{\"attributes\": {\"description\": \"Management Ethernet Port 0\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [24, \"\"], \"name\": \"0/RP0-MgmtEth0/RP0/CPU0/0\", \"parent-component-references\": \"0/RP0-Virtual-Motherboard\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-CPU Module", "resource_value": "{\"attributes\": {\"description\": \"CPU Module\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [23, \"idx:CONTROLLER_CARD\", \"\", \"\", \"idx:PORT\", \"\"], \"name\": \"0/RP0-CPU Module\", \"parent-component-references\": \"0/RP0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-Intel 8 Core CPU Complex", "resource_value": "{\"attributes\": {\"description\": \"Processor Module\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"idx:CPU\", \"component-reference\": [25, \"\"], \"name\": \"0/RP0-Intel 8 Core CPU Complex\", \"parent-component-references\": \"0/RP0-CPU Module\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-Virtual processor for sysadmin", "resource_value": "{\"attributes\": {\"description\": \"Virtual Processor Module for sysadmin\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"idx:CPU\", \"component-reference\": [25, \"\"], \"name\": \"0/RP0-Virtual processor for sysadmin\", \"parent-component-references\": \"0/RP0-CPU Module\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-Virtual processor for RP IOS-XR", "resource_value": "{\"attributes\": {\"description\": \"Virtual Processor Module for RP-IOS-XR\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"idx:CPU\", \"component-reference\": [25, \"\"], \"name\": \"0/RP0-Virtual processor for RP IOS-XR\", \"parent-component-references\": \"0/RP0-CPU Module\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/0/RP0-Virtual processor for LCP XR", "resource_value": "{\"attributes\": {\"description\": \"Virtual Processor Module for LCP-XR VM\", \"empty\": \"false\", \"location\": \"0/RP0\", \"removable\": \"false\"}, \"class\": \"idx:CPU\", \"component-reference\": [25, \"\"], \"name\": \"0/RP0-Virtual processor for LCP XR\", \"parent-component-references\": \"0/RP0-CPU Module\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/Rack 0-VirtualBackplane", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Virtual Backplane\", \"empty\": \"false\", \"location\": \"Rack 0\", \"removable\": \"false\"}, \"class\": \"idx:BACKPLANE\", \"component-reference\": [2, \"idx:CHASSIS\", \"\", \"\", \"idx:BACKPLANE\"], \"name\": \"Rack 0-VirtualBackplane\", \"parent-component-references\": \"Rack 0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/Rack 0-Virtual-IDPROM", "resource_value": "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Virtual Router\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"Rack 0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"6AD5C7BC582\"}, \"class\": \"\", \"component-reference\": [26, \"idx:BACKPLANE\"], \"name\": \"Rack 0-Virtual-IDPROM\", \"parent-component-references\": \"Rack 0-VirtualBackplane\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/IOSXR-NODE 0/RP0/CPU0", "resource_value": "{\"attributes\": {\"description\": \"IOS XR Operating System\", \"location\": \"0/RP0/CPU0\", \"removable\": \"true\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:OPERATING_SYSTEM\", \"component-reference\": [1, \"idx:CHASSIS\", \"\", \"idx:LINECARD\", \"\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"idx:CONTROLLER_CARD\", \"\", \"\", \"idx:PORT\", \"\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:BACKPLANE\", \"\", \"idx:OPERATING_SYSTEM\"], \"name\": \"IOSXR-NODE 0/RP0/CPU0\", \"parent-component-references\": \"\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/IOSXR-PKG/1 xrv9k-xr-7.8.2", "resource_value": "{\"attributes\": {\"description\": \"IOS XR Software Module\", \"removable\": \"true\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:SOFTWARE_MODULE\", \"component-reference\": [1, \"idx:CHASSIS\", \"\", \"idx:LINECARD\", \"\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"idx:CONTROLLER_CARD\", \"\", \"\", \"idx:PORT\", \"\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:BACKPLANE\", \"\", \"idx:OPERATING_SYSTEM\", \"idx:SOFTWARE_MODULE\"], \"name\": \"IOSXR-PKG/1 xrv9k-xr-7.8.2\", \"parent-component-references\": \"\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/IOSXR-NODE 0/0/CPU0", "resource_value": "{\"attributes\": {\"description\": \"IOS XR Operating System\", \"location\": \"0/0/CPU0\", \"removable\": \"true\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:OPERATING_SYSTEM\", \"component-reference\": [1, \"idx:CHASSIS\", \"\", \"idx:LINECARD\", \"\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"idx:CONTROLLER_CARD\", \"\", \"\", \"idx:PORT\", \"\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:BACKPLANE\", \"\", \"idx:OPERATING_SYSTEM\", \"idx:SOFTWARE_MODULE\", \"idx:OPERATING_SYSTEM\"], \"name\": \"IOSXR-NODE 0/0/CPU0\", \"parent-component-references\": \"\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/inventory/IOSXR-PKG/2 xrv9k-xr-7.8.2", "resource_value": "{\"attributes\": {\"description\": \"IOS XR Software Module\", \"removable\": \"true\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:SOFTWARE_MODULE\", \"component-reference\": [1, \"idx:CHASSIS\", \"\", \"idx:LINECARD\", \"\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"idx:FRU\", \"\", \"\", \"idx:PORT\", \"idx:PORT\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"\", \"idx:CONTROLLER_CARD\", \"\", \"\", \"idx:PORT\", \"\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:CPU\", \"idx:BACKPLANE\", \"\", \"idx:OPERATING_SYSTEM\", \"idx:SOFTWARE_MODULE\", \"idx:OPERATING_SYSTEM\", \"idx:SOFTWARE_MODULE\"], \"name\": \"IOSXR-PKG/2 xrv9k-xr-7.8.2\", \"parent-component-references\": \"\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/0-GigabitEthernet0/0/0/0]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-GigabitEthernet0/0/0/0']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-GigabitEthernet0/0/0/0']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-GigabitEthernet0/0/0/0']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-GigabitEthernet0/0/0/0']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/0-GigabitEthernet0/0/0/0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/0-SFP Socket]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-SFP Socket']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-SFP Socket']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-SFP Socket']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/0-SFP Socket']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/0-SFP Socket\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/1-GigabitEthernet0/0/0/1]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-GigabitEthernet0/0/0/1']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-GigabitEthernet0/0/0/1']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-GigabitEthernet0/0/0/1']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-GigabitEthernet0/0/0/1']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/1-GigabitEthernet0/0/0/1\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/1-SFP Socket]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-SFP Socket']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-SFP Socket']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-SFP Socket']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/1-SFP Socket']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/1-SFP Socket\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/2-GigabitEthernet0/0/0/2]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-GigabitEthernet0/0/0/2']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-GigabitEthernet0/0/0/2']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-GigabitEthernet0/0/0/2']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-GigabitEthernet0/0/0/2']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/2-GigabitEthernet0/0/0/2\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/2-SFP Socket]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-SFP Socket']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-SFP Socket']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-SFP Socket']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/2-SFP Socket']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/2-SFP Socket\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/3-GigabitEthernet0/0/0/3]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-GigabitEthernet0/0/0/3']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-GigabitEthernet0/0/0/3']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-GigabitEthernet0/0/0/3']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-GigabitEthernet0/0/0/3']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/3-GigabitEthernet0/0/0/3\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/0/3-SFP Socket]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-SFP Socket']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-SFP Socket']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-SFP Socket']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/0/3-SFP Socket']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/0/3-SFP Socket\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/endpoints/endpoint[0/RP0-MgmtEth0/RP0/CPU0/0]", "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='0/RP0-MgmtEth0/RP0/CPU0/0']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='0/RP0-MgmtEth0/RP0/CPU0/0']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='0/RP0-MgmtEth0/RP0/CPU0/0']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='0/RP0-MgmtEth0/RP0/CPU0/0']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"0/RP0-MgmtEth0/RP0/CPU0/0\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[MgmtEth0/RP0/CPU0/0]/subinterface[0]", "resource_value": "{\"address_ip\": \"10.95.90.43\", \"address_prefix\": 24, \"index\": 0, \"name\": \"MgmtEth0/RP0/CPU0/0\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[MgmtEth0/RP0/CPU0/0]", "resource_value": "{\"name\": \"MgmtEth0/RP0/CPU0/0\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/0]/subinterface[0]", "resource_value": "{\"address_ip\": \"192.168.13.3\", \"address_prefix\": 24, \"index\": 0, \"name\": \"GigabitEthernet0/0/0/0\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/0]", "resource_value": "{\"name\": \"GigabitEthernet0/0/0/0\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/1]/subinterface[0]", "resource_value": "{\"address_ip\": \"192.168.35.3\", \"address_prefix\": 24, \"index\": 0, \"name\": \"GigabitEthernet0/0/0/1\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/1]", "resource_value": "{\"name\": \"GigabitEthernet0/0/0/1\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/2]", "resource_value": "{\"name\": \"GigabitEthernet0/0/0/2\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/3]/subinterface[0]", "resource_value": "{\"address_ip\": \"192.168.23.3\", \"address_prefix\": 24, \"index\": 0, \"name\": \"GigabitEthernet0/0/0/3\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[GigabitEthernet0/0/0/3]", "resource_value": "{\"name\": \"GigabitEthernet0/0/0/3\", \"type\": \"idx:ethernetCsmacd\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/interface[Null0]", "resource_value": "{\"name\": \"Null0\", \"type\": \"idx:other\"}"}}, {"action": "CONFIGACTION_SET", "custom": {"resource_key": "/routing_policy/policy_definition[PASS_ALL]", "resource_value": "{\"policy_name\": \"PASS_ALL\"}"}}]}, "device_drivers": ["DEVICEDRIVER_OPENCONFIG"], "device_endpoints": [{"endpoint_id": {"device_id": {"device_uuid": {"uuid": "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"}}, "endpoint_uuid": {"uuid": "17875e19-c634-5773-b891-370a4f3b8a57"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/0-SFP Socket"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"}}, "endpoint_uuid": {"uuid": "1a462b3d-a678-5a07-a15c-604d690101fc"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/RP0-MgmtEth0/RP0/CPU0/0"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"}}, "endpoint_uuid": {"uuid": "811615f9-6c26-5b59-9184-8c4bdf0c6c88"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/2-GigabitEthernet0/0/0/2"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"}}, "endpoint_uuid": {"uuid": "8241a757-46f7-50aa-961b-4ae0e50ab5c2"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/1-SFP Socket"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"}}, "endpoint_uuid": {"uuid": "8c114aae-5b99-5e76-aa34-e4de80bc0b29"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/3-GigabitEthernet0/0/0/3"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"}}, "endpoint_uuid": {"uuid": "90ee9eb3-0c93-5d9b-b726-5628cf44f517"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/1-GigabitEthernet0/0/0/1"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"}}, "endpoint_uuid": {"uuid": "bbf820aa-9dee-5791-8354-b763f1db4ff1"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/0-GigabitEthernet0/0/0/0"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"}}, "endpoint_uuid": {"uuid": "bbf95d8f-12b4-500c-a0f6-6f14bc0896af"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/2-SFP Socket"}, {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"}}, "endpoint_uuid": {"uuid": "d79a8a73-c37f-5b24-9285-79801a98f1c2"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "endpoint_location": {}, "endpoint_type": "-", "kpi_sample_types": ["KPISAMPLETYPE_BYTES_RECEIVED", "KPISAMPLETYPE_BYTES_TRANSMITTED", "KPISAMPLETYPE_PACKETS_RECEIVED", "KPISAMPLETYPE_PACKETS_TRANSMITTED"], "name": "0/0/3-SFP Socket"}], "device_id": {"device_uuid": {"uuid": "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"}}, "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", "device_type": "packet-router", "name": "3.3.3.3"}
[2024-02-15 11:40:24,770] DEBUG:bgpls_speaker.service.BgplsServiceServicerImpl:(NotifyAddNodeToContext) Source: device_id {
device_uuid {
uuid: "5bad1790-0856-52e0-b181-fb9f15f3e4a9"
}
}
name: "1.1.1.1"
device_type: "packet-router"
device_config {
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "_connect/address"
resource_value: "10.95.90.41"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "_connect/port"
resource_value: "830"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "_connect/settings"
resource_value: "{\"username\": \"cisco\", \"password\": \"cisco12345\", \"vendor\": \"CISCO\", \"force_running\": false, \"hostkey_verify\": false, \"message_renderer\": \"pyangbind\", \"look_for_keys\": false, \"allow_agent\": false, \"commit_per_rule\": true, \"device_params\": {\"name\": \"default\"}, \"manager_params\": {\"timeout\": 120}}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/Rack 0"
resource_value: "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Virtual Router\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"Rack 0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"812ED7DDDC2\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:CHASSIS\", \"component-reference\": [1, \"idx:CHASSIS\"], \"name\": \"Rack 0\", \"parent-component-references\": \"\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/Rack 0-Line Card Slot 0"
resource_value: "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Line Card Slot\", \"empty\": \"false\", \"location\": \"Rack 0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [2, \"idx:CHASSIS\", \"\"], \"name\": \"Rack 0-Line Card Slot 0\", \"parent-component-references\": \"Rack 0\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0"
resource_value: "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Centralized Line Card\", \"empty\": \"false\", \"hardware-rev\": \"V01\", \"location\": \"0/0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"8F25A975EA5\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:LINECARD\", \"component-reference\": [3, \"\"], \"name\": \"0/0\", \"parent-component-references\": \"Rack 0-Line Card Slot 0\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Virtual-Motherboard"
resource_value: "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual LC Motherboard\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [4, \"idx:LINECARD\", \"\"], \"name\": \"0/0-Virtual-Motherboard\", \"parent-component-references\": \"0/0\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 0"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port0\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 0\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/0"
resource_value: "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"N/A\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:FRU\", \"component-reference\": [6, \"\"], \"name\": \"0/0/0\", \"parent-component-references\": \"0/0-Ether Port container 0\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/0-Virtual-Board"
resource_value: "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual 1G Module\", \"empty\": \"false\", \"location\": \"0/0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [7, \"idx:FRU\", \"\"], \"name\": \"0/0/0-Virtual-Board\", \"parent-component-references\": \"0/0/0\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/0-Virtual-IDPROM"
resource_value: "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/0\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"N/A\"}, \"class\": \"\", \"component-reference\": [8, \"\"], \"name\": \"0/0/0-Virtual-IDPROM\", \"parent-component-references\": \"0/0/0-Virtual-Board\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/0-GigabitEthernet0/0/0/0"
resource_value: "{\"attributes\": {\"description\": \"Ethernet Port One Gig\", \"empty\": \"false\", \"location\": \"0/0/0\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [8, \"\"], \"name\": \"0/0/0-GigabitEthernet0/0/0/0\", \"parent-component-references\": \"0/0/0-Virtual-Board\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/0-SFP Socket"
resource_value: "{\"attributes\": {\"description\": \"Pluggable Optical Module Container\", \"empty\": \"true\", \"location\": \"0/0/0\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [9, \"idx:PORT\"], \"name\": \"0/0/0-SFP Socket\", \"parent-component-references\": \"0/0/0-GigabitEthernet0/0/0/0\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 1"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port1\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 1\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/1"
resource_value: "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/1\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"N/A\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:FRU\", \"component-reference\": [10, \"\"], \"name\": \"0/0/1\", \"parent-component-references\": \"0/0-Ether Port container 1\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/1-Virtual-Board"
resource_value: "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual 1G Module\", \"empty\": \"false\", \"location\": \"0/0/1\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [11, \"idx:FRU\", \"\"], \"name\": \"0/0/1-Virtual-Board\", \"parent-component-references\": \"0/0/1\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/1-Virtual-IDPROM"
resource_value: "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/1\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"N/A\"}, \"class\": \"\", \"component-reference\": [12, \"\"], \"name\": \"0/0/1-Virtual-IDPROM\", \"parent-component-references\": \"0/0/1-Virtual-Board\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/1-GigabitEthernet0/0/0/1"
resource_value: "{\"attributes\": {\"description\": \"Ethernet Port One Gig\", \"empty\": \"false\", \"location\": \"0/0/1\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [12, \"\"], \"name\": \"0/0/1-GigabitEthernet0/0/0/1\", \"parent-component-references\": \"0/0/1-Virtual-Board\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/1-SFP Socket"
resource_value: "{\"attributes\": {\"description\": \"Pluggable Optical Module Container\", \"empty\": \"true\", \"location\": \"0/0/1\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [13, \"idx:PORT\"], \"name\": \"0/0/1-SFP Socket\", \"parent-component-references\": \"0/0/1-GigabitEthernet0/0/0/1\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 2"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port2\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 2\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/2"
resource_value: "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/2\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"N/A\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:FRU\", \"component-reference\": [14, \"\"], \"name\": \"0/0/2\", \"parent-component-references\": \"0/0-Ether Port container 2\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/2-Virtual-Board"
resource_value: "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual 1G Module\", \"empty\": \"false\", \"location\": \"0/0/2\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [15, \"idx:FRU\", \"\"], \"name\": \"0/0/2-Virtual-Board\", \"parent-component-references\": \"0/0/2\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/2-Virtual-IDPROM"
resource_value: "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/2\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"N/A\"}, \"class\": \"\", \"component-reference\": [16, \"\"], \"name\": \"0/0/2-Virtual-IDPROM\", \"parent-component-references\": \"0/0/2-Virtual-Board\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/2-GigabitEthernet0/0/0/2"
resource_value: "{\"attributes\": {\"description\": \"Ethernet Port One Gig\", \"empty\": \"false\", \"location\": \"0/0/2\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [16, \"\"], \"name\": \"0/0/2-GigabitEthernet0/0/0/2\", \"parent-component-references\": \"0/0/2-Virtual-Board\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/2-SFP Socket"
resource_value: "{\"attributes\": {\"description\": \"Pluggable Optical Module Container\", \"empty\": \"true\", \"location\": \"0/0/2\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [17, \"idx:PORT\"], \"name\": \"0/0/2-SFP Socket\", \"parent-component-references\": \"0/0/2-GigabitEthernet0/0/0/2\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 3"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port3\", \"empty\": \"false\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 3\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/3"
resource_value: "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/3\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"true\", \"serial-num\": \"N/A\", \"software-rev\": \"7.8.2\"}, \"class\": \"idx:FRU\", \"component-reference\": [18, \"\"], \"name\": \"0/0/3\", \"parent-component-references\": \"0/0-Ether Port container 3\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/3-Virtual-Board"
resource_value: "{\"attributes\": {\"description\": \"Cisco IOS-XRv 9000 Virtual 1G Module\", \"empty\": \"false\", \"location\": \"0/0/3\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [19, \"idx:FRU\", \"\"], \"name\": \"0/0/3-Virtual-Board\", \"parent-component-references\": \"0/0/3\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/3-Virtual-IDPROM"
resource_value: "{\"attributes\": {\"description\": \"N/A\", \"empty\": \"false\", \"hardware-rev\": \"N/A\", \"location\": \"0/0/3\", \"manufacturer-name\": \"CISCO SYSTEMS, INC\", \"removable\": \"false\", \"serial-num\": \"N/A\"}, \"class\": \"\", \"component-reference\": [20, \"\"], \"name\": \"0/0/3-Virtual-IDPROM\", \"parent-component-references\": \"0/0/3-Virtual-Board\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/3-GigabitEthernet0/0/0/3"
resource_value: "{\"attributes\": {\"description\": \"Ethernet Port One Gig\", \"empty\": \"false\", \"location\": \"0/0/3\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [20, \"\"], \"name\": \"0/0/3-GigabitEthernet0/0/0/3\", \"parent-component-references\": \"0/0/3-Virtual-Board\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0/3-SFP Socket"
resource_value: "{\"attributes\": {\"description\": \"Pluggable Optical Module Container\", \"empty\": \"true\", \"location\": \"0/0/3\", \"removable\": \"false\"}, \"class\": \"idx:PORT\", \"component-reference\": [21, \"idx:PORT\"], \"name\": \"0/0/3-SFP Socket\", \"parent-component-references\": \"0/0/3-GigabitEthernet0/0/0/3\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 4"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port4\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 4\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 5"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port5\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 5\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 6"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port6\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 6\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 7"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port7\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 7\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 8"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port8\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 8\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 9"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port9\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 9\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 10"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port10\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 10\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 11"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port11\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 11\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 12"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port12\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 12\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 13"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port13\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 13\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 14"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port14\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 14\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 15"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port15\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 15\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 16"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port16\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 16\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 17"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port17\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 17\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 18"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port18\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 18\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 19"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port19\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 19\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 20"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port20\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 20\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 21"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port21\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 21\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 22"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port22\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 22\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 23"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port23\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 23\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 24"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port24\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 24\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 25"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port25\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 25\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 26"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port26\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 26\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 27"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port27\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 27\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 28"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port28\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 28\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 29"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port29\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 29\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 30"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port30\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 30\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 31"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port31\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 31\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 32"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port32\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 32\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 33"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port33\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 33\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 34"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port34\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 34\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 35"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port35\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 35\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 36"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port36\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 36\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 37"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port37\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 37\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 38"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port38\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 38\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 39"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port39\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 39\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 40"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port40\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 40\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 41"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port41\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 41\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 42"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port42\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 42\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 43"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port43\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 43\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 44"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port44\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 44\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 45"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port45\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 45\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 46"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port46\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 46\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 47"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port47\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 47\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 48"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port48\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 48\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 49"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port49\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 49\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 50"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port50\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 50\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 51"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port51\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 51\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 52"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port52\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 52\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 53"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port53\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 53\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 54"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port54\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 54\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 55"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port55\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 55\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 56"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port56\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 56\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 57"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port57\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 57\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 58"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port58\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 58\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 59"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port59\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 59\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 60"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port60\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 60\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 61"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port61\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 61\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 62"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port62\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 62\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 63"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port63\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 63\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 64"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port64\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 64\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 65"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port65\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 65\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 66"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port66\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 66\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 67"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port67\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 67\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 68"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port68\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 68\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 69"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port69\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 69\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 70"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port70\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 70\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 71"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port71\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 71\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 72"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port72\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 72\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 73"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port73\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 73\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 74"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port74\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 74\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 75"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port75\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 75\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 76"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port76\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 76\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 77"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port77\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 77\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 78"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port78\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 78\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 79"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port79\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 79\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 80"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port80\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 80\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 81"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port81\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 81\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 82"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port82\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 82\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 83"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port83\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 83\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 84"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port84\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 84\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 85"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port85\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 85\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 86"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port86\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 86\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 87"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port87\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 87\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 88"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port88\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 88\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 89"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port89\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 89\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 90"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port90\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 90\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 91"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port91\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 91\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 92"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port92\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 92\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 93"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port93\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 93\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 94"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port94\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 94\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 95"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port95\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 95\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 96"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port96\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 96\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 97"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port97\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 97\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 98"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port98\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 98\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 99"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port99\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 99\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 100"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port100\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 100\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 101"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port101\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 101\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 102"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port102\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 102\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 103"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port103\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 103\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 104"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port104\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 104\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 105"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port105\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 105\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 106"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port106\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 106\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 107"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port107\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 107\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 108"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port108\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 108\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 109"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port109\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 109\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/inventory/0/0-Ether Port container 110"
resource_value: "{\"attributes\": {\"description\": \"Port Container for port110\", \"empty\": \"true\", \"location\": \"0/0\", \"removable\": \"false\"}, \"class\": \"\", \"component-reference\": [5, \"\"], \"name\": \"0/0-Ether Port container 110\", \"parent-component-references\": \"0/0-Virtual-Motherboard\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {