summaryrefslogtreecommitdiffstats
path: root/vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2017-06-16 14:36:52 +0200
committerMarek Gradzki <mgradzki@cisco.com>2017-06-16 14:55:14 +0200
commitb4581d183065af6b82026003959b96fbe6850dd1 (patch)
tree6d7f8654ce4eeb13350a3d32314bd267a79c9c61 /vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang
parentc312c69343e8336456a109ff82d9bc4c6dc9b1ea (diff)
Rename yang files to match model revision
Also order of revisions was sorted starting from most current. Change-Id: I21fd35cfdb1cc5601b3fb40c9f3755bd3b995b14 Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang')
-rw-r--r--vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang68
1 files changed, 0 insertions, 68 deletions
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
deleted file mode 100644
index 23079601a..000000000
--- a/vpp-common/naming-context-api/src/main/yang/multi-naming-context.yang
+++ /dev/null
@@ -1,68 +0,0 @@
-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