Sync Common folder
[transportpce.git] / ordmodels / common / src / main / yang / org-openroadm-port-types@2017-09-29.yang
1 module org-openroadm-port-types {
2   namespace "http://org/openroadm/port/types";
3   prefix org-openroadm-port-types;
4
5   import org-openroadm-common-types {
6     prefix org-openroadm-common-types;
7     revision-date 2016-10-14;
8   }
9
10   organization
11     "Open ROADM MSA";
12   contact
13     "OpenROADM.org";
14   description
15     "YANG definitions for port types.
16      
17      Copyright of the Members of the Open ROADM MSA Agreement dated (c) 2016, 
18      AT&T Intellectual Property.  All other rights reserved.
19      
20      Redistribution and use in source and binary forms, with or without modification, 
21      are permitted provided that the following conditions are met:
22      
23      * Redistributions of source code must retain the above copyright notice, this 
24        list of conditions and the following disclaimer.
25      * Redistributions in binary form must reproduce the above copyright notice, 
26        this list of conditions and the following disclaimer in the documentation and/or 
27        other materials provided with the distribution.
28      * Neither the Members of the Open ROADM MSA Agreement nor the names of its 
29        contributors may be used to endorse or promote products derived from this software 
30        without specific prior written permission.
31      
32      THIS SOFTWARE IS PROVIDED BY THE MEMBERS OF THE OPEN ROADM MSA  AGREEMENT ''AS IS'' 
33      AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
34      WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
35      IN NO EVENT THE MEMBERS OF THE OPEN ROADM MSA  AGREEMENT BE LIABLE FOR ANY DIRECT, 
36      INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
37      NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;  LOSS OF USE, DATA, 
38      OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
39      WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
40      ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
41      POSSIBILITY OF SUCH DAMAGE.";
42
43   revision 2017-09-29 {
44     description
45       "Version 2.1";
46   }
47   revision 2017-07-28 {
48     description
49       "Version 2.0.1 - added revision-date to imports";
50   }
51   revision 2017-06-26 {
52     description
53       "Version 2.0";
54   }
55   revision 2016-10-14 {
56     description
57       "Version 1.2";
58   }
59
60   identity supported-if-capability {
61     description
62       "Base identity from which specific supported interfaces are derived";
63   }
64
65   identity if-100GE {
66     base supported-if-capability;
67   }
68
69   identity if-OMS {
70     base supported-if-capability;
71   }
72
73   identity if-OTS {
74     base supported-if-capability;
75   }
76
77   identity if-OCH {
78     base supported-if-capability;
79   }
80   
81   identity if-1GE {
82     base supported-if-capability;
83   }
84
85   identity if-10GE {
86     base supported-if-capability;
87   }
88
89   identity if-40GE {
90     base supported-if-capability;
91   }
92
93   identity if-OCH-OTU1-ODU1 {
94     base supported-if-capability;
95   }
96
97   identity if-OCH-OTU2-ODU2 {
98     base supported-if-capability;
99   }
100
101   identity if-OCH-OTU2E-ODU2E {
102     base supported-if-capability;
103   }
104
105   identity if-OCH-OTU3-ODU3 {
106     base supported-if-capability;
107   }
108
109   identity if-OCH-OTU4-ODU4 {
110     base supported-if-capability;
111   }
112
113   identity if-OTU4-ODU4 {
114     base supported-if-capability;
115   }
116
117   identity supported-xpdr-capability {
118     description
119       "Base identity from which specific supported xponder are derived";
120   }
121
122   identity Transponder {
123     base supported-xpdr-capability;
124   }
125
126   identity Regen {
127     base supported-xpdr-capability;
128   }
129
130   typedef port-wavelength-types {
131     type enumeration {
132       enum "wavelength" {
133         value 1;
134         description
135           "Port on a transponder or ROADM SRG add drop";
136       }
137       enum "multi-wavelength" {
138         value 2;
139         description
140           "External port connecting to other roadm.";
141       }
142     }
143     description
144       "Port types.";
145   }
146
147   grouping common-port {
148     leaf port-power-capability-min-rx {
149       type org-openroadm-common-types:power-dBm;
150       config false;
151       description
152         "Based on port capabilities, the minimum power in the system spec for this port to
153          provide optimum function in rx direction";
154     }
155     leaf port-power-capability-min-tx {
156       type org-openroadm-common-types:power-dBm;
157       config false;
158       description
159         "Based on port capabilities, the minimum power in the system spec for this port to
160          provide optimum function in tx direction.";
161     }
162     leaf port-power-capability-max-rx {
163       type org-openroadm-common-types:power-dBm;
164       config false;
165       description
166         "Based on port capabilities, the maximum power in the system spec for this port to
167          provide optimum function in rx direction.";
168     }
169     leaf port-power-capability-max-tx {
170       type org-openroadm-common-types:power-dBm;
171       config false;
172       description
173         "Based on port capabilities, the maximum power in the system spec for this port to
174          provide optimum function in tx direction.";
175     }
176   }
177
178   grouping roadm-port {
179     uses common-port;
180   }
181 }