blob: 15bd3d5582626ff7d49dec5677bee3507f5719f0 [file] [log] [blame]
sonu gupta1bb37b82016-11-11 16:51:18 +05301module augment-topology6 {
2
3 yang-version 1;
4
5 namespace "ydt.augment-topology6";
6
7 prefix "aug5";
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 augment-topology4 {
26 prefix aug4;
27 }
28
29 import augment-topology5 {
30 prefix aug5;
31 }
32
33 import yms-network-topology {
34 prefix topo;
35 }
36
37 organization "ON-LAB";
38
39 description "This module defines for augment-topology6 classifier.";
40
41 revision "2016-05-24" {
42 description "Initial revision.";
43 }
44
45 augment "/nd:networks/nd:network/topo:link/aug2:augment2/aug3:augment3" {
46 description
47 "Add augment6 to the augment3 model.";
48 container augment6 {
49 config true;
50 leaf value6 {
51 type int8;
52 }
53 }
54 }
55
56 augment "/nd:networks/nd:network/topo:link/aug2:augment2/aug3:augment3/" +
57 "aug5:augment5" {
58 description
59 "Add leaf6 to the augment5 model.";
60 leaf leaf6 {
61 type string;
62 }
63
64 }
65
66 augment "/nd:networks/nd:network/topo:link/aug2:augment2/aug5:augment5" {
67 description
68 "Add list to the augment5 model.";
69 leaf-list augment6leafList {
70 type string;
71 }
72 }
73}