blob: d2c58ce641200a701a9fd34ece596769c0e9dcb3 [file] [log] [blame]
sonu gupta1bb37b82016-11-11 16:51:18 +05301module augment-topology3 {
2
3 yang-version 1;
4
5 namespace "ydt.augment-topology3";
6
7 prefix "aug3";
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 yms-network-topology {
22 prefix topo;
23 }
24
25 organization "ON-LAB";
26
27 description "This module defines for augment-topology3 classifier.";
28
29 revision "2016-05-24" {
30 description "Initial revision.";
31 }
32
33 augment "/nd:networks/nd:network/topo:link/aug2:augment2" {
34 description
35 "Add augment3 to the augment2 model.";
36 container augment3 {
37 config false;
38 leaf value3 {
39 type int8;
40 }
41 }
42
43 leaf augment3leaf {
44 type string;
45 }
46 }
47
48 augment "/nd:networks/nd:network/nd:node/topo:t-point/" +
49 "supporting-termination-point/aug2:augment2" {
50 description
51 "Add augment3 to the augment2 model.";
52 container augment3 {
53 config false;
54 leaf value3 {
55 type int8;
56 }
57 }
58 }
59}