summaryrefslogtreecommitdiffstats
path: root/vpp-classifier/api/src/main/yang/interface-policer.yang
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2017-03-10 12:50:53 +0100
committerMarek Gradzki <mgradzki@cisco.com>2017-03-14 14:31:10 +0100
commit4616f0300655582153362a21910bd1f0b14937ae (patch)
tree651b317343fe2df592421cf7319ed3828c79990d /vpp-classifier/api/src/main/yang/interface-policer.yang
parente7903be79d4451f5b6e6f633b7ea20f8330ac0c1 (diff)
HC2VPP-55: policer&policer assignment CRUD support
Change-Id: I627d2a56ab2a282744ea0172b4a0c72240b0032f Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'vpp-classifier/api/src/main/yang/interface-policer.yang')
-rw-r--r--vpp-classifier/api/src/main/yang/interface-policer.yang34
1 files changed, 18 insertions, 16 deletions
diff --git a/vpp-classifier/api/src/main/yang/interface-policer.yang b/vpp-classifier/api/src/main/yang/interface-policer.yang
index d92faa9bf..2fd7b6b83 100644
--- a/vpp-classifier/api/src/main/yang/interface-policer.yang
+++ b/vpp-classifier/api/src/main/yang/interface-policer.yang
@@ -27,23 +27,25 @@ module interface-policer {
}
grouping interface-policer-attributes {
- description
- "Defines references to policer classify tables.
- At least one table reference should be specified.";
- leaf l2-table {
- type vpp-classifier:classify-table-ref;
+ container policer {
description
- "An L2 policer table";
- }
- leaf ip4-table {
- type vpp-classifier:classify-table-ref;
- description
- "An IPv4 policer table";
- }
- leaf ip6-table {
- type vpp-classifier:classify-table-ref;
- description
- "An IPv6 policer table";
+ "Defines references to policer classify tables.
+ At least one table reference should be specified.";
+ leaf l2-table {
+ type vpp-classifier:classify-table-ref;
+ description
+ "An L2 policer table";
+ }
+ leaf ip4-table {
+ type vpp-classifier:classify-table-ref;
+ description
+ "An IPv4 policer table";
+ }
+ leaf ip6-table {
+ type vpp-classifier:classify-table-ref;
+ description
+ "An IPv6 policer table";
+ }
}
}