blob: fc0eee5e4dc6eb8ba4d18587308558a922666356 [file] [log] [blame]
sonu gupta1bb37b82016-11-11 16:51:18 +05301module augment-topology1 {
2
3 yang-version 1;
4
5 namespace "ydt.augment-topology1";
6
7 prefix "aug1";
8
9 import yms-ietf-network {
10 prefix nd;
11 }
12
13 import yms-network-topology {
14 prefix topo;
15 }
16
sonu guptaeff184b2016-11-24 12:43:49 +053017 import augmentNetwork {
18 prefix aug;
19 }
20
sonu gupta1bb37b82016-11-11 16:51:18 +053021 organization "ON-LAB";
22
23 description "This module defines for augment-topology1 classifier.";
24
25 revision "2016-05-24" {
26 description "Initial revision.";
27 }
28
29 augment "/nd:networks/nd:network/topo:link" {
30 description
31 "Add augment1 to the link model.";
32 list augment1 {
33 key "value1";
34 leaf value1 {
35 type int8;
36 }
37 }
38 }
39
40 augment "/nd:networks/nd:network/nd:node/topo:t-point" +
41 "/supporting-termination-point" {
42 description
43 "Add augment1 to the termination-point model.";
44 container augment1 {
45 leaf value1 {
46 type int8;
47 }
48 }
49
50 leaf augment1-leaf {
51 type string;
52 }
53
54 }
sonu guptaeff184b2016-11-24 12:43:49 +053055
56 augment "/aug:node/aug:cont1s/aug:cont1s" {
57 description
58 "Add augment1 to the link model.";
59 list augment1 {
60 key "value1";
61 leaf value1 {
62 type int8;
63 }
64 }
65 }
sonu gupta1bb37b82016-11-11 16:51:18 +053066}