summaryrefslogtreecommitdiffstats
path: root/vpp-classifier/api/src/main/yang/interface-policer@2017-03-15.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 /vpp-classifier/api/src/main/yang/interface-policer@2017-03-15.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 'vpp-classifier/api/src/main/yang/interface-policer@2017-03-15.yang')
-rw-r--r--vpp-classifier/api/src/main/yang/interface-policer@2017-03-15.yang63
1 files changed, 63 insertions, 0 deletions
diff --git a/vpp-classifier/api/src/main/yang/interface-policer@2017-03-15.yang b/vpp-classifier/api/src/main/yang/interface-policer@2017-03-15.yang
new file mode 100644
index 000000000..2fd7b6b83
--- /dev/null
+++ b/vpp-classifier/api/src/main/yang/interface-policer@2017-03-15.yang
@@ -0,0 +1,63 @@
+module interface-policer {
+
+ yang-version 1;
+ namespace "urn:opendaylight:params:xml:ns:yang:interface:policer";
+ prefix "ifc-policer";
+
+ description
+ "This YANG module defines policer configuration and
+ operational data for interfaces in VPP.
+ Mapped to policer_classify_set_interface:
+ https://git.fd.io/vpp/tree/src/vnet/classify/classify.api#n119";
+
+ revision "2017-03-15" {
+ description "Initial revision of policer model";
+ }
+
+ import vpp-classifier {
+ prefix "vpp-classifier";
+ }
+
+ import ietf-interfaces {
+ prefix "if";
+ }
+
+ import yang-ext {
+ prefix "ext";
+ }
+
+ grouping interface-policer-attributes {
+ container policer {
+ description
+ "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";
+ }
+ }
+ }
+
+ augment /if:interfaces/if:interface {
+ ext:augment-identifier "policer-interface-augmentation";
+
+ uses interface-policer-attributes;
+ }
+
+ augment /if:interfaces-state/if:interface {
+ ext:augment-identifier "policer-interface-state-augmentation";
+
+ uses interface-policer-attributes;
+ }
+} \ No newline at end of file