From 32aa07e5517fba7f78ae79d2ba83b56f72a53293 Mon Sep 17 00:00:00 2001 From: Jan Srnicek Date: Thu, 1 Dec 2016 18:15:52 +0100 Subject: HONEYCOMB-58 - Routing Plugin Structure Read/Write support for ipv4/6 static routes. Restriction due to vpp implementation described in readme. Change-Id: I328f406a9b7cb8781f8becf98eca293cebe66859 Signed-off-by: Jan Srnicek --- .../src/main/yang/multi-naming-context.yang | 68 ++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang (limited to 'vpp-common/naming-context-api/src') diff --git a/vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang b/vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang new file mode 100644 index 000000000..23079601a --- /dev/null +++ b/vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang @@ -0,0 +1,68 @@ +module multi-naming-context { + yang-version 1; + namespace "urn:honeycomb:params:xml:ns:yang:multi:naming:context"; + prefix "mnc"; + + description + "This module contains data definition for naming multi-mapping context"; + + import naming-context { + prefix "nc"; + } + + import yang-ext { + prefix "ext"; + } + + + revision "2016-4-11" { + description + "Initial revision."; + } + + + grouping multi-naming-contexts-attributes{ + container multi-naming-contexts { + config false; + // context data + + list multi-naming { + + key "name"; + + leaf name { + type string; + } + + container mappings { + list mapping { + + key "name"; + + leaf name { + type string; + } + + list value{ + key "name"; + + unique "index"; + leaf index { + type int32; + } + + leaf name { + type string; + } + } + } + } + } + } + } + + augment /nc:contexts { + ext:augment-identifier "multi-mapping-ctx-augmentation"; + uses multi-naming-contexts-attributes; + } +} \ No newline at end of file -- cgit 1.2.3-korg