diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2016-06-05 21:53:18 +0200 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2016-07-14 15:28:02 +0200 |
commit | dec4b4348087370e4222cb9c77c10377658b66f7 (patch) | |
tree | 1bb7cf490a40a8e55db5911f8cff411953351912 /v3po/api/src/main | |
parent | b8190b726c63b2a188a4cffac28ab15977f1d4bc (diff) |
HONEYCOMB-49: ACL create/delete support for vpp-interface-augmentation
Change-Id: I5c25bac07ce618f69cf86f988749b0f86e9a6498
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'v3po/api/src/main')
-rw-r--r-- | v3po/api/src/main/yang/vpp-classifier.yang | 5 | ||||
-rw-r--r-- | v3po/api/src/main/yang/vpp-vlan.yang | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/v3po/api/src/main/yang/vpp-classifier.yang b/v3po/api/src/main/yang/vpp-classifier.yang index 0ba94f1cb..b54798857 100644 --- a/v3po/api/src/main/yang/vpp-classifier.yang +++ b/v3po/api/src/main/yang/vpp-classifier.yang @@ -63,7 +63,7 @@ module vpp-classifier { "Defines classify session attributes that are mapped to classify_add_del_session and classify_session_details messages parameters."; - leaf hit_next_index { + leaf hit_next { type vpp-node; mandatory true; description @@ -110,7 +110,7 @@ module vpp-classifier { description "Reference to the next classify table. Required when multiple table chaining is used."; } - leaf miss_next_index { + leaf miss_next { mandatory true; type vpp-node; description @@ -124,7 +124,6 @@ module vpp-classifier { } leaf active_sessions { type uint32; - mandatory true; config false; description "Number of sessions defined for the classify table."; diff --git a/v3po/api/src/main/yang/vpp-vlan.yang b/v3po/api/src/main/yang/vpp-vlan.yang index fef8e72d8..bd3f265ec 100644 --- a/v3po/api/src/main/yang/vpp-vlan.yang +++ b/v3po/api/src/main/yang/vpp-vlan.yang @@ -158,6 +158,10 @@ module vpp-vlan { uses tag-rewrite; } } + + container acl { + uses v3po:acl-base-attributes; + } } grouping sub-interface-config-attributes { |