blob: 67360631c3f09525eb40711b469a0b08ca468d40 [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
17 organization "ON-LAB";
18
19 description "This module defines for augment-topology1 classifier.";
20
21 revision "2016-05-24" {
22 description "Initial revision.";
23 }
24
25 augment "/nd:networks/nd:network/topo:link" {
26 description
27 "Add augment1 to the link model.";
28 list augment1 {
29 key "value1";
30 leaf value1 {
31 type int8;
32 }
33 }
34 }
35
36 augment "/nd:networks/nd:network/nd:node/topo:t-point" +
37 "/supporting-termination-point" {
38 description
39 "Add augment1 to the termination-point model.";
40 container augment1 {
41 leaf value1 {
42 type int8;
43 }
44 }
45
46 leaf augment1-leaf {
47 type string;
48 }
49
50 }
51}