Newer
Older
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
}
}
endpoint_uuid {
uuid: "e2500678-0f36-555a-9133-7cd04d3ad63a"
}
}
name: "port-6-in"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_INPUT"
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: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "e5265cb0-2e80-5ea1-80d8-333749bb7f14"
}
}
name: "port-5-out"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT"
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: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "e9d0dac3-11f2-5b84-9125-d0300ccd8eeb"
}
}
name: "port-37-out"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT"
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: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "e9d4bff3-76ac-5490-b897-a30b9a42a8b1"
}
}
name: "port-44-in"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_INPUT"
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: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "ea73d8c4-1077-55c9-87f1-9c377cee196f"
}
}
name: "port-9-in"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_INPUT"
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: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "eb38e3cd-e42a-54b2-846c-82207a95e8e3"
}
}
name: "port-10-in"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_INPUT"
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: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "ebfe571c-77b2-5f66-9efe-25583cc1f587"
}
}
name: "port-36-out"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT"
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: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "ee4df110-8657-571c-aa20-a70ec79db01f"
}
}
name: "port-47-out"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT"
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: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "f206246e-cb90-56b4-b908-1dc3daa7ac3f"
}
}
name: "port-11-in"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_INPUT"
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: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "f7052fb4-fab8-5821-95e0-d407043742d8"
}
}
name: "port-8-out"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT"
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: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "f8bd2b7e-6d37-5bbc-92f4-9b9b2e0ce22c"
}
}
name: "port-10-out"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT"
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: "68741528-2e94-5274-ab3c-fddcd8dc05ef"
}
}
endpoint_uuid {
uuid: "ff51524f-7b51-5efd-af6b-6bc8541d3716"
}
}
name: "port-6-out"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT"
endpoint_location {
}
}
controller_id {
}
[2024-06-07 08:55:35,823] INFO:device.service.OpenConfigServicer:from openconfigservicer [{'resource_key': 'channel_namespace', 'value': None}, {'resource_key': 'add_transceiver', 'value': None}, {'resource_key': 'source_port', 'value': [None]}, {'resource_key': 'destination_port', 'value': ['port-1-out']}, {'resource_key': 'target-output-power', 'value': None}, {'resource_key': 'frequency', 'value': 192106250}, {'resource_key': 'operational-mode', 'value': None}, {'resource_key': 'line-port', 'value': None}, {'resource_key': 'name', 'value': 'C_BAND'}, {'resource_key': 'optical-band-parent', 'value': 1}, {'resource_key': 'channel_name', 'value': None}, {'resource_key': 'index', 'value': 1}, {'resource_key': 'lower-frequency', 'value': 192006250}, {'resource_key': 'upper-frequency', 'value': 192206250}] and conditions {'is_opticalband': True, 'edit_type': 'optical-band'}
[2024-06-07 08:55:35,906] INFO:ncclient.operations.rpc:[host 172.17.254.21 session-id 19] Requesting 'EditConfig'
[2024-06-07 08:55:36,236] INFO:root:resonse from edit <?xml version="1.0" encoding="UTF-8"?>
<rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="urn:uuid:2b99ae14-c774-4495-bf50-86597fdc0522" xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0"><ok/></rpc-reply>
[2024-06-07 08:55:36,236] INFO:device.service.OpenConfigServicer:resluts [True] and is_all_good True
[2024-06-07 08:55:36,237] INFO:ncclient.operations.rpc:[host 172.17.254.21 session-id 19] Requesting 'Get'
int-connection-91
int-connection-92
int-connection-93
int-connection-94
int-connection-95
int-connection-96
int-connection-97
int-connection-98
int-connection-99
port-1-in
port-1-out
port-10-in
port-10-out
port-11-in
port-11-out
port-12-in
port-12-out
port-13-in
port-13-out
port-14-in
port-14-out
port-15-in
port-15-out
port-16-in
port-16-out
port-17-in
port-17-out
port-18-in
port-18-out
port-19-in
port-19-out
port-2-in
port-2-out
port-20-in
port-20-out
port-21-in
port-21-out
port-22-in
port-22-out
port-23-in
port-23-out
port-24-in
port-24-out
port-25-in
port-25-out
port-26-in
port-26-out
port-27-in
port-27-out
port-28-in
port-28-out
port-29-in
port-29-out
port-3-in
port-3-out
port-30-in
port-30-out
port-31-in
port-31-out
port-32-in
port-32-out
port-33-in
port-33-out
port-34-in
port-34-out
port-35-in
port-35-out
port-36-in
port-36-out
port-37-in
port-37-out
port-38-in
port-38-out
port-39-in
port-39-out
port-4-in
port-4-out
port-40-in
port-40-out
port-41-in
port-41-out
port-42-in
port-42-out
port-43-in
port-43-out
port-44-in
port-44-out
port-45-in
port-45-out
port-46-in
port-46-out
port-47-in
port-47-out
port-48-in
port-48-out
port-5-in
port-5-out
port-6-in
port-6-out
port-7-in
port-7-out
port-8-in
port-8-out
port-9-in
port-9-out
component [<Element {http://openconfig.net/yang/platform}component at 0x7fec005db880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dbe40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dba00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00594600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db5c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db1c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db2c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db9c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005dbc00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db6c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db7c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db8c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005db3c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d08c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d09c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d04c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d06c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d02c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d00c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d05c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d03c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d07c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d01c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006d0d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c70c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c71c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c72c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c73c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c74c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c75c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c76c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c77c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c78c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c79c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c7440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a69c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a64c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a62c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a60c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a63c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a61c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a65c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a67c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a66c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a68c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006a6a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069ae80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069ab80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069ab00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069af80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069ad00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069ac80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069aa80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069af00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069ac00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069aa00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069ae00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069ad80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0069a700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d1c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d8c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062dc40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d9c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d6c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d0c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062de40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062df40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062ddc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062da40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d4c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d5c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062dbc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062dac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062dec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062dcc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062dd40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062d7c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062db40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0062dfc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c62c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c64c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c63c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c61c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c60c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c67c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c65c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c66c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c69c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c68c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006c6b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f76c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f71c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f75c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f70c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f78c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f79c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f74c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f73c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f77c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f72c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f7880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec04b107c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec04b10f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061dc00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061de00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061da00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061dd00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061dc80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061db00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061df00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061dd80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061df80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061da80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061de80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061db80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0061d700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f80c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f81c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f82c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f83c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f84c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f85c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f86c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f87c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f88c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f89c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8c80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005f8fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006150c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006151c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006152c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006153c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006154c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006155c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006156c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006157c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006158c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec006159c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615a00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615a40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615a80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615ac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615b00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615b40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615b80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615bc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615c00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615c40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615c80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615cc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615d00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615d40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615d80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615dc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615e00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615e40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615e80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615ec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615f00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615f40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615f80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec00615fc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea0c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea1c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea2c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea3c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea4c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea5c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea6c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea7c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea8c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ea9c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaa00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaa40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaa80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eab00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eab40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eab80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eabc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eac00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eac40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eac80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eacc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ead00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ead40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005ead80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eadc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eae00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eae40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eae80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaec0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaf00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaf40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eaf80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec005eafc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d040>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d080>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d0c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d100>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d140>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d180>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d1c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d200>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d240>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d280>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d2c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d300>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d340>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d380>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d3c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d400>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d440>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d480>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d4c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d500>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d540>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d580>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d5c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d600>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d640>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d680>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d6c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d700>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d740>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d780>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d7c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d800>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d840>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d880>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d8c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d900>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d940>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d980>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057d9c0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057da00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057da40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057da80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dac0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057db00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057db40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057db80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dbc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dc00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dc40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dc80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dcc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dd00>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dd40>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057dd80>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057ddc0>, <Element {http://openconfig.net/yang/platform}component at 0x7fec0057de00>]
WBSS-1
WBSS-10
WBSS-11
WBSS-12
WBSS-13
WBSS-14
WBSS-15
WBSS-16
WBSS-17
WBSS-18
WBSS-19
WBSS-2
WBSS-20
WBSS-21
WBSS-22
WBSS-23
WBSS-24
WBSS-25
WBSS-26
WBSS-27
WBSS-28
WBSS-29
WBSS-3
WBSS-30
WBSS-31
WBSS-32
WBSS-4
WBSS-5
WBSS-6
WBSS-7
WBSS-8
WBSS-9
WSS-1
WSS-10
WSS-11
WSS-12
WSS-2
WSS-3
WSS-4
WSS-5
WSS-6
WSS-7
WSS-8
WSS-9
int-connection-1
int-connection-10
int-connection-100
int-connection-101
int-connection-102
int-connection-103
int-connection-104
int-connection-105
int-connection-106
int-connection-107
int-connection-108
int-connection-109
int-connection-11
int-connection-110
int-connection-111
int-connection-112
int-connection-113
int-connection-114
int-connection-115
int-connection-116
int-connection-117
int-connection-118
int-connection-119
int-connection-12
int-connection-120
int-connection-121
int-connection-122
int-connection-123
int-connection-124
int-connection-125
int-connection-126
int-connection-127
int-connection-128
int-connection-129
int-connection-13
int-connection-130
int-connection-131
int-connection-132
int-connection-133
int-connection-134
int-connection-135
int-connection-136
int-connection-137
int-connection-138
int-connection-139
int-connection-14
int-connection-140
int-connection-141
int-connection-142
int-connection-143
int-connection-144
int-connection-145
int-connection-146
int-connection-147
int-connection-148
int-connection-149
int-connection-15
int-connection-150
int-connection-151
int-connection-152
int-connection-153
int-connection-154
int-connection-155
int-connection-156
int-connection-157
int-connection-158
int-connection-159
int-connection-16
int-connection-160
int-connection-161
int-connection-162
int-connection-163
int-connection-164
int-connection-165
int-connection-166
int-connection-167
int-connection-168
int-connection-169
int-connection-17
int-connection-170
int-connection-171
int-connection-172
int-connection-173
int-connection-174
int-connection-175
int-connection-176
int-connection-177
int-connection-178
int-connection-179
int-connection-18
int-connection-180
int-connection-181
int-connection-182
int-connection-183
int-connection-184
int-connection-185
int-connection-186
int-connection-187
int-connection-188
int-connection-189
int-connection-19
int-connection-190
int-connection-191
int-connection-192
int-connection-193
int-connection-194
int-connection-195
int-connection-196
int-connection-197
int-connection-198
int-connection-199
int-connection-2
int-connection-20
int-connection-200
int-connection-201
int-connection-202
int-connection-203
int-connection-204
int-connection-205
int-connection-206
int-connection-207
int-connection-208
int-connection-209
int-connection-21
int-connection-210
int-connection-211
int-connection-212
int-connection-213
int-connection-214
int-connection-215
int-connection-216
int-connection-217
int-connection-218
int-connection-219
int-connection-22
int-connection-220
int-connection-221
int-connection-222
int-connection-223
int-connection-224
int-connection-225
int-connection-226
int-connection-227
int-connection-228
int-connection-229
int-connection-23
int-connection-230
int-connection-231
int-connection-232
int-connection-233
int-connection-234
int-connection-235
int-connection-236
int-connection-237
int-connection-238
int-connection-239
int-connection-24
int-connection-240
int-connection-241
int-connection-242
int-connection-243
int-connection-244
int-connection-245
int-connection-246
int-connection-247
int-connection-248
int-connection-249
int-connection-25
int-connection-250
int-connection-251
int-connection-252
int-connection-253
int-connection-254
int-connection-255
int-connection-256
int-connection-257
int-connection-258
int-connection-259
int-connection-26
int-connection-260
int-connection-261
int-connection-262
int-connection-263
int-connection-264
int-connection-265
int-connection-266
int-connection-267
int-connection-268
int-connection-269
int-connection-27
int-connection-270
int-connection-271
int-connection-272
int-connection-273
int-connection-274
int-connection-275
int-connection-276
int-connection-277
int-connection-278
int-connection-279
int-connection-28
int-connection-280
int-connection-281
int-connection-282
int-connection-283
int-connection-284
int-connection-285
int-connection-286
int-connection-287
int-connection-288
int-connection-289
int-connection-29
int-connection-290
int-connection-291
int-connection-292
int-connection-293
int-connection-294
int-connection-295
int-connection-296
int-connection-297
int-connection-298
int-connection-299
int-connection-3
int-connection-30
int-connection-300
int-connection-301
int-connection-302
int-connection-303
int-connection-304
int-connection-305
int-connection-306
int-connection-307
int-connection-308
int-connection-309
int-connection-31
int-connection-310
int-connection-311
int-connection-312
int-connection-313
int-connection-314
int-connection-315
int-connection-316
int-connection-317
int-connection-318
int-connection-319
int-connection-32
int-connection-320
int-connection-321
int-connection-322
int-connection-323
int-connection-324
int-connection-325
int-connection-326
int-connection-327
int-connection-328
int-connection-329
int-connection-33
int-connection-330
int-connection-331
int-connection-332
int-connection-333
int-connection-334
int-connection-335
int-connection-336
int-connection-337
int-connection-338
int-connection-339
int-connection-34
int-connection-340
int-connection-341
int-connection-342
int-connection-343
int-connection-344
int-connection-345
int-connection-346
int-connection-347
int-connection-348
int-connection-349
int-connection-35
int-connection-350
int-connection-351
int-connection-352
int-connection-353
int-connection-354
int-connection-355
int-connection-356
int-connection-357
int-connection-358
int-connection-359
int-connection-36
int-connection-360
int-connection-361
int-connection-362
int-connection-363
int-connection-364
int-connection-365
int-connection-366
int-connection-367
int-connection-368
int-connection-369
int-connection-37
int-connection-370
int-connection-371
int-connection-372
int-connection-373
int-connection-374
int-connection-375
int-connection-376
int-connection-377
int-connection-378
int-connection-379
int-connection-38
int-connection-380
int-connection-381
int-connection-382
int-connection-383
int-connection-384
int-connection-385
int-connection-386
int-connection-387
int-connection-388
int-connection-389
int-connection-39
int-connection-390
int-connection-391
int-connection-392
int-connection-393
int-connection-394
int-connection-395
int-connection-396
int-connection-397
int-connection-398
int-connection-399
int-connection-4
int-connection-40
int-connection-400
int-connection-401
int-connection-402
int-connection-403
int-connection-404
int-connection-405
int-connection-406
int-connection-407
int-connection-408
int-connection-409
int-connection-41
int-connection-410
int-connection-411
int-connection-412
int-connection-413
int-connection-414
int-connection-415
int-connection-416
int-connection-417
int-connection-418
int-connection-419
int-connection-42
int-connection-420
int-connection-421
int-connection-422
int-connection-423
int-connection-424
int-connection-425
int-connection-426
int-connection-427
int-connection-428
int-connection-43
int-connection-44
int-connection-45
int-connection-46
int-connection-47
int-connection-48
int-connection-49
int-connection-5
int-connection-50
int-connection-51
int-connection-52
int-connection-53
int-connection-54
int-connection-55
int-connection-56
int-connection-57
int-connection-58
int-connection-59
int-connection-6
int-connection-60
int-connection-61
int-connection-62
int-connection-63
int-connection-64
int-connection-65
int-connection-66
int-connection-67
int-connection-68
int-connection-69
int-connection-7
int-connection-70
int-connection-71
int-connection-72
int-connection-73
int-connection-74
int-connection-75
int-connection-76
int-connection-77
int-connection-78
int-connection-79
int-connection-8
int-connection-80
int-connection-81
int-connection-82
int-connection-83
int-connection-84
int-connection-85
int-connection-86
int-connection-87
int-connection-88
int-connection-89
int-connection-9
int-connection-90
[2024-06-07 08:55:38,936] INFO:root:parameters {}
[2024-06-07 08:55:38,998] INFO:device.service.OpenConfigServicer: config from openconfigservicer {'channels': [], 'transceivers': {'transceiver': []}, 'interfaces': {'interface': ''}, 'channel_namespace': None, 'endpoints': [], 'device_name': 'R2', 'new_config': {'band_type': 'C_BAND', 'low-freq': 192006250, 'up-freq': 192206250, 'frequency': 192106250, 'band': 200000, 'ob_id': 1}, 'is_opticalband': True, 'flow': [['bcfb768c-e8fb-5e0b-9559-821d120b5410', '0']]}
[2024-06-07 08:55:39,035] INFO:device.service.OpenConfigServicer:device is device_id {
device_uuid {
uuid: "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6"
}
}
name: "R2"
device_type: "optical-roadm"
device_operational_status: DEVICEOPERATIONALSTATUS_ENABLED
device_drivers: DEVICEDRIVER_OC
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: "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6"
}
}
endpoint_uuid {
uuid: "053a62f6-2760-562a-b285-15a9b159c2c5"
}
}
name: "port-46-out"
endpoint_type: "MG_ON_OPTICAL_PORT_MEDIACHANNEL_OUTPUT"
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: "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6"
}
}
endpoint_uuid {
uuid: "0a9b56db-32f8-5c60-83af-7ceaa39c618e"
}
}
name: "port-2-out"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT"
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: "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6"
}
}
endpoint_uuid {
uuid: "0d103312-7c8c-5e8a-980f-f6863b42d0d3"
}
}
name: "port-10-out"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT"
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: "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6"
}
}
endpoint_uuid {
uuid: "0ee5d330-9700-5684-92c1-bcb6c4c8a3bc"
}
}
name: "port-8-out"
endpoint_type: "MG_ON_OPTICAL_PORT_WAVEBAND_OUTPUT"
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"