blob: f32d50898a1768da865e257b79913ac231bfc969 [file] [log] [blame]
sonu guptaeff184b2016-11-24 12:43:49 +05301module augmentSequence2 {
2
3 yang-version 1;
4
5 namespace "ydt.augmentSequence2";
6
7 prefix "sequence2";
8
9 import augmentSequence {
10 prefix aug;
11 }
12
13 organization "ON-LAB";
14
15 description "This module defines for augmentSequence2 classifier.";
16
17 revision "2016-05-24" {
18 description "Initial revision.";
19 }
20
21 augment "/aug:l1" {
22 container c2 {
23 leaf leaf2 {
24 type int8;
25 }
26 }
27 }
28}