summaryrefslogtreecommitdiffstats
path: root/lisp/api/src/main/yang/gpe-locator-pair-identification-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 /lisp/api/src/main/yang/gpe-locator-pair-identification-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 'lisp/api/src/main/yang/gpe-locator-pair-identification-context.yang')
-rw-r--r--lisp/api/src/main/yang/gpe-locator-pair-identification-context.yang70
1 files changed, 0 insertions, 70 deletions
diff --git a/lisp/api/src/main/yang/gpe-locator-pair-identification-context.yang b/lisp/api/src/main/yang/gpe-locator-pair-identification-context.yang
deleted file mode 100644
index 776dbc927..000000000
--- a/lisp/api/src/main/yang/gpe-locator-pair-identification-context.yang
+++ /dev/null
@@ -1,70 +0,0 @@
-module gpe-locator-pair-identification-context {
- yang-version 1;
- namespace "urn:honeycomb:params:xml:ns:yang:gpe:locator:pair:identification:context";
- prefix "gpe-locator-pair-identification-context";
-
- description
- "This module contains mappings between gpe entry identificator and locator pair in vpp";
-
- revision "2017-05-17" {
- description
- "Initial revision.";
- }
-
- import lisp {prefix "lisp";}
- import ietf-inet-types {prefix "inet";}
- import yang-ext {prefix "ext";}
- import naming-context { prefix "nc";}
-
- grouping gpe-locator-pair-identification-context-attributes{
-
- container gpe-locator-pair-identification-contexts {
-
- list gpe-locator-pair-identification {
-
- key "name";
-
- leaf name {
- type string;
- }
-
- container mappings{
- list mapping {
-
- key "id";
-
- leaf id {
- type string;
- description "Id that uniquely identifies gpe entry";
- }
-
- list locator-pair-mapping {
- key "id";
-
- leaf id {
- type string;
- description "Id that uniquely identifies locator pair";
- }
-
- container pair {
- leaf local-address{
- type inet:ip-address;
- description "Local locator address";
- }
- leaf remote-address {
- type inet:ip-address;
- description "Remote locator address";
- }
- }
- }
- }
- }
- }
- }
- }
-
- augment /nc:contexts {
- ext:augment-identifier "gpe-locator-pair-identification-ctx-augmentation";
- uses gpe-locator-pair-identification-context-attributes;
- }
-} \ No newline at end of file