blob: b8cea93df8a7201f48c4ba750bfc1b9bcd480000 [file] [log] [blame]
sonu gupta1bb37b82016-11-11 16:51:18 +05301module augment-topology4 {
2
3 yang-version 1;
4
5 namespace "ydt.augment-topology4";
6
7 prefix "aug4";
8
9 import yms-ietf-network {
10 prefix nd;
11 }
12
13 import augment-topology1 {
14 prefix aug1;
15 }
16
17 import augment-topology2 {
18 prefix aug2;
19 }
20
21 import augment-topology3 {
22 prefix aug3;
23 }
24
25 import yms-network-topology {
26 prefix topo;
27 }
28
29 organization "ON-LAB";
30
31 description "This module defines for augment-topology4 classifier.";
32
33 revision "2016-05-24" {
34 description "Initial revision.";
35 }
36
37 augment "/nd:networks/nd:network/topo:link/aug2:augment2/aug3:augment3" {
38 description
39 "Add augment4 to the augment3 model.";
40 container augment4 {
41 config false;
42 leaf value4 {
43 type int8;
44 }
45 }
46 }
47
48 augment "/nd:networks/nd:network/nd:node/topo:t-point/" +
49 "supporting-termination-point/aug2:augment2" {
50 description
51 "Add augment4leaf to the augment2 model.";
52
53 leaf augment4leaf{
54 type string;
55 }
56
57 }
58}