Newer
Older
10001
10002
10003
10004
10005
10006
10007
10008
10009
10010
10011
10012
10013
10014
10015
10016
10017
10018
10019
10020
10021
10022
10023
10024
10025
10026
10027
10028
10029
10030
10031
10032
10033
10034
10035
10036
10037
10038
10039
10040
10041
10042
10043
10044
10045
10046
10047
10048
10049
10050
10051
10052
10053
10054
10055
10056
10057
10058
10059
10060
10061
10062
10063
10064
10065
10066
10067
10068
10069
10070
10071
10072
10073
10074
10075
10076
10077
10078
10079
10080
10081
10082
10083
10084
10085
10086
10087
10088
10089
10090
10091
10092
10093
10094
10095
10096
10097
10098
10099
10100
10101
10102
10103
10104
10105
10106
10107
10108
10109
10110
10111
10112
10113
10114
10115
10116
10117
10118
10119
10120
10121
10122
10123
10124
10125
10126
10127
10128
10129
10130
10131
10132
10133
10134
10135
10136
10137
10138
10139
10140
10141
10142
10143
10144
10145
10146
10147
10148
10149
10150
10151
10152
10153
10154
10155
10156
10157
10158
10159
10160
10161
10162
10163
10164
10165
10166
10167
10168
10169
10170
10171
10172
10173
10174
10175
10176
10177
10178
10179
10180
10181
10182
10183
10184
10185
10186
10187
10188
10189
10190
10191
10192
10193
10194
10195
10196
10197
10198
10199
10200
10201
10202
10203
10204
10205
10206
10207
10208
10209
10210
10211
10212
10213
10214
10215
10216
10217
10218
10219
10220
10221
10222
10223
10224
10225
10226
10227
10228
10229
10230
10231
10232
10233
10234
10235
10236
10237
10238
10239
10240
10241
10242
10243
10244
10245
10246
10247
10248
10249
10250
10251
10252
10253
10254
10255
10256
10257
10258
10259
10260
10261
10262
10263
10264
10265
10266
10267
10268
10269
10270
10271
10272
10273
10274
10275
10276
10277
10278
10279
10280
10281
10282
10283
10284
10285
10286
10287
10288
10289
10290
10291
10292
10293
10294
10295
10296
10297
10298
10299
10300
10301
10302
10303
10304
10305
10306
10307
10308
10309
10310
10311
10312
10313
10314
10315
10316
10317
10318
10319
10320
10321
10322
10323
10324
10325
10326
10327
10328
10329
10330
10331
10332
10333
10334
10335
10336
10337
10338
10339
10340
10341
10342
10343
10344
10345
10346
10347
10348
10349
10350
10351
10352
10353
10354
10355
10356
10357
10358
10359
10360
10361
10362
10363
10364
10365
10366
10367
10368
10369
10370
10371
10372
10373
10374
10375
10376
10377
10378
10379
10380
10381
10382
10383
10384
10385
10386
10387
10388
10389
10390
10391
10392
10393
10394
10395
10396
10397
10398
10399
10400
10401
10402
10403
10404
10405
10406
10407
10408
10409
10410
10411
10412
10413
10414
10415
10416
10417
10418
10419
10420
10421
10422
10423
10424
10425
10426
10427
10428
10429
10430
10431
10432
10433
10434
10435
10436
10437
10438
10439
10440
10441
10442
10443
10444
10445
10446
10447
10448
10449
10450
10451
10452
10453
10454
10455
10456
10457
10458
10459
10460
10461
10462
10463
10464
10465
10466
10467
10468
10469
10470
10471
10472
10473
10474
10475
10476
10477
10478
10479
10480
10481
10482
10483
10484
10485
10486
10487
10488
10489
10490
10491
10492
10493
10494
10495
10496
10497
10498
10499
10500
10501
10502
10503
10504
10505
10506
10507
10508
10509
10510
10511
10512
10513
10514
10515
10516
10517
10518
10519
10520
10521
10522
10523
10524
10525
10526
10527
10528
10529
10530
10531
10532
10533
10534
10535
10536
10537
10538
10539
10540
10541
10542
10543
10544
10545
10546
10547
10548
10549
10550
10551
10552
10553
10554
10555
10556
10557
10558
10559
10560
10561
10562
10563
10564
10565
10566
10567
10568
10569
10570
10571
10572
10573
10574
10575
10576
10577
10578
10579
10580
10581
10582
10583
10584
10585
10586
10587
10588
10589
10590
10591
10592
10593
10594
10595
10596
10597
10598
10599
10600
10601
10602
10603
10604
10605
10606
10607
10608
10609
10610
10611
10612
10613
10614
10615
10616
10617
10618
10619
10620
10621
10622
10623
10624
10625
10626
10627
10628
10629
10630
10631
10632
10633
10634
10635
10636
10637
10638
10639
10640
10641
10642
10643
10644
10645
10646
10647
10648
10649
10650
10651
10652
10653
10654
10655
10656
10657
10658
10659
10660
10661
10662
10663
10664
10665
10666
10667
10668
10669
10670
10671
10672
10673
10674
10675
10676
10677
10678
10679
10680
10681
10682
10683
10684
10685
10686
10687
10688
10689
10690
10691
10692
10693
10694
10695
10696
10697
10698
10699
10700
10701
10702
10703
10704
10705
10706
10707
10708
10709
10710
10711
10712
10713
10714
10715
10716
10717
10718
10719
10720
10721
10722
10723
10724
10725
10726
10727
10728
10729
10730
10731
10732
10733
10734
10735
10736
10737
10738
10739
10740
10741
10742
10743
10744
10745
10746
10747
10748
10749
10750
10751
10752
10753
10754
10755
10756
10757
10758
10759
10760
10761
10762
10763
10764
10765
10766
10767
10768
10769
10770
10771
10772
10773
10774
10775
10776
10777
10778
10779
10780
10781
10782
10783
10784
10785
10786
10787
10788
10789
10790
10791
10792
10793
10794
10795
10796
10797
10798
10799
10800
10801
10802
10803
10804
10805
10806
10807
10808
10809
10810
10811
10812
10813
10814
10815
10816
10817
10818
10819
10820
10821
10822
10823
10824
10825
10826
10827
10828
10829
10830
10831
10832
10833
10834
10835
10836
10837
10838
10839
10840
10841
10842
10843
10844
10845
10846
10847
10848
10849
10850
10851
10852
10853
10854
10855
10856
10857
10858
10859
10860
10861
10862
10863
10864
10865
10866
10867
10868
10869
10870
10871
10872
10873
10874
10875
10876
10877
10878
10879
10880
10881
10882
10883
10884
10885
10886
10887
10888
10889
10890
10891
10892
10893
10894
10895
10896
10897
10898
10899
10900
10901
10902
10903
10904
10905
10906
10907
10908
10909
10910
10911
10912
10913
10914
10915
10916
10917
10918
10919
10920
10921
10922
10923
10924
10925
10926
10927
10928
10929
10930
10931
10932
10933
10934
10935
10936
10937
10938
10939
10940
10941
10942
10943
10944
10945
10946
10947
10948
10949
10950
10951
10952
10953
10954
10955
10956
10957
10958
10959
10960
10961
10962
10963
10964
10965
10966
10967
10968
10969
10970
10971
10972
10973
10974
10975
10976
10977
10978
10979
10980
10981
10982
10983
10984
10985
10986
10987
10988
10989
10990
10991
10992
10993
10994
10995
10996
10997
10998
10999
11000
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\": \"\"}"
}
}
config_rules {
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\": \"\"}"
}
}
config_rules {
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\": \"\"}"
}
}
config_rules {
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\": \"\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/interface[MgmtEth0/RP0/CPU0/0]"
resource_value: "{\"name\": \"MgmtEth0/RP0/CPU0/0\", \"type\": \"idx:ethernetCsmacd\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/interface[GigabitEthernet0/0/0/0]"
resource_value: "{\"name\": \"GigabitEthernet0/0/0/0\", \"type\": \"idx:ethernetCsmacd\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/interface[GigabitEthernet0/0/0/1]"
resource_value: "{\"name\": \"GigabitEthernet0/0/0/1\", \"type\": \"idx:ethernetCsmacd\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/interface[GigabitEthernet0/0/0/2]"
resource_value: "{\"name\": \"GigabitEthernet0/0/0/2\", \"type\": \"idx:ethernetCsmacd\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/interface[GigabitEthernet0/0/0/3]"
resource_value: "{\"name\": \"GigabitEthernet0/0/0/3\", \"type\": \"idx:ethernetCsmacd\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/interface[Null0]"
resource_value: "{\"name\": \"Null0\", \"type\": \"idx:other\"}"
}
}
config_rules {
action: CONFIGACTION_SET
custom {
resource_key: "/routing_policy/policy_definition[PASS_ALL]"
resource_value: "{\"policy_name\": \"PASS_ALL\"}"
}
}
}
device_operational_status: DEVICEOPERATIONALSTATUS_ENABLED
device_drivers: DEVICEDRIVER_OPENCONFIG
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"
}
}
endpoint_uuid {
uuid: "17875e19-c634-5773-b891-370a4f3b8a57"
}
}
name: "0/0/0-SFP Socket"
endpoint_type: "-"
kpi_sample_types: KPISAMPLETYPE_BYTES_RECEIVED
kpi_sample_types: KPISAMPLETYPE_BYTES_TRANSMITTED
kpi_sample_types: KPISAMPLETYPE_PACKETS_RECEIVED
kpi_sample_types: KPISAMPLETYPE_PACKETS_TRANSMITTED
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"
}
}
endpoint_uuid {
uuid: "1a462b3d-a678-5a07-a15c-604d690101fc"
}
}
name: "0/RP0-MgmtEth0/RP0/CPU0/0"
endpoint_type: "-"
kpi_sample_types: KPISAMPLETYPE_BYTES_RECEIVED
kpi_sample_types: KPISAMPLETYPE_BYTES_TRANSMITTED
kpi_sample_types: KPISAMPLETYPE_PACKETS_RECEIVED
kpi_sample_types: KPISAMPLETYPE_PACKETS_TRANSMITTED
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"
}
}
endpoint_uuid {
uuid: "811615f9-6c26-5b59-9184-8c4bdf0c6c88"
}
}
name: "0/0/2-GigabitEthernet0/0/0/2"
endpoint_type: "-"
kpi_sample_types: KPISAMPLETYPE_BYTES_RECEIVED
kpi_sample_types: KPISAMPLETYPE_BYTES_TRANSMITTED
kpi_sample_types: KPISAMPLETYPE_PACKETS_RECEIVED
kpi_sample_types: KPISAMPLETYPE_PACKETS_TRANSMITTED
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"
}
}
endpoint_uuid {
uuid: "8241a757-46f7-50aa-961b-4ae0e50ab5c2"
}
}
name: "0/0/1-SFP Socket"
endpoint_type: "-"
kpi_sample_types: KPISAMPLETYPE_BYTES_RECEIVED
kpi_sample_types: KPISAMPLETYPE_BYTES_TRANSMITTED
kpi_sample_types: KPISAMPLETYPE_PACKETS_RECEIVED
kpi_sample_types: KPISAMPLETYPE_PACKETS_TRANSMITTED
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"
}
}
endpoint_uuid {
uuid: "8c114aae-5b99-5e76-aa34-e4de80bc0b29"
}
}
name: "0/0/3-GigabitEthernet0/0/0/3"
endpoint_type: "-"
kpi_sample_types: KPISAMPLETYPE_BYTES_RECEIVED
kpi_sample_types: KPISAMPLETYPE_BYTES_TRANSMITTED
kpi_sample_types: KPISAMPLETYPE_PACKETS_RECEIVED
kpi_sample_types: KPISAMPLETYPE_PACKETS_TRANSMITTED
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"
}
}
endpoint_uuid {
uuid: "90ee9eb3-0c93-5d9b-b726-5628cf44f517"
}
}
name: "0/0/1-GigabitEthernet0/0/0/1"
endpoint_type: "-"
kpi_sample_types: KPISAMPLETYPE_BYTES_RECEIVED
kpi_sample_types: KPISAMPLETYPE_BYTES_TRANSMITTED
kpi_sample_types: KPISAMPLETYPE_PACKETS_RECEIVED
kpi_sample_types: KPISAMPLETYPE_PACKETS_TRANSMITTED
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"
}
}
endpoint_uuid {
uuid: "bbf820aa-9dee-5791-8354-b763f1db4ff1"
}
}
name: "0/0/0-GigabitEthernet0/0/0/0"
endpoint_type: "-"
kpi_sample_types: KPISAMPLETYPE_BYTES_RECEIVED
kpi_sample_types: KPISAMPLETYPE_BYTES_TRANSMITTED
kpi_sample_types: KPISAMPLETYPE_PACKETS_RECEIVED
kpi_sample_types: KPISAMPLETYPE_PACKETS_TRANSMITTED
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"
}
}
device_id {
device_uuid {
uuid: "f399e7e0-607d-5c9d-a61f-9aaa6bca2df8"
}
}
endpoint_uuid {
uuid: "bbf95d8f-12b4-500c-a0f6-6f14bc0896af"
}
}
name: "0/0/2-SFP Socket"
endpoint_type: "-"
kpi_sample_types: KPISAMPLETYPE_BYTES_RECEIVED
kpi_sample_types: KPISAMPLETYPE_BYTES_TRANSMITTED
kpi_sample_types: KPISAMPLETYPE_PACKETS_RECEIVED
kpi_sample_types: KPISAMPLETYPE_PACKETS_TRANSMITTED
endpoint_location {
}
}
device_endpoints {
endpoint_id {
topology_id {
context_id {
context_uuid {
uuid: "43813baf-195e-5da6-af20-b3d0922e71a7"
}
}
topology_uuid {
uuid: "c76135e3-24a8-5e92-9bed-c3c9139359c8"