blob: aa4ced29ded5f781dd7c3058c616a8e7a04c4013 (
plain)
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
39
40
41
|
module naming-context {
yang-version 1;
namespace "urn:honeycomb:params:xml:ns:yang:naming:context";
prefix "vpp-u";
description
"This module contains data definition for naming mapping context";
revision "2016-05-13" {
description
"Initial revision.";
}
container contexts {
list naming-context {
key "name";
leaf name {
type string;
}
container mappings {
list mapping {
key "name";
leaf name {
type string;
}
leaf index {
type int32;
}
}
}
}
}
}
|