test.yang
666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module test {
namespace "xpath:intra:single";
prefix test ;
organization "";
contact "";
description
"Defines basic service types for L3VPN service.";
revision "2015-12-16" {
reference "";
}
grouping group1 {
container cont1 {
leaf leaf1 {
type int32;
}
container cont3 {
leaf leaf1 {
type int32;
}
}
}
}
container cont2 {
uses group1;
}
augment /cont2/cont1/cont3 {
leaf a {
type int32;
}
}
}