generated from openBackhaul/ApplicationOwnerRepositoryTemplate
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMicroWaveDeviceInventory+services.yaml
More file actions
1588 lines (1473 loc) · 117 KB
/
MicroWaveDeviceInventory+services.yaml
File metadata and controls
1588 lines (1473 loc) · 117 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
servers:
operation-servers:
own-oam:
basic:
- operation-name: /v1/register-yourself
uuid: mwdi-2-1-0-op-s-bm-000
- operation-name: /v1/embed-yourself
uuid: mwdi-2-1-0-op-s-bm-001
- operation-name: /v1/redirect-service-request-information
uuid: mwdi-2-1-0-op-s-bm-002
- operation-name: /v1/redirect-oam-request-information
uuid: mwdi-2-1-0-op-s-bm-003
- operation-name: /v1/end-subscription
uuid: mwdi-2-1-0-op-s-bm-004
- operation-name: /v1/inquire-oam-request-approvals
uuid: mwdi-2-1-0-op-s-bm-005
- operation-name: /v1/update-client
uuid: mwdi-2-1-0-op-s-bm-007
- operation-name: /v1/list-ltps-and-fcs
uuid: mwdi-2-1-0-op-s-bm-008
- operation-name: /v1/redirect-topology-change-information
uuid: mwdi-2-1-0-op-s-bm-009
- operation-name: /v1/update-operation-key
uuid: mwdi-2-1-0-op-s-bm-010
- operation-name: /v1/update-operation-client
uuid: mwdi-2-1-0-op-s-bm-011
- operation-name: /v1/inquire-basic-auth-approvals
uuid: mwdi-2-1-0-op-s-bm-012
- operation-name: /v1/dispose-remainders-of-deregistered-application
uuid: mwdi-2-1-0-op-s-bm-013
- operation-name: /v1/inform-about-preceding-release
uuid: mwdi-2-1-0-op-s-bm-014
- operation-name: /v1/update-client-of-subsequent-release
uuid: mwdi-2-1-0-op-s-bm-015
individual:
- operation-name: /v1/bequeath-your-data-and-die
uuid: mwdi-2-1-0-op-s-im-000
service:
basic:
- operation-name: /v1/start-application-in-generic-representation
uuid: mwdi-2-1-0-op-s-bs-000
operation-key: n.a.
- operation-name: /v1/inform-about-application
uuid: mwdi-2-1-0-op-s-bs-001
operation-key: n.a.
- operation-name: /v1/inform-about-application-in-generic-representation
uuid: mwdi-2-1-0-op-s-bs-002
operation-key: n.a.
- operation-name: /v1/inform-about-release-history
uuid: mwdi-2-1-0-op-s-bs-003
operation-key: n.a.
- operation-name: /v1/inform-about-release-history-in-generic-representation
uuid: mwdi-2-1-0-op-s-bs-004
operation-key: n.a.
- operation-name: /docs
uuid: mwdi-2-1-0-op-s-bs-005
operation-key: n.a.
individual:
- operation-name: /v1/regard-controller-attribute-value-change
uuid: mwdi-2-1-0-op-s-is-000
operation-key: n.a.
# receivers for device change/alarm notifications - deprecated since v2.0.0, but callbacks are to be used internally
- operation-name: /v1/regard-device-alarm
uuid: mwdi-2-1-0-op-s-is-002
operation-key: n.a.
- operation-name: /v1/regard-device-attribute-value-change
uuid: mwdi-2-1-0-op-s-is-003
operation-key: n.a.
- operation-name: /v1/regard-device-object-creation
uuid: mwdi-2-1-0-op-s-is-004
operation-key: n.a.
- operation-name: /v1/regard-device-object-deletion
uuid: mwdi-2-1-0-op-s-is-005
operation-key: n.a.
# ordinary services
- operation-name: /v1/provide-list-of-connected-devices
uuid: mwdi-2-1-0-op-s-is-010
# deprecated since v2.0.0
operation-key: n.a.
- operation-name: /v1/provide-list-of-device-interfaces
uuid: mwdi-2-1-0-op-s-is-011
operation-key: n.a.
- operation-name: /v1/provide-list-of-actual-device-equipment
uuid: mwdi-2-1-0-op-s-is-012
operation-key: n.a.
- operation-name: /v1/provide-list-of-parallel-links
uuid: mwdi-2-1-0-op-s-is-013
operation-key: n.a.
- operation-name: /v1/provide-list-of-links
uuid: mwdi-2-1-0-op-s-is-014
operation-key: n.a.
- operation-name: /v1/provide-list-of-link-ports
uuid: mwdi-2-1-0-op-s-is-015
operation-key: n.a.
- operation-name: /v1/provide-data-of-all-links
uuid: mwdi-2-1-0-op-s-is-016
operation-key: n.a.
- operation-name: /v1/provide-data-of-all-link-ports
uuid: mwdi-2-1-0-op-s-is-017
operation-key: n.a.
- operation-name: /v1/provide-device-status-metadata
uuid: mwdi-2-1-0-op-s-is-018
operation-key: n.a.
- operation-name: /v1/provide-cache-quality-statistics
uuid: mwdi-2-1-0-op-s-is-019
operation-key: n.a.
- operation-name: /v1/provide-list-of-cached-devices
uuid: mwdi-2-1-0-op-s-is-020
operation-key: n.a.
# offered subscriptions
- operation-name: /v1/notify-attribute-value-changes
uuid: mwdi-2-1-0-op-s-is-040
operation-key: n.a.
- operation-name: /v1/notify-object-creations
uuid: mwdi-2-1-0-op-s-is-041
operation-key: n.a.
- operation-name: /v1/notify-object-deletions
uuid: mwdi-2-1-0-op-s-is-042
operation-key: n.a.
# ressources provided from cache
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}
uuid: mwdi-2-1-0-op-s-is-100
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/alarms-1-0:alarm-pac/alarm-capability
uuid: mwdi-2-1-0-op-s-is-105
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/alarms-1-0:alarm-pac/alarm-configuration
uuid: mwdi-2-1-0-op-s-is-106
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/alarms-1-0:alarm-pac/current-alarms
uuid: mwdi-2-1-0-op-s-is-107
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/alarms-1-0:alarm-pac/alarm-event-records
uuid: mwdi-2-1-0-op-s-is-108
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/equipment={uuid}
uuid: mwdi-2-1-0-op-s-is-110
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/equipment={uuid}/connector={localId}
uuid: mwdi-2-1-0-op-s-is-111
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/equipment={uuid}/contained-holder={localId}
uuid: mwdi-2-1-0-op-s-is-112
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/equipment={uuid}/expected-equipment={localId}
uuid: mwdi-2-1-0-op-s-is-113
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/equipment={uuid}/actual-equipment
uuid: mwdi-2-1-0-op-s-is-114
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/firmware-1-0:firmware-collection
uuid: mwdi-2-1-0-op-s-is-120
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}
uuid: mwdi-2-1-0-op-s-is-121
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}/firmware-component-pac/firmware-component-capability
uuid: mwdi-2-1-0-op-s-is-122
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}/firmware-component-pac/firmware-component-status
uuid: mwdi-2-1-0-op-s-is-123
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection
uuid: mwdi-2-1-0-op-s-is-130
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}
uuid: mwdi-2-1-0-op-s-is-131
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}/co-channel-profile-1-0:co-channel-profile-pac/co-channel-profile-capability
uuid: mwdi-2-1-0-op-s-is-135
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}/co-channel-profile-1-0:co-channel-profile-pac/co-channel-profile-configuration
uuid: mwdi-2-1-0-op-s-is-136
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}/policing-profile-1-0:policing-profile-pac/policing-profile-capability
uuid: mwdi-2-1-0-op-s-is-145
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}/policing-profile-1-0:policing-profile-pac/policing-profile-configuration
uuid: mwdi-2-1-0-op-s-is-146
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}/qos-profile-1-0:qos-profile-pac/qos-profile-capability
uuid: mwdi-2-1-0-op-s-is-150
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}/qos-profile-1-0:qos-profile-pac/qos-profile-configuration
uuid: mwdi-2-1-0-op-s-is-151
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}/scheduler-profile-1-0:scheduler-profile-pac/scheduler-profile-capability
uuid: mwdi-2-1-0-op-s-is-155
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}/scheduler-profile-1-0:scheduler-profile-pac/scheduler-profile-configuration
uuid: mwdi-2-1-0-op-s-is-156
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}/wred-profile-1-0:wred-profile-pac/wred-profile-capability
uuid: mwdi-2-1-0-op-s-is-160
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}/wred-profile-1-0:wred-profile-pac/wred-profile-configuration
uuid: mwdi-2-1-0-op-s-is-161
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}/wred-template-profile-1-0:wred-template-profile-pac/wred-template-profile-capability
uuid: mwdi-2-1-0-op-s-is-162
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/profile-collection/profile={uuid}/wred-template-profile-1-0:wred-template-profile-pac/wred-template-profile-configuration
uuid: mwdi-2-1-0-op-s-is-163
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}
uuid: mwdi-2-1-0-op-s-is-200
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/ltp-augment-1-0:ltp-augment-pac
uuid: mwdi-2-1-0-op-s-is-201
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/forwarding-domain={uuid}
uuid: mwdi-2-1-0-op-s-is-202
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/forwarding-domain={uuid}/fc={uuid1}
uuid: mwdi-2-1-0-op-s-is-203
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/forwarding-domain={uuid}/fc={uuid1}/fc-port={localId}
uuid: mwdi-2-1-0-op-s-is-204
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/link={uuid}
uuid: mwdi-2-1-0-op-s-get-is-205, mwdi-2-1-0-op-s-put-is-205, mwdi-2-1-0-op-s-del-is-205
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/link={uuid}/link-port={localId}
uuid: mwdi-2-1-0-op-s-get-is-206, mwdi-2-1-0-op-s-put-is-206, mwdi-2-1-0-op-s-del-is-206
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-capability
uuid: mwdi-2-1-0-op-s-is-210
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-configuration
uuid: mwdi-2-1-0-op-s-is-211
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-status
uuid: mwdi-2-1-0-op-s-is-212
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-historical-performances
uuid: mwdi-2-1-0-op-s-is-214
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-capability
uuid: mwdi-2-1-0-op-s-is-220
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-configuration
uuid: mwdi-2-1-0-op-s-is-221
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-status
uuid: mwdi-2-1-0-op-s-is-222
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-historical-performances
uuid: mwdi-2-1-0-op-s-is-224
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-capability
uuid: mwdi-2-1-0-op-s-is-230
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-configuration
uuid: mwdi-2-1-0-op-s-is-231
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-status
uuid: mwdi-2-1-0-op-s-is-232
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-historical-performances
uuid: mwdi-2-1-0-op-s-is-234
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-capability
uuid: mwdi-2-1-0-op-s-is-240
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-configuration
uuid: mwdi-2-1-0-op-s-is-241
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-status
uuid: mwdi-2-1-0-op-s-is-242
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-capability
uuid: mwdi-2-1-0-op-s-is-250
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-configuration
uuid: mwdi-2-1-0-op-s-is-251
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-status
uuid: mwdi-2-1-0-op-s-is-252
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-historical-performances
uuid: mwdi-2-1-0-op-s-is-254
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/vlan-interface-1-0:vlan-interface-pac/vlan-interface-capability
uuid: mwdi-2-1-0-op-s-is-260
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/vlan-interface-1-0:vlan-interface-pac/vlan-interface-configuration
uuid: mwdi-2-1-0-op-s-is-261
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-capability
uuid: mwdi-2-1-0-op-s-is-270
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-configuration
uuid: mwdi-2-1-0-op-s-is-271
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-status
uuid: mwdi-2-1-0-op-s-is-272
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=cache/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-historical-performances
uuid: mwdi-2-1-0-op-s-is-274
operation-key: n.a.
# ressources retrieved from devices
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}
uuid: mwdi-2-1-0-op-s-is-400
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/alarms-1-0:alarm-pac/alarm-capability
uuid: mwdi-2-1-0-op-s-is-405
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/alarms-1-0:alarm-pac/alarm-configuration
uuid: mwdi-2-1-0-op-s-is-406
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/alarms-1-0:alarm-pac/current-alarms
uuid: mwdi-2-1-0-op-s-is-407
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/alarms-1-0:alarm-pac/alarm-event-records
uuid: mwdi-2-1-0-op-s-is-408
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/equipment={uuid}
uuid: mwdi-2-1-0-op-s-is-410
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/equipment={uuid}/connector={localId}
uuid: mwdi-2-1-0-op-s-is-411
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/equipment={uuid}/contained-holder={localId}
uuid: mwdi-2-1-0-op-s-is-412
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/equipment={uuid}/expected-equipment={localId}
uuid: mwdi-2-1-0-op-s-is-413
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/equipment={uuid}/actual-equipment
uuid: mwdi-2-1-0-op-s-is-414
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/firmware-1-0:firmware-collection
uuid: mwdi-2-1-0-op-s-is-420
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}
uuid: mwdi-2-1-0-op-s-is-421
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}/firmware-component-pac/firmware-component-capability
uuid: mwdi-2-1-0-op-s-is-422
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}/firmware-component-pac/firmware-component-status
uuid: mwdi-2-1-0-op-s-is-423
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection
uuid: mwdi-2-1-0-op-s-is-430
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}
uuid: mwdi-2-1-0-op-s-is-431
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}/co-channel-profile-1-0:co-channel-profile-pac/co-channel-profile-capability
uuid: mwdi-2-1-0-op-s-is-435
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}/co-channel-profile-1-0:co-channel-profile-pac/co-channel-profile-configuration
uuid: mwdi-2-1-0-op-s-is-436
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}/policing-profile-1-0:policing-profile-pac/policing-profile-capability
uuid: mwdi-2-1-0-op-s-is-445
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}/policing-profile-1-0:policing-profile-pac/policing-profile-configuration
uuid: mwdi-2-1-0-op-s-is-446
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}/qos-profile-1-0:qos-profile-pac/qos-profile-capability
uuid: mwdi-2-1-0-op-s-is-450
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}/qos-profile-1-0:qos-profile-pac/qos-profile-configuration
uuid: mwdi-2-1-0-op-s-is-451
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}/scheduler-profile-1-0:scheduler-profile-pac/scheduler-profile-capability
uuid: mwdi-2-1-0-op-s-is-455
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}/scheduler-profile-1-0:scheduler-profile-pac/scheduler-profile-configuration
uuid: mwdi-2-1-0-op-s-is-456
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}/wred-profile-1-0:wred-profile-pac/wred-profile-capability
uuid: mwdi-2-1-0-op-s-is-460
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}/wred-profile-1-0:wred-profile-pac/wred-profile-configuration
uuid: mwdi-2-1-0-op-s-is-461
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}/wred-template-profile-1-0:wred-template-profile-pac/wred-template-profile-capability
uuid: mwdi-2-1-0-op-s-is-462
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/profile-collection/profile={uuid}/wred-template-profile-1-0:wred-template-profile-pac/wred-template-profile-configuration
uuid: mwdi-2-1-0-op-s-is-463
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}
uuid: mwdi-2-1-0-op-s-is-500
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/ltp-augment-1-0:ltp-augment-pac
uuid: mwdi-2-1-0-op-s-is-501
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/forwarding-domain={uuid}
uuid: mwdi-2-1-0-op-s-is-502
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/forwarding-domain={uuid}/fc={uuid1}
uuid: mwdi-2-1-0-op-s-is-503
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/forwarding-domain={uuid}/fc={uuid1}/fc-port={localId}
uuid: mwdi-2-1-0-op-s-is-504
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-capability
uuid: mwdi-2-1-0-op-s-is-510
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-configuration
uuid: mwdi-2-1-0-op-s-is-511
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-status
uuid: mwdi-2-1-0-op-s-is-512
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-current-performance
uuid: mwdi-2-1-0-op-s-is-513
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-historical-performances
uuid: mwdi-2-1-0-op-s-is-514
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-capability
uuid: mwdi-2-1-0-op-s-is-520
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-configuration
uuid: mwdi-2-1-0-op-s-is-521
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-status
uuid: mwdi-2-1-0-op-s-is-522
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-current-performance
uuid: mwdi-2-1-0-op-s-is-523
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-historical-performances
uuid: mwdi-2-1-0-op-s-is-524
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-capability
uuid: mwdi-2-1-0-op-s-is-530
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-configuration
uuid: mwdi-2-1-0-op-s-is-531
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-status
uuid: mwdi-2-1-0-op-s-is-532
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-current-performance
uuid: mwdi-2-1-0-op-s-is-533
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-historical-performances
uuid: mwdi-2-1-0-op-s-is-534
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-capability
uuid: mwdi-2-1-0-op-s-is-540
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-configuration
uuid: mwdi-2-1-0-op-s-is-541
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-status
uuid: mwdi-2-1-0-op-s-is-542
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-capability
uuid: mwdi-2-1-0-op-s-is-550
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-configuration
uuid: mwdi-2-1-0-op-s-is-551
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-status
uuid: mwdi-2-1-0-op-s-is-552
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-current-performance
uuid: mwdi-2-1-0-op-s-is-553
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-historical-performances
uuid: mwdi-2-1-0-op-s-is-554
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/vlan-interface-1-0:vlan-interface-pac/vlan-interface-capability
uuid: mwdi-2-1-0-op-s-is-560
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/vlan-interface-1-0:vlan-interface-pac/vlan-interface-configuration
uuid: mwdi-2-1-0-op-s-is-561
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-capability
uuid: mwdi-2-1-0-op-s-is-570
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-configuration
uuid: mwdi-2-1-0-op-s-is-571
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-status
uuid: mwdi-2-1-0-op-s-is-572
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-current-performance
uuid: mwdi-2-1-0-op-s-is-573
operation-key: n.a.
- operation-name: /core-model-1-4:network-control-domain=live/control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-historical-performances
uuid: mwdi-2-1-0-op-s-is-574
operation-key: n.a.
http-server:
own-application-name: MicroWaveDeviceInventory
own-release-number: 2.1.0
uuid: mwdi-2-1-0-http-s-000
application-purpose: Provide cached ControlConstruct data for devices in connected state on the Controller
owner-name: Katharina Mohr
owner-email-address: Katharina.Mohr.external@telefonica.com
release-list:
- release-number: 1.0.1
release-date: 27.10.2023
changes: Initial version
- release-number: 1.1.2
release-date: 23.11.2023
changes: Adds FD, FC, FcPort, Link and LinkPort
- release-number: 1.2.1
release-date: 28.11.2024
changes: Adds new services for link, linkport, status metadata and update to AppPattern 2.1.2
- release-number: 1.2.2
release-date: 15.03.2025
changes: Adds corrections for findings in 1.2.1 specification
- release-number: 2.0.0
release-date: 31.05.2025
changes: Changes internal CC retrieval process, introduces Kafka integration and quality measurement process.
- release-number: 2.0.1
release-date: 30.06.2025
changes: Adds fixes for findings in and completes changes missing from 2.0.0.
- release-number: 2.1.0
release-date: 13.03.2026
changes: Adds update time information to CC, adds already implemented changes to spec.
tcp-server:
- description: Without TLS layer
local-protocol: http
own-ip-address: 127.0.0.1
own-tcp-port: 4024
uuid: mwdi-2-1-0-tcp-s-000
clients:
- http-client:
application-name: ElasticSearch
release-number: 1.0.0
uuid: mwdi-2-1-0-http-c-es-1-0-0-000
tcp-client:
remote-protocol: http
ip-address: 127.0.0.1
tcp-port: 3015
uuid: mwdi-2-1-0-tcp-c-es-1-0-0-000
elasticsearch-client:
uuid: mwdi-2-1-0-es-c-es-1-0-0-000
index-alias: 7
operation-clients:
get:
- operation-name: /
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-000
- operation-name: /control-construct={mountName}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-100
- operation-name: /control-construct={mountName}/alarms-1-0:alarm-pac/alarm-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-105
- operation-name: /control-construct={mountName}/alarms-1-0:alarm-pac/alarm-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-106
- operation-name: /control-construct={mountName}/alarms-1-0:alarm-pac/current-alarms
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-107
- operation-name: /control-construct={mountName}/alarms-1-0:alarm-pac/alarm-event-records
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-108
- operation-name: /control-construct={mountName}/equipment={uuid}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-110
- operation-name: /control-construct={mountName}/equipment={uuid}/connector={localId}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-111
- operation-name: /control-construct={mountName}/equipment={uuid}/contained-holder={localId}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-112
- operation-name: /control-construct={mountName}/equipment={uuid}/expected-equipment={localId}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-113
- operation-name: /control-construct={mountName}/equipment={uuid}/actual-equipment
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-114
- operation-name: /control-construct={mountName}/firmware-1-0:firmware-collection
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-120
- operation-name: /control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-121
- operation-name: /control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}/firmware-component-pac/firmware-component-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-122
- operation-name: /control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}/firmware-component-pac/firmware-component-status
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-123
- operation-name: /control-construct={mountName}/profile-collection
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-130
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-131
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/co-channel-profile-1-0:co-channel-profile-pac/co-channel-profile-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-135
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/co-channel-profile-1-0:co-channel-profile-pac/co-channel-profile-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-136
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/policing-profile-1-0:policing-profile-pac/policing-profile-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-145
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/policing-profile-1-0:policing-profile-pac/policing-profile-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-146
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/qos-profile-1-0:qos-profile-pac/qos-profile-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-150
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/qos-profile-1-0:qos-profile-pac/qos-profile-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-151
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/scheduler-profile-1-0:scheduler-profile-pac/scheduler-profile-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-155
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/scheduler-profile-1-0:scheduler-profile-pac/scheduler-profile-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-156
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/wred-profile-1-0:wred-profile-pac/wred-profile-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-160
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/wred-profile-1-0:wred-profile-pac/wred-profile-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-161
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/wred-template-profile-1-0:wred-template-profile-pac/wred-template-profile-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-162
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/wred-template-profile-1-0:wred-template-profile-pac/wred-template-profile-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-163
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-200
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/ltp-augment-1-0:ltp-augment-pac
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-201
- operation-name: /control-construct={mountName}/forwarding-domain={uuid}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-202
- operation-name: /control-construct={mountName}/forwarding-domain={uuid}/fc={uuid1}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-203
- operation-name: /control-construct={mountName}/forwarding-domain={uuid}/fc={uuid1}/fc-port={localId}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-204
- operation-name: /link={uuid}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-205
- operation-name: /link={uuid}/link-port={localId}
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-206
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-210
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-211
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-status
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-212
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-historical-performances
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-214
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-220
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-221
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-status
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-222
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-historical-performances
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-224
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-230
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-231
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-status
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-232
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-historical-performances
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-234
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-240
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-241
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-status
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-242
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-250
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-251
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-status
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-252
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-historical-performances
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-254
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/vlan-interface-1-0:vlan-interface-pac/vlan-interface-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-260
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/vlan-interface-1-0:vlan-interface-pac/vlan-interface-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-261
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-capability
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-270
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-configuration
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-271
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-status
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-272
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-historical-performances
uuid: mwdi-2-1-0-op-c-get-es-1-0-0-274
put:
- operation-name: /control-construct={mountName}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-400
- operation-name: /control-construct={mountName}/alarms-1-0:alarm-pac/alarm-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-405
- operation-name: /control-construct={mountName}/alarms-1-0:alarm-pac/alarm-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-406
- operation-name: /control-construct={mountName}/alarms-1-0:alarm-pac/current-alarms
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-407
- operation-name: /control-construct={mountName}/alarms-1-0:alarm-pac/alarm-event-records
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-408
- operation-name: /control-construct={mountName}/equipment={uuid}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-410
- operation-name: /control-construct={mountName}/equipment={uuid}/connector={localId}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-411
- operation-name: /control-construct={mountName}/equipment={uuid}/contained-holder={localId}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-412
- operation-name: /control-construct={mountName}/equipment={uuid}/expected-equipment={localId}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-413
- operation-name: /control-construct={mountName}/equipment={uuid}/actual-equipment
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-414
- operation-name: /control-construct={mountName}/firmware-1-0:firmware-collection
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-420
- operation-name: /control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-421
- operation-name: /control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}/firmware-component-pac/firmware-component-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-422
- operation-name: /control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}/firmware-component-pac/firmware-component-status
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-423
- operation-name: /control-construct={mountName}/profile-collection
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-430
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-431
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/co-channel-profile-1-0:co-channel-profile-pac/co-channel-profile-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-435
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/co-channel-profile-1-0:co-channel-profile-pac/co-channel-profile-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-436
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/policing-profile-1-0:policing-profile-pac/policing-profile-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-445
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/policing-profile-1-0:policing-profile-pac/policing-profile-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-446
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/qos-profile-1-0:qos-profile-pac/qos-profile-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-450
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/qos-profile-1-0:qos-profile-pac/qos-profile-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-451
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/scheduler-profile-1-0:scheduler-profile-pac/scheduler-profile-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-455
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/scheduler-profile-1-0:scheduler-profile-pac/scheduler-profile-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-456
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/wred-profile-1-0:wred-profile-pac/wred-profile-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-460
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/wred-profile-1-0:wred-profile-pac/wred-profile-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-461
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/wred-template-profile-1-0:wred-template-profile-pac/wred-template-profile-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-462
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/wred-template-profile-1-0:wred-template-profile-pac/wred-template-profile-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-463
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-500
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/ltp-augment-1-0:ltp-augment-pac
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-501
- operation-name: /control-construct={mountName}/forwarding-domain={uuid}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-502
- operation-name: /control-construct={mountName}/forwarding-domain={uuid}/fc={uuid1}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-503
- operation-name: /control-construct={mountName}/forwarding-domain={uuid}/fc={uuid1}/fc-port={localId}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-504
- operation-name: /link={uuid}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-505
- operation-name: /link={uuid}/link-port={localId}
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-506
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-510
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-511
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-status
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-512
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-historical-performances
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-514
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-520
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-521
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-status
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-522
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-historical-performances
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-524
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-530
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-531
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-status
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-532
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-historical-performances
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-534
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-540
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-541
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-status
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-542
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-550
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-551
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-status
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-552
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-historical-performances
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-554
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/vlan-interface-1-0:vlan-interface-pac/vlan-interface-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-560
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/vlan-interface-1-0:vlan-interface-pac/vlan-interface-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-561
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-capability
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-570
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-configuration
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-571
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-status
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-572
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-historical-performances
uuid: mwdi-2-1-0-op-c-put-es-1-0-0-574
delete:
- operation-name: /control-construct={mountName}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-700
- operation-name: /control-construct={mountName}/alarms-1-0:alarm-pac/alarm-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-705
- operation-name: /control-construct={mountName}/alarms-1-0:alarm-pac/alarm-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-706
- operation-name: /control-construct={mountName}/alarms-1-0:alarm-pac/current-alarms
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-707
- operation-name: /control-construct={mountName}/alarms-1-0:alarm-pac/alarm-event-records
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-708
- operation-name: /control-construct={mountName}/equipment={uuid}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-710
- operation-name: /control-construct={mountName}/equipment={uuid}/connector={localId}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-711
- operation-name: /control-construct={mountName}/equipment={uuid}/contained-holder={localId}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-712
- operation-name: /control-construct={mountName}/equipment={uuid}/expected-equipment={localId}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-713
- operation-name: /control-construct={mountName}/equipment={uuid}/actual-equipment
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-714
- operation-name: /control-construct={mountName}/firmware-1-0:firmware-collection
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-720
- operation-name: /control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-721
- operation-name: /control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}/firmware-component-pac/firmware-component-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-722
- operation-name: /control-construct={mountName}/firmware-1-0:firmware-collection/firmware-component-list={localId}/firmware-component-pac/firmware-component-status
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-723
- operation-name: /control-construct={mountName}/profile-collection
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-730
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-731
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/co-channel-profile-1-0:co-channel-profile-pac/co-channel-profile-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-735
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/co-channel-profile-1-0:co-channel-profile-pac/co-channel-profile-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-736
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/policing-profile-1-0:policing-profile-pac/policing-profile-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-745
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/policing-profile-1-0:policing-profile-pac/policing-profile-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-746
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/qos-profile-1-0:qos-profile-pac/qos-profile-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-750
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/qos-profile-1-0:qos-profile-pac/qos-profile-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-751
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/scheduler-profile-1-0:scheduler-profile-pac/scheduler-profile-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-755
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/scheduler-profile-1-0:scheduler-profile-pac/scheduler-profile-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-756
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/wred-profile-1-0:wred-profile-pac/wred-profile-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-760
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/wred-profile-1-0:wred-profile-pac/wred-profile-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-761
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/wred-template-profile-1-0:wred-template-profile-pac/wred-template-profile-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-762
- operation-name: /control-construct={mountName}/profile-collection/profile={uuid}/wred-template-profile-1-0:wred-template-profile-pac/wred-template-profile-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-763
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-800
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/ltp-augment-1-0:ltp-augment-pac
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-801
- operation-name: /control-construct={mountName}/forwarding-domain={uuid}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-802
- operation-name: /control-construct={mountName}/forwarding-domain={uuid}/fc={uuid1}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-803
- operation-name: /control-construct={mountName}/forwarding-domain={uuid}/fc={uuid1}/fc-port={localId}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-804
- operation-name: /link={uuid}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-805
- operation-name: /link={uuid}/link-port={localId}
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-806
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-810
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-811
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-status
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-812
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/air-interface-2-0:air-interface-pac/air-interface-historical-performances
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-814
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-820
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-821
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-status
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-822
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/ethernet-container-2-0:ethernet-container-pac/ethernet-container-historical-performances
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-824
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-830
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-831
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-status
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-832
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/hybrid-mw-structure-2-0:hybrid-mw-structure-pac/hybrid-mw-structure-historical-performances
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-834
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-840
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-841
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/mac-interface-1-0:mac-interface-pac/mac-interface-status
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-842
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-850
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-851
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-status
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-852
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/pure-ethernet-structure-2-0:pure-ethernet-structure-pac/pure-ethernet-structure-historical-performances
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-854
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/vlan-interface-1-0:vlan-interface-pac/vlan-interface-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-860
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/vlan-interface-1-0:vlan-interface-pac/vlan-interface-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-861
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-capability
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-870
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-configuration
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-871
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-status
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-872
- operation-name: /control-construct={mountName}/logical-termination-point={uuid}/layer-protocol={localId}/wire-interface-2-0:wire-interface-pac/wire-interface-historical-performances
uuid: mwdi-2-1-0-op-c-del-es-1-0-0-874
- http-client:
application-name: KafkaMessageBus
release-number: 1.0.0
uuid: mwdi-2-1-0-http-c-kmb-1-0-0-000
tcp-client:
remote-protocol: http
ip-address: 127.0.0.1
tcp-port: 3017
uuid: mwdi-2-1-0-tcp-c-kmb-1-0-0-000
kafka-client:
uuid: mwdi-2-1-0-kmb-c-kmb-1-0-0-000
topic-name: device_change_notifications
- http-client:
application-name: KafkaMessageBus
release-number: 1.0.0
uuid: mwdi-2-1-0-http-c-kmb-1-0-0-001
tcp-client:
remote-protocol: http
ip-address: 127.0.0.1
tcp-port: 3017
uuid: mwdi-2-1-0-tcp-c-kmb-1-0-0-001
kafka-client:
uuid: mwdi-2-1-0-kmb-c-kmb-1-0-0-001