diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2017-06-16 14:36:52 +0200 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2017-06-16 14:55:14 +0200 |
commit | b4581d183065af6b82026003959b96fbe6850dd1 (patch) | |
tree | 6d7f8654ce4eeb13350a3d32314bd267a79c9c61 /lisp/api/src/main/yang/gpe-entry-identification-context@2017-05-17.yang | |
parent | c312c69343e8336456a109ff82d9bc4c6dc9b1ea (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-entry-identification-context@2017-05-17.yang')
-rw-r--r-- | lisp/api/src/main/yang/gpe-entry-identification-context@2017-05-17.yang | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/lisp/api/src/main/yang/gpe-entry-identification-context@2017-05-17.yang b/lisp/api/src/main/yang/gpe-entry-identification-context@2017-05-17.yang new file mode 100644 index 000000000..8f4d8aceb --- /dev/null +++ b/lisp/api/src/main/yang/gpe-entry-identification-context@2017-05-17.yang @@ -0,0 +1,70 @@ +module gpe-entry-identification-context { + yang-version 1; + namespace "urn:honeycomb:params:xml:ns:yang:gpe:entry:identification:context"; + prefix "gpe-entry-identification-context"; + + description + "This module contains mappings between gpe entry identificator and actual unique combination of + remote/local eid and vni in vpp"; + + revision "2017-05-17" { + description + "Initial revision."; + } + + import lisp {prefix "lisp";} + import ietf-lisp-address-types {prefix "lisp-types";} + import yang-ext {prefix "ext";} + import naming-context { prefix "nc";} + + grouping gpe-entry-identification-context-attributes{ + + container gpe-entry-identification-contexts { + + list gpe-entry-identification { + + key "name"; + + leaf name { + type string; + } + + container mappings{ + list mapping { + + key "id"; + + leaf id { + type string; + description "Id that uniquely identifies gpe entry"; + } + + container gpe-entry-identificator{ + // these three attributes allow to identificated gpe entry + container local-eid { + uses lisp-types:lisp-address; + description "Local EID that must be a local address"; + } + + container remote-eid { + uses lisp-types:lisp-address; + description "Remote EID"; + } + + leaf vni { + type uint32; + mandatory true; + description "Virtual Network Identifier"; + } + } + } + } + } + } + } + + augment /nc:contexts { + ext:augment-identifier "gpe-entry-identification-ctx-augmentation"; + uses gpe-entry-identification-context-attributes; + } +}
\ No newline at end of file |