blob: 315bc4402073c10fd51257ebc8a5391b1c575ad9 [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
9 import yms-ietf-network {
10 prefix nd;
11 }
12
13
14 organization "ON-LAB";
15
16 description "This module defines for augmentNetwork classifier.";
17
18 revision "2016-05-24" {
19 description "Initial revision.";
20 }
21
22 augment "/nd:networks/nd:network" {
23 description
24 "Add container to the network model.";
25 container cont1s {
26 container cont1s {
27 leaf fine {
28 type string;
29 }
30 }
31 }
32 }
33}