forked from Open-Network-Models-and-Interfaces-ONMI/TAPI
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchangelog.txt
1054 lines (759 loc) · 35.7 KB
/
changelog.txt
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
commit fe2ab15048563048f5c989fae8645c4429b888fc
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu Oct 14 19:30:00 2021 +0200
Added/improved comments.
commit f78701aa2e871c8321e865f776c4350515488644
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu Oct 14 15:16:53 2021 +0200
Adjustments to .yaml:
1) "/:" --> ":"
2) /data/tapi-common:context/tapi-connectivity:connectivity-context:
ConnectivityContextWrapper --> ConnectivityContext
commit 8108be56d18bd54aeb8acb1368d5a4ae9effd411
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu Oct 14 01:35:04 2021 +0200
Diagram adjustments
commit bce671091e85f23318842aefed9cbfeb70aab843
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed Oct 13 12:40:24 2021 +0200
TapiTopology, typo in LatencyCharacteristic, queing/queuing.
commit 7fbb55df57886374ee9353200b708e3cf65f633a
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed Oct 13 09:02:17 2021 +0200
Minor diagram adjustments
commit b07ada9d4d933b543caa112dd638cb20a26d9aeb
Author: amazzini <andrea.mazzini@nokia.com>
Date: Mon Oct 11 17:31:02 2021 +0200
Last UUID types.
TapiConnectivity: ConnectivityConstraint, the connectionInclusion/Exclusion attributes are now of “connection” type, no longer the simple UUID.
commit caa24ef111bedf81dce5ca25c2b6a99794991819
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sat Oct 9 18:46:54 2021 +0200
Fixed InterRuleGroup augments ObjectNotification. Yang already ok.
commit 771d60fb776a9dfde9a0ddb53bd0775c44e064c2
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Oct 8 17:44:55 2021 +0200
Removal of usesess associations to datatypes (no impact on yang)
commit d432ba582ae1a59becccd9add74b63726b02adf1
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu Oct 7 19:01:15 2021 +0200
Minor adjustments
commit ae6a60a6d60071511b5b19726b3c163f95a5e5cf
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed Oct 6 19:41:23 2021 +0200
Minor corrections in packages (moving all associations/abstractions)
commit 5f322e95b4d171e784271161ee6643668f8991c1
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed Oct 6 00:56:05 2021 +0200
Notification Type enum, added DETECTED_CONDITION to cover alarms/TCAs.
Removed supportedNotificationTypes and supportedObjectTypes from
NotificationSubscriptionService and corrected the association between
NotificationSubscriptionService and SubscriptionFilter from 1 to 1 to 1
to 0..*
commit c217373db2344e9882cbe57bdc05a9a13fef2c9f
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu Sep 30 00:37:03 2021 +0200
Notification, Fm, Oam, PathComputation:
TapiNotification: EventNotification signal includes two additional attributes: targetLocalObjectIdentifier, targetLocalObjectType.
TapiFm: updated comments of deprecated AlarmInfo and TcaInfo.
TapiOam: added LOOPBACK_TERMINAL and LOOPBACK_FACILITY Oam Job Types.
TapiPathComputation: TopologyConstraint, the include/excludePath attributes are now of “path” type, no longer the simple UUID.
commit 035dfd298abd942749765243f0c618b8f82e8b8c
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sun Sep 26 17:56:20 2021 +0200
Integration of Streaming and Fault Management
Now TapiStreaming behaves similarly to TapiNotification, i.e. it is
positioned at the core of the TAPI model.
TapiStreaming "augments" have been distributed: Each technology agnostic
module specifies its own augments to Streaming (and Notification).
commit 1be5b895101a1b556f3a909a2fcda0985e9f74eb
Author: amazzini <andrea.mazzini@nokia.com>
Date: Tue Sep 21 18:52:07 2021 +0200
Restored TapiNotification as "core" module
commit 617751fb457659578054ed355f1ea37cd70a60dc
Author: amazzini <andrea.mazzini@nokia.com>
Date: Tue Sep 21 00:27:29 2021 +0200
Minor corrections on diagrams
commit 78d64fbc0404f65f9b8f63a8a86adab05aef9c78
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sat Sep 18 01:19:15 2021 +0200
Minor corrections
commit 4c99b8da6ff7edae65eb0fa5a78272b79fe7a59d
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Sep 17 00:07:31 2021 +0200
Restructuring of TapiFm – TapiNotification – TapiStreaming relationships
Now TapiNotification behaves similarly to TapiStreaming, i.e. it imports
all technology agnostic modules.
TapiFm is imported by both TapiStreaming and TapiNotification, where the
augments to TapiFm:DetectedCondition (and deprecated Alarm/TcaInfo) are
specified.
TapiFm is no longer imported by any other module, but only by
TapiNotification and TapiStreaming.
commit 70f0e38f5281d4f1e86f1f69dc77e4afa4543913
Author: amazzini <andrea.mazzini@nokia.com>
Date: Tue Sep 14 00:33:33 2021 +0200
Several modifications for pre-release 2.3.1
See TAPI213vs23rc1Vs23Vs231.pdf for details
commit 2c1f7d6805f1e96b93f25ddfa132cc0cb4c4d6c3
Author: amazzini <andrea.mazzini@nokia.com>
Date: Tue Aug 17 19:41:44 2021 +0200
Updated changelog
commit 9c236e18649b0d5c1b74d0e673d1d21efe13fd09
Author: amazzini <andrea.mazzini@nokia.com>
Date: Tue Aug 17 19:05:19 2021 +0200
Renamed interdomain plug id attributes, diagram adjustments.
- TapiTopology: aligned the inter domain plug id attribute names with
RIA. From interDomainPlugIdSapi, interDomainPlugIdDapi to resp.
plugIdInterDomainLocalId, plugIdInterDomainRemoteId.
- Adjusted associations: CEPIsSupportedByParentNEP,
RouteIsDescribedByCEPs, LinkSupportedByPhysicalSpan,
NodeEdgePointSupportedByAccessPort.
- updated TAPI UML gendoc document and Diff document
commit 30558e5fa122dc0f0f67c2f78bdb075be61324d3
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Aug 6 02:31:03 2021 +0200
Several modifications for release 2.3
1. TapiCommon, new enumeration ConditionName.
2. TapiCommon, PmParameterName augments ConditionName.
3. TapiCommon, SIP direction from RW to RO.
4. TapiFm, PerceivedSeverityType, deprecated “CLEAR” severity.
5. TapiFm, Deprecated AlarmCategory, replaced by DetectorCategory.
6. TapiFm, AlarmConditionName augments ConditionName.
7. TapiFm, added ConditionType enumeration.
8. TapiFm, added SimpleDetectorState enumeration.
9. TapiNotification, added new EventNotification signal for alignment to
Streaming, with spec classes DetectedCondition, PmMetricInfo,
DetectorInfo, SimpleDetector.
10. TapiOam, OamJob, OamServicePoint reference from [1..*] to [0..*].
11. TapiOam, OamJob, added reference by name to CEP for simple OAM tasks
like loopback.
12. TapiOam, added to OamJob a reference to ConnectivityService, in case
the OamJob instance is not related to any OamService/Point but created
together with ConnectivityService through ConnectivityOamJob augment.
13. TapiOdu, copied diagram comments to class comments.
14. TapiPhotonicMedia, OtsiCapabilityPac, maxNumberOfOtsi and
supportedFecType from RW to RO.
15. TapiPhotonicMedia PowerManagementCapabilityPac, all attributes from
RW to RO.
16. TapiPhotonicMedia, copied diagram comments to class comments.
17. TapiTopology, Link direction description "Is applicable to simple
Links where all LinkEnds are BIDIRECTIONAL (the Link will be
BIDIRECTIONAL) or UNIDIRECTIONAL (the Link will be UNIDIRECTIONAL)" is
removed.
18. TapiTopology, comment on NEP/ inter-domain-plug-in-pac (ENNI
Identifier).
19. Aligned the ObjectType enumerations for Notification and Streaming.
commit 6e5ed6c71f4557de9640ee38dedf836fbcdf9659
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sat Jun 19 01:06:49 2021 +0200
Removed Gendoc.docx
commit dcc5ddaaa69734fe7b1effe91afdc7c7aad599b8
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sat Jun 19 00:58:53 2021 +0200
Replace Gendoc.docx with .pdf
TapiFm.di and .uml are same but result unstaged
commit 8e10bbdc8fd0f5a3cef454a116fb7add492c0fee
Merge: d93784b e4c1f7c
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Jun 18 16:00:57 2021 +0200
Merge pull request #512 from amazzini/develop
Revision of diagrams and other minor corrections
commit e4c1f7cdb286f07f749d899fcbe702b0ac9f39ce
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed Jun 9 12:21:33 2021 +0200
The complete TAPI Gendoc document
commit 6028a327094b5b4e06fda9e0bcbb46e636c5be7e
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed Jun 9 02:28:16 2021 +0200
Revision of diagrams and other minor corrections
commit d93784bbde24fe598ac5456d03a03d52ec75fee4
Merge: 58cf441 df3d32b
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu May 27 09:08:01 2021 +0200
Merge pull request #511 from amazzini/develop
Last pull request for 2.3 RC1 version
commit df3d32b28d4f03b3b2b973078a518a9c8e20b9c4
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed May 26 16:36:05 2021 +0200
Changelog
commit 8d2171bfedd8de1f3eb56d7c3c8704f416a42635
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed May 26 16:31:43 2021 +0200
Final commit for 2.3 version
- TapiStreaming with corrected augments
- Outline of differences between 2.1.3 and 2.3
commit 58cf441229429202074fac437860061cff5cb754
Merge: ff18719 6da9c4d
Author: amazzini <andrea.mazzini@nokia.com>
Date: Tue May 25 15:42:33 2021 +0200
Merge pull request #510 from amazzini/develop
Several Modifications - 2.3 delivery candidate
commit 6da9c4dd8c707128ed1691a1dc14ff1e699f3bc9
Author: amazzini <andrea.mazzini@nokia.com>
Date: Tue May 25 01:36:04 2021 +0200
TapiConnectivity.yaml - edited POST connectivity-service
commit da4aec91111c68d0e69228bf49b22c8cdb3063a6
Merge: 331fd4b 39edf49
Author: amazzini <andrea.mazzini@nokia.com>
Date: Tue May 25 00:44:13 2021 +0200
Merge remote-tracking branch 'origin/develop' into develop
commit 331fd4b9258afdd2757941a611d7eed0665c8670
Author: amazzini <andrea.mazzini@nokia.com>
Date: Mon May 24 18:40:53 2021 +0200
Last modifications...
- TapiTopology: NEP: availableCepLayerProtocol -->
supportedCepLayerProtocol
- TapiTopology: NodeRuleGroup: _composedRuleGroup ..> _nodeRuleGroup
- TapiConnectivity: Connection, added connectionSpecReference
- TapiConnectivity grouping cep-role - leaf role-name – config false.
Same for ConnectionSpecReference - connection spec name and uuid. Same
for CSEP role.
commit 39edf496041fee8948b2bd3ecdf9dc72ad40b964
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri May 21 16:06:08 2021 +0200
Delete tapi-streaming@2020-06-16.yang
Delete file with old name.
commit ec8fa4a88af77b15ef8b8f13e4ae68b6dfb36782
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri May 21 16:05:45 2021 +0200
Delete tapi-streaming@2020-06-16.tree
Deleted file with old name.
commit 5bb2be73b86db815cf57fb6cfa6e1f6769dd461f
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri May 21 16:03:56 2021 +0200
Update TapiStreaming.uml
Removed wrong "empty" target.
commit 05b01dcac111740ae4a59b3d76da0e8004804520
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri May 21 15:44:21 2021 +0200
Some final (?) modifications
- TapiStreaming.Uml ok, TapiStreaming.Yang/Tree/Yaml still to be updated
- TapiPathComp, TopologyConstraint, removed all UUID that can be
replaced by “ref”. Then deleted the “-ref” tail from attribute names.
- TapiConnectivity, replaced with UUID type the ConnectivityConstraint
Connection inclusion/exclusion attributes.
- TapiConnectivity, added layerProtocolQualifier to Connection
- TapiOdu, removed the “proprietary” entry of StandardFecType, clarified
that FecType attributes are mutually exclusive.
- TapiPhotonicMedia, removed the “proprietary” entry of
StandardModulationTechnique, clarified that ModulationTechnique
attributes are mutually exclusive.
- TapiConnectivity.yaml, edited the "post" of ConnectivityService.
commit 3950fce088e772c648fa15e18808a6642287d974
Merge: a698377 ff18719
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri May 21 15:23:54 2021 +0200
Merge remote-tracking branch 'Main/develop' into develop
commit ff1871954eb80d5de425e1bd817fb9769815f2d5
Merge: 3e2bdb0 069b539
Author: amazzini <andrea.mazzini@nokia.com>
Date: Tue May 18 15:33:52 2021 +0200
Merge pull request #509 from nigel-r-davis/develop
Streaming aligned with 2.1.3
commit a698377b859bec7f5400b058f4ca35a9697f41d4
Author: amazzini <andrea.mazzini@nokia.com>
Date: Mon May 17 19:51:03 2021 +0200
TapiPhotonicMedia, modulation technique type
- includes string for proprietary value
commit 4d8f133b6338592b4ec097bc46767fdb027e93c0
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sun May 16 20:32:31 2021 +0200
Several Modifications - 2.3 delivery candidate
1. TapiAlarm renamed TapiFm, simplified parameters
2. Added pointer from CurrentData to Mep/Mip/Cep
3. OtsiCapabilityPac augments SIP, now also NEP (through new
OtsiNodeEdgePointSpec). Added maxNumOfOtsi, integer.
4. TapiEquipment, added LocalClass to ActualNonFieldReplaceableModule
and ExpectedNonFieldReplaceableModule.
5. Agreement to keep the cepRole attribute in CEP and add it to CSEP
(csepRole - ConnectivityServiceSpecReference)
6. All interfaces moved to “deprecated”.
7. TapiCommon, added DIGITAL_OTN in LayerProtocolName, which deprecates
“ODU”.
8. TapiConnectivity, added layerProtocolName and Qualifier to
ConnectivityService.
9. TapiPathComp: the correct association between Path and Link is [* →
1..*] (rather than 1→ 1..*)
10. Added fecMonitoring boolean to OtuMep (default true) and
fecCorrectedErrorThreshold, OduFecPerformanceData augments CD and HD.
11. TapiTopology, added PlugIn pac to NEP.
12. TapiTopology, NEP:
a. Added supportedMuxSequences: MultiplexingSequence [1..*]
b. Added availableMuxSequences: MultiplexingSequence [1..*]
c. Added baseLayerProtocolQualifier: LayerProtocolQualifier [1]
13. TapiPathComputation, added PhysicalCepPac, OtsCepPac, OmsCepPac,
McCepPac as packages of MediaChannelConnectionEndPointSpec.
14. TapiOdu, removed ES counter.
15. TapiPhotonicMedia, deleted OtsiAssemblyConnectionEndPointSpec and
OtsiServerAdaptationPac classes. Note that both ones were already marked
as “deprecated” in TAPI 2.1.3
16. TapiPhotonicMedia, the OtsiaCsepTtpPac no longer augments
OtuOtsiaCsepTtpPac but directly the CSEP and the ServerConstraint.
OtsiaCsepTtpPac now includes the totalPowerWarnThresholdUpper and
totalPowerWarnThresholdLower.
17. TapiFm, AlarmInfo, removed LayerInfo, replaced by more generic
AlarmQualifier.
18. Added OTS_OMS layer qualifier to PhotonicLayerQualifier
19. OtsiSip, set as optional [0..1] the OtsiCapabilityPac and
TotalPowerThresholdPac, as they are already mandatory in OtsiNep.
commit 069b5391c918de1a6f83fc51bea7bc577be4784a
Author: ndavis <ndavis@EUWR-NDAVIS-2.ciena.com>
Date: Sun May 16 00:04:00 2021 +0100
Adjusting to cause only streaming to be changed.
commit d8e5d48e545502266885a8fa8957984b1a419d77
Author: ndavis <ndavis@EUWR-NDAVIS-2.ciena.com>
Date: Sat May 15 23:48:02 2021 +0100
Updating Streaming Yang to align with 2.1.3
commit 13e5621a6933fa2f4a155af72de88048737a0423
Author: ndavis <ndavis@EUWR-NDAVIS-2.ciena.com>
Date: Sat May 15 23:47:00 2021 +0100
Streaming UML aligned with 2.1.3
commit 3e2bdb0c72c944f43bc73627ef2abc1fecb84b3a
Merge: 0aff395 803b731
Author: Karthik Sethuraman <karthik.sethuraman@necam.com>
Date: Thu May 13 14:26:25 2021 -0400
Merge pull request #508 from OpenNetworkingFoundation/dependabot/maven/RI/org.openapitools-openapi-generator-maven-plugin-5.1.0
Bump openapi-generator-maven-plugin from 3.3.4-SNAPSHOT to 5.1.0 in /RI
commit 0aff395da0ee378659918b0b3a80d6d132948e43
Merge: 5073089 e8815bd
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu May 13 00:12:51 2021 +0200
Merge pull request #507 from amazzini/develop
Several modifications
commit e8815bd96dca3d293aba4e67d9fe63c4d497b04a
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sun May 9 11:25:03 2021 +0200
Update .gitignore
commit 803b731dd9e519ccc6af8cfa290416e108836d6f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Apr 29 21:52:06 2021 +0000
Bump openapi-generator-maven-plugin from 3.3.4-SNAPSHOT to 5.1.0 in /RI
Bumps openapi-generator-maven-plugin from 3.3.4-SNAPSHOT to 5.1.0.
Signed-off-by: dependabot[bot] <support@github.com>
commit 32453d1de67c39577b0a3db748355240b8f3ebbf
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sun Apr 11 01:40:08 2021 +0200
TapiAlarm and Eth, minor corrections. Tree and OAS modules.
commit 4e97af81ab8686d5944673b845e0a70237ccafc3
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sun Apr 11 01:04:44 2021 +0200
Several modifications:
- TapiEquipment, PhysicalEquipment, removed wrong inheritance from
GlobalClass
- PmParameter moved from TapiOam to TapiCommon. TapiEth and TapiOdu now
augment tapi-common:PM-PARAMETER-NAME
- AlarmConditionName has been moved from TapiOam to TapiAlarm
- TapiEth and TapiOdu now import TapiAlarm
- TapiOdu, OduOamMep and Mip now augment also OamServicePoint
- TapiOam, ConnectivityOamJob/granularityPeriod,
PmDataPac/granularityPeriod TimeInterval instead of TimePeriod.
- TapiAlarm, TcaInfo/thresholdGranularity TimeInterval instead of
TimePeriod.
- TapiCommon, updated comment of TimeInterval
- Removed Experimental stereotype from:
+ TapiCommon: TerminationState, LifecycleState, LayerProtocolName,
LayerProtocolQualifier, DirectiveValue, TerminationPac,
terminationDirection, terminationState
+ TapiTopology, PathComputation, Notification, Alarm: none
+ TapiConnectivity: ConnectivityServiceInternalPoint
+ TapiOam: OamProfile
- Removed NCM_AND_DELAY, TCM_AND_DELAY entries from OduOamJobType
- OduDelayPerformanceData augments OamJob (one shot measure) instead of
CurrentData
commit d47fa22eb6460123e1b942ac8e1922d54e9b5fec
Author: ndavis <ndavis@EUWR-NDAVIS-2.ciena.com>
Date: Tue Mar 16 14:37:52 2021 +0000
Updating streaming to align with 1.3
commit dad2634064d488ad6d40bfcd79b1423bb76268dd
Merge: c043644 5073089
Author: nigel-r-davis <ndavis@ciena.com>
Date: Tue Mar 16 11:18:22 2021 +0000
Merge pull request #5 from OpenNetworkingFoundation/develop
Aligning fork
commit 50730892a090bdb0bf417ab1e31ea3d2a77869b5
Merge: 4cf32ed 848f4b4
Author: Karthik Sethuraman <karthik.sethuraman@necam.com>
Date: Fri Mar 5 08:01:16 2021 -0500
Merge pull request #505 from amazzini:develop
Several modifications
commit 848f4b400f69cd0ce2c90d75dd5e97deb8e55f12
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Feb 12 13:25:48 2021 +0100
Several modifications
1) Added all comments to common, topology, connectivity, oam,
notification, path computation.
2) TapiConnectivity, in the CSIP added reference to its NEP.
3) New model TapiAlarm.
commit 4cf32edf967166fbf66d385447e2ffaa1734cc22
Merge: 8022834 004a518
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Feb 12 13:09:51 2021 +0100
Merge pull request #503 from amazzini/develop
Several modifications:
commit 004a518a84e55d03775d924324bd8c12903aba40
Author: amazzini <andrea.mazzini@nokia.com>
Date: Mon Dec 28 01:11:47 2020 +0100
TapiPhotonicMedia: Otsi/Mca CSEP --> Otsi/Mcg CSEP
TapiOdu: minor comments.
commit 9b3b125d591fe98f66168ec684652624263e300c
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sat Dec 12 01:46:20 2020 +0100
Several modifications to TapiPhotonic, some on TapiOdu
Following the agreements of
otcc2020.AM.001_TAPI_Photonic_Model_Evolution, version 10.
Yang/Tree/Yaml included.
commit 991fa37ebe67d2397ff60e0c1d3b1598e7ce0ef3
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sun Nov 29 19:52:15 2020 +0100
Several modifications:
- TapiOdu, amended OduOamJobType.
- TapiConnectivity, added experimental CSIP, added CSEPHasAssembledCSEPs
association.
- TapiOdu, added OtsiaCsepTtpPac of OtuConnectivityServiceEndPointSpec.
- TapiPhotonicMedia, deprecated OtsiaConnectivityServiceEndPointSpec and
rehabilitated OtsiConnectivityServiceEndPointSpec.
- TapiOam, removed Experimental stereotype from OamJob.
- Added spectrumBandwidth to MediaChannelBwConfigPac and
OtsiMcBwConfigPac.
- Created new OtsiMcFreqConfigPac class.
- Added edgeFrequencyConstraint to MediaChannelConfigPac,
OtsiMcConfigPac and OtsiMcFreqConfigPac.
- Added centerFrequencyConstraint and centerFrequencyOffset to
OtsiMcConfigPac and OtsiMcFreqConfigPac.
- TapiConnectivity, corrected augment (ownedNEP).
- TapiEquipment, corrected augment (ownedNEP), exp/actual eqp config
false.
TapiEth: added missing "leaf true" on maintenance-association-id-perm.
and corrected augment (ownedNEP).
TapiStreaming, corrected wrong references to tapiNotification:
PerceivedSeverity, ServiceAffecting, EventSourceIndicator, which are now
local to TapiStreaming.
TapiOam, TapiOdu: added missing augment/specify paths. Check
double-stage augment connectity-oam-odu.
- Updated all Yang/Tree/Oas modules.
commit 8022834d0149565c2add4ae1b7963876a83c1930
Merge: 2d0a32c 0e90330
Author: Karthik Sethuraman <karthik.sethuraman@necam.com>
Date: Tue Nov 10 13:02:28 2020 -0500
Merge pull request #500 from amazzini:develop
TapiOam.yang, removed redundant grouping pm-bin-data-ref
commit 0e903304f41f208200968f8f9b76f9edce496940
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sat Nov 7 00:53:33 2020 +0100
YANG and OAS Modules
Some adjustments to TapiOam/Odu/PhotonicMedia
commit c4c3e312e71678b1e01d37b154ad32559ebd8eb8
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed Nov 4 01:24:55 2020 +0100
TapiOdu, new OTU CEP and CSEP
commit 0550ce776baa13968d028b4bd3fd8705a87c3a7b
Author: amazzini <andrea.mazzini@nokia.com>
Date: Tue Nov 3 00:10:24 2020 +0100
TapiPhotonicMedia, further minor enhancements
commit cd6fe2b41f7be172fa2cbee4b9eeea4ad40d7d22
Author: amazzini <andrea.mazzini@nokia.com>
Date: Mon Nov 2 19:54:09 2020 +0100
Several updates to TapiPhotonicMedia
TapiPhotonicMedia, aligned to 2.1.x and updated according to
otcc2020.AM.001_TAPI_Photonic_Model_Evolution.pptx
TapiOdu, minor update
commit 9f6169814c0b192aa0db23421d4ff209d4d9b987
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Oct 23 02:59:57 2020 +0200
Further refinements of ODU OAM model
commit 4ef001bbb0e0bc4172e55883bce7d4d642ee25b6
Author: amazzini <andrea.mazzini@nokia.com>
Date: Mon Oct 19 02:01:32 2020 +0200
Further updates to experimental OAM/ODU model
commit 4a5d5344eea837b80f3f2dc788f60b3f5e711994
Merge: bc094bf 2d0a32c
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sun Oct 18 19:32:42 2020 +0200
Merge remote-tracking branch 'Main/develop' into develop
commit bc094bf62738f2ad3a98b6cdb8c8ab71ef02832d
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sun Oct 18 19:32:07 2020 +0200
Experimental Oam/Odu model
commit 6a0fd4560980c80910faad675effcf56137cbd6d
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Oct 2 12:43:45 2020 +0200
TapiOam.yang, removed redundant grouping pm-bin-data-ref
minor adjustment on topology.uml
commit 2d0a32c819eaba63aeb94e55b35e578f63945ec9
Merge: 46c875c 52ad82a
Author: Karthik Sethuraman <karthik.sethuraman@necam.com>
Date: Fri Sep 11 13:09:29 2020 -0400
Merge pull request #493 from amazzini:develop
Several modifications
commit 52ad82a37165b3bad633f704abcbcd969095c35e
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Sep 11 00:32:05 2020 +0200
Several minor updates/corrections for correct yang/tree generation.
All YANG/TREE/YAML modules committed.
commit 46c875c528e2a5c75c0f0d633575cc02c5800b63
Merge: 97b355a e1171bb
Author: Arturo Mayoral <arturo.mayoral@telefonica.com>
Date: Tue Aug 18 10:14:39 2020 +0200
Merge pull request #490 from arthurMll/develop
Create swagger-generator-cli-1.1.14-SNAPSHOT-executable.jar
commit 25a8fa72d6e9e04ae2ff1d464da9c3a533b9b17a
Merge: e2f0507 97b355a
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu Aug 13 23:36:04 2020 +0200
Merge remote-tracking branch 'Main/develop' into develop
commit e2f05079ec4133bdec0e8f6d870f1389764b1789
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu Aug 13 23:34:24 2020 +0200
Several modifications
1) TapiConnectivity: Added recursive relationship to ConnectivityService
(ConnServHasSubordinateConnServ), new class ResiliencyRouteConstraint
2) TapiPathComp: corrected comment
3) TapiTopology: protection/resilience type, roll back to single
attribute Link/resilienceType, aligning to 2.1.x
4) TapiConnectivity: protection/resilience type, roll back to single
attribute ResilienceConstraint/resilienceType, aligning to 2.1.x
5) TapiOdu: Moved OduOamService class from “Diagrams” to
“ObjectClasses”, and OduOamServiceHasOduMegSpec association from
“Diagrams” to “Associations”. OduTerminationAndClientAdaptationPac,
fecParameters now “config false” like 213.
6) TapiNotification: Notification, NotificationSubscriptionService,
restored GlobalClass inheritance
7) TapiTopology: Node/_nodeEdgePoint, roll back the label to
_ownedNodeEdgePoint to align with 2.1.x
8) TapiEth, just a "visibility true" now explicit.
commit 97b355aa783ac863cf9b97345be8e6e344a6a236
Merge: c9b3d74 c66d4de
Author: nigel-r-davis <ndavis@ciena.com>
Date: Tue Jul 21 14:25:10 2020 +0100
Merge pull request #487 from amazzini/develop
OduOamService augments OamService, to provision MEG level.
commit c66d4decf052bc009122c1ddfa767de4ebfa0315
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sun Jul 12 17:21:37 2020 +0200
Fixed SupportingPhysicalSpan augmentation of Link
commit e53446761ac60e7ce8fb95772c0fad771d03d8b2
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Jul 10 17:45:40 2020 +0200
Several modifications - mainly to align to 2.1.3 version
1) PhotonicMedia:
a) Renamed supportableCentralFrequencyBand as
supportable-central-frequency-spectrum-band to keep alignment with
original https://github.com/OpenNetworkingFoundation/TAPI/issues/429
b) Added keys lower upper frequency to OtsiCapabilityPac/
supportableCentralFrequencySpectrumBand/ CentralFrequencyBand type (like
supportableSpectrum)
2) Common, OAM: Restored broken inheritance to global class
3) Connectivity: CEP/_clientNodeEdgePoint from composite to shared (as
2.1.3 version)
4) Topology: Aligned Node Constraints to version 2.1.3
commit e1171bb139c6791a953af09cfc2bc7ad928da73d
Author: Arturo Mayoral <arturo.mayoral@telefonica.com>
Date: Tue Jun 16 17:34:42 2020 +0200
Create swagger-generator-cli-1.1.14-SNAPSHOT-executable.jar
commit 6ff05180765cf8b8361e4fbc8e0dea266e0261d0
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Jun 5 00:37:14 2020 +0200
Connectivity: ResilienceRoute class
- Removed layer protocol name from ConnectivityService
- Restored inheritance to GlobalClass
Odu:
- Added ODU CSEP strict composite stereotype
Oam, Topology, Path Computation, Virtual Ntw:
- Restored inheritance to GlobalClass
commit ae7a72b81bf9a9c1c4d2c2670f8caa01330175b2
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu Jun 4 14:17:17 2020 +0200
OduOamService augments OamService, to provision MEG level.
Minor adjustments on other diagrams.
commit c9b3d74e4b712888c394dd7bc808b80d7d826eee
Merge: 5e5f5a4 a84eca8
Author: Karthik Sethuraman <karthik.sethuraman@necam.com>
Date: Wed Apr 22 17:02:07 2020 -0400
Merge pull request #480 from karthik-sethuraman/develop
Release scripts
commit a84eca88f515e1ea29e610ca7c3ef3919b3626c4
Author: karthik-sethuraman <karthik.sethuraman@necam.com>
Date: Wed Apr 22 16:33:11 2020 -0400
release scripts
commit 8d7d8500d37340050f1cda8cab3938eb3db564ae
Merge: da67e86 5e5f5a4
Author: karthik-sethuraman <karthik.sethuraman@necam.com>
Date: Wed Apr 22 16:25:36 2020 -0400
Merge remote-tracking branch 'onf/develop' into develop
commit 5e5f5a4f0e9e95a53fbe7063c8bf3cf9e4ae34f5
Merge: ce88420 3e16ce4
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Apr 17 15:48:08 2020 +0200
Merge pull request #476 from amazzini/develop
TapiOdu Notation updates
commit 3e16ce421996bd25ce59973d2fa80ec6f224587c
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu Apr 16 15:10:13 2020 +0200
TapiOdu Notation updates
commit ce884206411dd260130accf6bbdc54408a53e487
Merge: ff92149 620c2e2
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu Apr 16 15:02:59 2020 +0200
Merge pull request #473 from amazzini/develop
ODU Connectivity enhancements
commit 620c2e26a4114ac0916d5eb636146ab4d45480fd
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sat Apr 11 00:40:53 2020 +0200
Tapi Photonic minor adjustments
commit c6f3ba55ea53a87132aecbdf64c4319500283ac6
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sat Apr 11 00:27:45 2020 +0200
ODU Connectivity enhancements
Decomposed ODU CSEP, two distinct packages for TTP and CTP related
parameters.
Updated oduRate and tributaryPortNumber comments.
Added "effectiveTimeSlotList" to ODU(Cn) CEP TTP pac.
Add “n” of ODUCn ("numberOfOduC") to ODU CEP and CSEP Common pacs.
commit ff92149dc4e4ab35e32933549ab8fd7fd3079501
Merge: e366d52 9a9eb04
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sat Apr 4 16:12:16 2020 +0200
Merge pull request #465 from amazzini/develop
PhotonicLayerQualifier aligned to 2.1
commit e366d522221761f6327045ca632b00226fce946f
Merge: 5aa68c9 c043644
Author: nigel-r-davis <ndavis@ciena.com>
Date: Thu Apr 2 14:29:15 2020 +0100
Merge pull request #462 from nigel-r-davis/develop
Corrections to Yang issues in Streaming
commit 9a9eb04f2da147e16665001e68a1565cf6d43840
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed Apr 1 15:41:23 2020 +0200
RoutingConstraint class, add the following attributes:
maxAllowedCost {value or priority}
maxAllowedHops {value or priority}
maxAllowedDelay {value or priority}
commit b01053432b3fa20358a7431af88ce43ebb983bbf
Author: amazzini <andrea.mazzini@nokia.com>
Date: Fri Mar 27 00:05:06 2020 +0100
ODU model, several modifications
Added FEC parameters to ODU TTP CEP.
tributarySlotList, updated comment
Odu CSEP, configuredPayloadType instead of acceptedPayloadType
Added oduRate to Odu CSEP
Changed all Odu CSEP attributes to read/write
Deprecated stereotype on oduRateTolerance from OduCommonPac
commit 829a6427bdf33e38f05ba1263aa474520d6e0155
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu Mar 26 13:54:03 2020 +0100
LayerProtocolQualifier, added new “UNSPECIFIED” literal.
SIP, added direction attribute, type PortDirection
Clarified comments in PortDirection type (input/output)
commit 61e39fe5c1e201a664ef97908d029000139dfa91
Author: amazzini <andrea.mazzini@nokia.com>
Date: Thu Mar 26 01:07:13 2020 +0100
PhotonicLayerQualifier aligned to 2.1
commit c0436446d752b776898789310114b36f10c365c5
Author: Nigel Davis <ndavis@ciena.com>
Date: Tue Mar 24 11:55:00 2020 +0000
Enhancements to ConnectorPinAddress
Addition of pinAndRole to ConnectorPinAddress as discussed in
otcc2020.ND.003_TAPI-ProposedEquipmentModelAdjustments.docx.
commit c38c464c4a9604334ad2e4db59440df01ba3f2c6
Author: Nigel Davis <ndavis@ciena.com>
Date: Tue Mar 24 09:50:49 2020 +0000
ConnectionInclusion (and exclusion) constraint (2)
Minor adjustment to comment text.
commit f04e309a398dae84de4b2eb29963cc24c6d75feb
Author: Nigel Davis <ndavis@ciena.com>
Date: Tue Mar 24 09:27:51 2020 +0000
ConnectionInclusion (and exclusion) constraint
As described in otcc2020.ND.005_TAPI-VariousRefinements.pptx slide 10.
Note that the Yang files have not been generated for this change.
commit daff9d8fa1f34afcb6bd05103344409a207556da
Author: Nigel Davis <ndavis@ciena.com>
Date: Mon Mar 23 12:35:16 2020 +0000
Streaming Yang
commit 925aacd03d8e7c7300d6e4154272446583340685
Author: Nigel Davis <ndavis@ciena.com>
Date: Mon Mar 23 12:34:50 2020 +0000
Streaming bug fixes
commit da67e86cbf1b73ce4827996bac8b164a73225250
Author: karthik-sethuraman <karthik.sethuraman@necam.com>
Date: Wed Mar 18 09:38:34 2020 -0400
eclipse character encoding
commit 5aa68c96f984661db09170b688ef1f06ab2b5d07
Merge: 5d1fdfe 92316d2
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed Mar 18 00:37:35 2020 +0100
Merge pull request #459 from amazzini/develop
Tapi Common and ODU, minor changes (comments)
commit 92316d2370757cdbdcde4f8e3262812d1fd0f036
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sat Mar 14 12:48:10 2020 +0100
TAPI ODU, additional comment
commit bd7c4e604a735e9900c7975c3478220adcc4d4f3
Author: amazzini <andrea.mazzini@nokia.com>
Date: Sat Mar 14 12:46:36 2020 +0100
TAPI Common, minor updates
Several comments
Removed ServiceSpec and ResourceSpec classes
commit 5d1fdfe3c935597fc39dcc01c8559da8cfaa1174
Merge: 356358f 7097ec6
Author: nigel-r-davis <ndavis@ciena.com>
Date: Wed Feb 26 12:19:20 2020 +0000
Merge pull request #458 from nigel-r-davis/develop
TAPI Streaming
commit 7097ec683a10a6dccb40ff04e3b4d7406c953062
Author: Nigel Davis <ndavis@ciena.com>
Date: Tue Jan 28 23:29:51 2020 +0000
Yang for streaming.
commit 33dd22ad49121199ab3809016afd9bb34caf7bc0
Author: Nigel Davis <ndavis@ciena.com>
Date: Tue Jan 28 23:22:08 2020 +0000
Tapi Streaming UML, Gendoc template and output
commit 5f894f27aff6dafcc8bd8bf3e3511204f191cb5a
Merge: ece9abb 356358f
Author: nigel-r-davis <ndavis@ciena.com>
Date: Tue Jan 28 13:43:55 2020 +0000
Merge pull request #1 from OpenNetworkingFoundation/develop
Align my fork
commit 356358f12289c22366ea2fde996a633fa052d285
Merge: 6f5d482 af10856
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed Jan 15 00:48:40 2020 +0100
Merge pull request #454 from amazzini/develop
ODU FM & PM enhancements
commit af1085669c96104dcad368a5a9dfa3b7904ac410
Author: amazzini <andrea.mazzini@nokia.com>
Date: Wed Dec 18 10:36:26 2019 +0100