From b4581d183065af6b82026003959b96fbe6850dd1 Mon Sep 17 00:00:00 2001 From: Marek Gradzki Date: Fri, 16 Jun 2017 14:36:52 +0200 Subject: 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 --- .../api/src/main/yang/vpp-classifier-acl.yang | 68 ---------------------- 1 file changed, 68 deletions(-) delete mode 100644 vpp-classifier/api/src/main/yang/vpp-classifier-acl.yang (limited to 'vpp-classifier/api/src/main/yang/vpp-classifier-acl.yang') diff --git a/vpp-classifier/api/src/main/yang/vpp-classifier-acl.yang b/vpp-classifier/api/src/main/yang/vpp-classifier-acl.yang deleted file mode 100644 index 6dc028e16..000000000 --- a/vpp-classifier/api/src/main/yang/vpp-classifier-acl.yang +++ /dev/null @@ -1,68 +0,0 @@ -module vpp-classifier-acl { - yang-version 1; - namespace "urn:opendaylight:params:xml:ns:yang:vpp:classifier:acl"; - prefix "vpp-classifier-acl"; - - revision "2017-05-03" { - description - "Removed support for ietf based acls."; - } - - revision "2017-03-15" { - description - "Initial revision of vpp-classifier-acl model."; - } - - import vpp-classifier { - prefix "vpp-classifier"; - } - - import yang-ext { - prefix "ext"; - } - - typedef interface-mode { - type enumeration { - enum "l2"; - enum "l3"; - } - } - - grouping acl-base-attributes { - description - "Defines references to classify tables. - At least one table reference should be specified."; - container l2-acl { - leaf classify-table { - type vpp-classifier:classify-table-ref; - description - "An L2 ACL table"; - } - } - container ip4-acl { - leaf classify-table { - type vpp-classifier:classify-table-ref; - description - "An IPv4 ACL table"; - } - } - container ip6-acl { - leaf classify-table { - type vpp-classifier:classify-table-ref; - description - "An IPv6 ACL table"; - } - } - } - - grouping vpp-acl-attributes { - container acl { - container ingress { - uses vpp-classifier-acl:acl-base-attributes; - } - container egress { - uses vpp-classifier-acl:acl-base-attributes; - } - } - } -} \ No newline at end of file -- cgit 1.2.3-korg