Newer
Older
9001
9002
9003
9004
9005
9006
9007
9008
9009
9010
9011
9012
9013
9014
9015
9016
9017
9018
9019
9020
9021
9022
9023
9024
9025
9026
9027
9028
9029
9030
9031
9032
9033
9034
9035
9036
9037
9038
9039
9040
9041
9042
9043
9044
9045
9046
9047
9048
9049
9050
9051
9052
9053
9054
9055
9056
9057
9058
9059
9060
9061
9062
9063
9064
9065
9066
9067
9068
9069
9070
9071
9072
9073
9074
9075
9076
9077
9078
9079
9080
9081
9082
9083
9084
9085
9086
9087
9088
9089
9090
9091
9092
9093
9094
9095
9096
9097
9098
9099
9100
9101
9102
9103
9104
9105
9106
9107
9108
9109
9110
9111
9112
9113
9114
9115
9116
9117
9118
9119
9120
9121
9122
9123
9124
9125
9126
9127
9128
9129
9130
9131
9132
9133
9134
9135
9136
9137
9138
9139
9140
9141
9142
9143
9144
9145
9146
9147
9148
9149
9150
9151
9152
9153
9154
9155
9156
9157
9158
9159
9160
9161
9162
9163
9164
9165
9166
9167
9168
9169
9170
9171
9172
9173
9174
9175
9176
9177
9178
9179
9180
9181
9182
9183
9184
9185
9186
9187
9188
9189
9190
9191
9192
9193
9194
9195
9196
9197
9198
9199
9200
9201
9202
9203
9204
9205
9206
9207
9208
9209
9210
9211
9212
9213
9214
9215
9216
9217
9218
9219
9220
9221
9222
9223
9224
9225
9226
9227
9228
9229
9230
9231
9232
9233
9234
9235
9236
9237
9238
9239
9240
9241
9242
9243
9244
9245
9246
9247
9248
9249
9250
9251
9252
9253
9254
9255
9256
9257
9258
9259
9260
9261
9262
9263
9264
9265
9266
9267
9268
9269
9270
9271
9272
9273
9274
9275
9276
9277
9278
9279
9280
9281
9282
9283
9284
9285
9286
9287
9288
9289
9290
9291
9292
9293
9294
9295
9296
9297
9298
9299
9300
9301
9302
9303
9304
9305
9306
9307
9308
9309
9310
9311
9312
9313
9314
9315
9316
9317
9318
9319
9320
9321
9322
9323
9324
9325
9326
9327
9328
9329
9330
9331
9332
9333
9334
9335
9336
9337
9338
9339
9340
9341
9342
9343
9344
9345
9346
9347
9348
9349
9350
9351
9352
9353
9354
9355
9356
9357
9358
9359
9360
9361
9362
9363
9364
9365
9366
9367
9368
9369
9370
9371
9372
9373
9374
9375
9376
9377
9378
9379
9380
9381
9382
9383
9384
9385
9386
9387
9388
9389
9390
9391
9392
9393
9394
9395
9396
9397
9398
9399
9400
9401
9402
9403
9404
9405
9406
9407
9408
9409
9410
9411
9412
9413
9414
9415
9416
9417
9418
9419
9420
9421
9422
9423
9424
9425
9426
9427
9428
9429
9430
9431
9432
9433
9434
9435
9436
9437
9438
9439
9440
9441
9442
9443
9444
9445
9446
9447
9448
9449
9450
9451
9452
9453
9454
9455
9456
9457
9458
9459
9460
9461
9462
9463
9464
9465
9466
9467
9468
9469
9470
9471
9472
9473
9474
9475
9476
9477
9478
9479
9480
9481
9482
9483
9484
9485
9486
9487
9488
9489
9490
9491
9492
9493
9494
9495
9496
9497
9498
9499
9500
9501
9502
9503
9504
9505
9506
9507
9508
9509
9510
9511
9512
9513
9514
9515
9516
9517
9518
9519
9520
9521
9522
9523
9524
9525
9526
9527
9528
9529
9530
9531
9532
9533
9534
9535
9536
9537
9538
9539
9540
9541
9542
9543
9544
9545
9546
9547
9548
9549
9550
9551
9552
9553
9554
9555
9556
9557
9558
9559
9560
9561
9562
9563
9564
9565
9566
9567
9568
9569
9570
9571
9572
9573
9574
9575
9576
9577
9578
9579
9580
9581
9582
9583
9584
9585
9586
9587
9588
9589
9590
9591
9592
9593
9594
9595
9596
9597
9598
9599
9600
9601
9602
9603
9604
9605
9606
9607
9608
9609
9610
9611
9612
9613
9614
9615
9616
9617
9618
9619
9620
9621
9622
9623
9624
9625
9626
9627
9628
9629
9630
9631
9632
9633
9634
9635
9636
9637
9638
9639
9640
9641
9642
9643
9644
9645
9646
9647
9648
9649
9650
9651
9652
9653
9654
9655
9656
9657
9658
9659
9660
9661
9662
9663
9664
9665
9666
9667
9668
9669
9670
9671
9672
9673
9674
9675
9676
9677
9678
9679
9680
9681
9682
9683
9684
9685
9686
9687
9688
9689
9690
9691
9692
9693
9694
9695
9696
9697
9698
9699
9700
9701
9702
9703
9704
9705
9706
9707
9708
9709
9710
9711
9712
9713
9714
9715
9716
9717
9718
9719
9720
9721
9722
9723
9724
9725
9726
9727
9728
9729
9730
9731
9732
9733
9734
9735
9736
9737
9738
9739
9740
9741
9742
9743
9744
9745
9746
9747
9748
9749
9750
9751
9752
9753
9754
9755
9756
9757
9758
9759
9760
9761
9762
9763
9764
9765
9766
9767
9768
9769
9770
9771
9772
9773
9774
9775
9776
9777
9778
9779
9780
9781
9782
9783
9784
9785
9786
9787
9788
9789
9790
9791
9792
9793
9794
9795
9796
9797
9798
9799
9800
9801
9802
9803
9804
9805
9806
9807
9808
9809
9810
9811
9812
9813
9814
9815
9816
9817
9818
9819
9820
9821
9822
9823
9824
9825
9826
9827
9828
9829
9830
9831
9832
9833
9834
9835
9836
9837
9838
9839
9840
9841
9842
9843
9844
9845
9846
9847
9848
9849
9850
9851
9852
9853
9854
9855
9856
9857
9858
9859
9860
9861
9862
9863
9864
9865
9866
9867
9868
9869
9870
9871
9872
9873
9874
9875
9876
9877
9878
9879
9880
9881
9882
9883
9884
9885
9886
9887
9888
9889
9890
9891
9892
9893
9894
9895
9896
9897
9898
9899
9900
9901
9902
9903
9904
9905
9906
9907
9908
9909
9910
9911
9912
9913
9914
9915
9916
9917
9918
9919
9920
9921
9922
9923
9924
9925
9926
9927
9928
9929
9930
9931
9932
9933
9934
9935
9936
9937
9938
9939
9940
9941
9942
9943
9944
9945
9946
9947
9948
9949
9950
9951
9952
9953
9954
9955
9956
9957
9958
9959
9960
9961
9962
9963
9964
9965
9966
9967
9968
9969
9970
9971
9972
9973
9974
9975
9976
9977
9978
9979
9980
9981
9982
9983
9984
9985
9986
9987
9988
9989
9990
9991
9992
9993
9994
9995
9996
9997
9998
9999
10000
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 {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
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\"}"
}
}
config_rules {
action: CONFIGACTION_SET