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