summaryrefslogtreecommitdiffstats
path: root/v3po/api/src/main/yang/v3po.yang
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2016-05-30 14:51:14 +0200
committerMarek Gradzki <mgradzki@cisco.com>2016-06-06 12:52:18 +0000
commit815f6da443f7032704908aa21f232bd05e89acb6 (patch)
treeff2c8b79cbd8d8baa35a9aeb893513f0ebec4a1f /v3po/api/src/main/yang/v3po.yang
parentdffb11e30ee1bf6bbfdd1ba1a5ce9d0cb636586a (diff)
Implementation of the new vlan model.
Missing features that will be added in subsequent commits: - initializers update - unit test update - postman collection update Change-Id: Iff01f6f9b4347261a504fe1a1d7840060cae367f Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'v3po/api/src/main/yang/v3po.yang')
-rw-r--r--v3po/api/src/main/yang/v3po.yang43
1 files changed, 24 insertions, 19 deletions
diff --git a/v3po/api/src/main/yang/v3po.yang b/v3po/api/src/main/yang/v3po.yang
index 86a2764b8..18b82a9b0 100644
--- a/v3po/api/src/main/yang/v3po.yang
+++ b/v3po/api/src/main/yang/v3po.yang
@@ -42,15 +42,16 @@ module v3po {
"This type is used by to reference a bridged virtual interface";
}
- typedef vlan-type {
+ // todo remove from v3po
+ /*typedef vlan-type {
type enumeration {
enum 802dot1q;
enum 802dot1ad;
}
- }
+ }*/
// todo remove from v3po
- typedef tag-rewrite-operation {
+ /*typedef tag-rewrite-operation {
type enumeration {
enum disabled;
enum push-1;
@@ -62,13 +63,14 @@ module v3po {
enum translate-2-to-1;
enum translate-2-to-2;
}
- }
+ }*/
- typedef vlan-tag {
- type uint16 {
- range "1..4094";
- }
- }
+ // todo remove from v3po
+ //typedef vlan-tag {
+ // type uint16 {
+ // range "1..4094";
+ // }
+ //}
identity vxlan-tunnel {
base if:interface-type;
@@ -151,7 +153,7 @@ module v3po {
}
// todo remove from v3po
- grouping sub-interface-base-attributes {
+ /*grouping sub-interface-base-attributes {
leaf identifier {
type uint32;
}
@@ -183,7 +185,7 @@ module v3po {
leaf default-subif {
type empty;
}
- }
+ }*/
grouping tap-interface-base-attributes {
leaf tap-name {
@@ -307,7 +309,8 @@ module v3po {
}
}
- grouping vlan-tag-rewrite-attributes {
+ // todo remove from v3po
+ /* grouping vlan-tag-rewrite-attributes {
leaf rewrite-operation {
type tag-rewrite-operation;
default 'disabled';
@@ -322,7 +325,7 @@ module v3po {
leaf tag2 {
type vlan-tag;
}
- }
+ }*/
grouping l2-base-attributes {
description
@@ -377,13 +380,14 @@ module v3po {
// 2. Only this augmentation with combination of ifc type is trigger to do something for vpp, what if user only configures base interface stuff ? + We need to get leaves defined by ietf-interfaces when we are processing this augment
// 3. The ietf-interfaces model does not define groupings which makes types reuse difficult
+ /*
container sub-interface {
when "../if:type = 'v3po:sub-interface'";
leaf super-interface {
type if:interface-ref;
}
uses sub-interface-base-attributes;
- }
+ }*/
container tap {
when "../if:type = 'v3po:tap'";
@@ -419,9 +423,9 @@ module v3po {
uses l2-base-attributes;
- container vlan-tag-rewrite {
+ /*container vlan-tag-rewrite {
uses vlan-tag-rewrite-attributes;
- }
+ }*/
}
container vxlan-gpe {
@@ -475,13 +479,14 @@ module v3po {
type string;
}
+ /*
container sub-interface {
when "../if:type = 'v3po:sub-interface'";
leaf super-interface {
type if:interface-state-ref;
}
uses sub-interface-base-attributes;
- }
+ }*/
container tap {
when "../if:type = 'v3po:tap'";
@@ -516,9 +521,9 @@ module v3po {
uses l2-base-attributes;
- container vlan-tag-rewrite {
+ /* container vlan-tag-rewrite {
uses vlan-tag-rewrite-attributes;
- }
+ }*/
}
}