janani b | 05614f1 | 2016-10-04 12:55:43 +0530 | [diff] [blame] | 1 | module YtbSimpleAugment { |
2 | yang-version 1; | ||||
3 | namespace "yms:test:ytb:simple:augment"; | ||||
4 | prefix "sch"; | ||||
5 | revision "2016-08-26"; | ||||
6 | container cont1 { | ||||
7 | container cont2 { | ||||
8 | leaf fine { | ||||
9 | type string; | ||||
10 | } | ||||
11 | } | ||||
12 | } | ||||
13 | |||||
14 | augment /cont1/cont2 { | ||||
15 | leaf leaf4 { | ||||
16 | type int32; | ||||
17 | } | ||||
18 | container cont1s { | ||||
19 | container cont1s { | ||||
20 | leaf fine { | ||||
21 | type string; | ||||
22 | } | ||||
23 | } | ||||
24 | } | ||||
25 | } | ||||
26 | } |