blob: a769a5e39ecfd54884d2b8ee1151421d0e96b09e [file] [log] [blame]
sonu gupta1bb37b82016-11-11 16:51:18 +05301module augmentNetwork {
2
3 yang-version 1;
4
5 namespace "ydt.augmentNetwork";
6
7 prefix "aug";
8
sonu gupta1bb37b82016-11-11 16:51:18 +05309 organization "ON-LAB";
10
11 description "This module defines for augmentNetwork classifier.";
12
13 revision "2016-05-24" {
14 description "Initial revision.";
15 }
16
sonu guptaeff184b2016-11-24 12:43:49 +053017 list node {
18 key "name";
19 leaf name {
20 type string;
21 description "name of node";
22 }
23 }
24
25 augment "/node" {
sonu gupta1bb37b82016-11-11 16:51:18 +053026 description
sonu guptaeff184b2016-11-24 12:43:49 +053027 "Add container to the node model.";
sonu gupta1bb37b82016-11-11 16:51:18 +053028 container cont1s {
29 container cont1s {
30 leaf fine {
31 type string;
32 }
33 }
34 }
35 }
36}