summaryrefslogtreecommitdiffstats
path: root/routing/routing-api/src/main/yang/vpp-routing@2016-12-14.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 /routing/routing-api/src/main/yang/vpp-routing@2016-12-14.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 'routing/routing-api/src/main/yang/vpp-routing@2016-12-14.yang')
-rw-r--r--routing/routing-api/src/main/yang/vpp-routing@2016-12-14.yang66
1 files changed, 66 insertions, 0 deletions
diff --git a/routing/routing-api/src/main/yang/vpp-routing@2016-12-14.yang b/routing/routing-api/src/main/yang/vpp-routing@2016-12-14.yang
new file mode 100644
index 000000000..5acda3976
--- /dev/null
+++ b/routing/routing-api/src/main/yang/vpp-routing@2016-12-14.yang
@@ -0,0 +1,66 @@
+module vpp-routing{
+
+ namespace "urn:ietf:params:xml:ns:yang:vpp-routing";
+ prefix "vpp-routing";
+ description "General extensions for routes to be able to use VPP route defining apis";
+
+ revision 2016-12-14 {
+ description "Initial revision.";
+ }
+
+ import yang-ext {
+ prefix "ext";
+ }
+
+ import vpp-classifier {
+ prefix "classifier";
+ }
+
+ import hc2vpp-ietf-routing {
+ prefix "ietf-r";
+ }
+
+ typedef vni-reference{
+ type uint32;
+ description "Vrf index reference";
+ }
+
+ grouping vpp-route-attributes {
+ //lookup_in_vrf
+ leaf secondary-vrf{
+ type vni-reference;
+ description "Optional secondary vrf used to lookup in";
+ }
+
+ leaf classify-table{
+ // classify_table_index + is_classify flag
+ type classifier:classify-table-ref;
+ description "Optional reference to classify table";
+ }
+ }
+
+ grouping vpp-routing-protocol-attributes{
+ //vrf_id
+ leaf primary-vrf{
+ type vni-reference;
+ mandatory true;
+ description "Main vrf associated to route";
+ }
+ }
+
+ augment /ietf-r:routing/ietf-r:routing-instance/ietf-r:routing-protocols/ietf-r:routing-protocol{
+ ext:augment-identifier "routing-protocol-vpp-attr";
+ container vpp-protocol-attributes {
+ presence "Config attributes";
+ uses vpp-routing-protocol-attributes;
+ }
+ }
+
+ augment /ietf-r:routing-state/ietf-r:routing-instance/ietf-r:routing-protocols/ietf-r:routing-protocol{
+ ext:augment-identifier "routing-protocol-state-vpp-attr";
+ container vpp-protocol-state-attributes {
+ presence "Operational attributes";
+ uses vpp-routing-protocol-attributes;
+ }
+ }
+} \ No newline at end of file