blob: fa44bdd120a860e8bc66c342c970a34e326aa03e (
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
42
|
module naming-context {
yang-version 1;
namespace "urn:honeycomb:params:xml:ns:yang:naming:context";
prefix "nc";
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";
unique "index";
leaf name {
type string;
}
leaf index {
type int32;
}
}
}
}
}
}
|