0b8d3af2357a2c49f6d5f0c182f0ac633fdeb6ca
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / route / api / src / main / yang / threshold@2017-06-15.yang
1 module threshold {
2   namespace "urn:onf:params:xml:ns:yang:ltp-path";
3   prefix threshold;
4
5   import core-model {
6     prefix core-model;
7   }
8
9   organization
10    "ONF (Open Networking Foundation) Open Transport Working Group -
11     Wireless Transport Project";
12   contact 
13     "WG Web: <https://www.opennetworking.org/technical-communities/areas/
14               specification/1931-optical-transport>
15      WG List:  <mailto:wireless-transport@login.opennetworking.org>
16      WG Chair: Lyndon Ong
17                <mailto:lyong@ciena.com>
18      WG Chair: Giorgio Cazzaniga
19                <mailto:giorgio.cazzaniga@sm-optics.com>
20      Editor:   Liu Weihua
21                <mailto:liu.wei91@zte.com.cn>";
22   description 
23     "This module contains a configuration of YANG definitions describing threshold of a ethernet path.";
24  
25   revision 2017-06-15 {
26     description "Initial version";
27   }
28
29   grouping threshold_g {
30         leaf max-serialization-delay {
31           type uint64;
32           default 1;
33           description
34             "unit ms";
35         }
36         leaf minimum-bandwidth {
37           type uint64;
38           default 200000;
39           description
40             "unit kbit/s";
41         }
42   }
43
44   container threshold-of-path {
45         container threshold {
46             uses threshold_g;
47         }
48   }
49
50 }