Vidyashree Rama | 13b4c55 | 2016-06-20 15:12:43 +0530 | [diff] [blame] | 1 | module Test { |
| 2 | yang-version 1; |
| 3 | namespace http://huawei.com; |
| 4 | prefix Ant; |
| 5 | container interface { |
| 6 | leaf ifType { |
| 7 | type enumeration { |
| 8 | enum ethernet; |
| 9 | enum atm; |
| 10 | } |
| 11 | } |
| 12 | leaf ifMTU { |
| 13 | type uint32; |
| 14 | } |
| 15 | must "ifType != 'ethernet' or " + |
| 16 | "(ifType = 'ethernet' and ifMTU = 1500)" { |
| 17 | description "An ethernet MTU must be 1500"; |
| 18 | } |
| 19 | must "ifType != 'atm' or " + |
| 20 | "(ifType = 'atm' and ifMTU <= 17966 and ifMTU >= 64)" { |
| 21 | description "An atm MTU must be 64 .. 17966"; |
| 22 | } |
| 23 | } |
| 24 | } |