summaryrefslogtreecommitdiffstats
path: root/v3po/api
diff options
context:
space:
mode:
authorMaros Marsalek <mmarsale@cisco.com>2016-05-18 08:49:56 +0200
committerMaros Marsalek <mmarsale@cisco.com>2016-05-23 10:14:45 +0000
commit8dd9b6b1daf1b84888c23a828f250ad1be098016 (patch)
tree619f78f663de0377e1b31316e3ec1941e853762d /v3po/api
parentd54ea758da8dcf71d52727c4f01f87090c50bf2e (diff)
HONEYCOMB-61: Move vpp context model to v3po-api
Change-Id: I92d9cdd199e245adf5d22ff9756e05d82d66abc4 Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
Diffstat (limited to 'v3po/api')
-rw-r--r--v3po/api/src/main/yang/naming-context.yang41
1 files changed, 41 insertions, 0 deletions
diff --git a/v3po/api/src/main/yang/naming-context.yang b/v3po/api/src/main/yang/naming-context.yang
new file mode 100644
index 000000000..aa4ced29d
--- /dev/null
+++ b/v3po/api/src/main/yang/naming-context.yang
@@ -0,0 +1,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;
+ }
+ }
+ }
+ }
+ }
+
+} \ No newline at end of file