From 69342de1844ed0d8a0e53f8f04c10e0725c44ce1 Mon Sep 17 00:00:00 2001 From: Marek Gradzki Date: Thu, 22 Mar 2018 12:48:19 +0100 Subject: v3po: fix issues found by pyang Change-Id: Icbe45830641ba89a1e136401528acdb2b836d12e Signed-off-by: Marek Gradzki --- .../main/yang/subinterface-span@2017-06-07.yang | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 v3po/api/src/main/yang/subinterface-span@2017-06-07.yang (limited to 'v3po/api/src/main/yang/subinterface-span@2017-06-07.yang') diff --git a/v3po/api/src/main/yang/subinterface-span@2017-06-07.yang b/v3po/api/src/main/yang/subinterface-span@2017-06-07.yang new file mode 100644 index 000000000..22f8ee1b3 --- /dev/null +++ b/v3po/api/src/main/yang/subinterface-span@2017-06-07.yang @@ -0,0 +1,48 @@ +module subinterface-span { + yang-version 1; + namespace "urn:opendaylight:params:xml:ns:yang:subinterface-span"; + prefix "subif-span"; + + import ietf-interfaces { + prefix "if"; + } + + import vpp-vlan { + prefix "vpp-vlan"; + } + + import yang-ext { + prefix "ext"; + } + + import v3po { + prefix "v3po"; + } + + revision "2017-06-07" { + description "Eliminated config leafrefs in operational tree"; + } + + revision "2017-05-10" { + description + "Initialial revision that adds support for mirroring interfaces on subinterfaces. + Vpp implementation allows/implements only two cases: + - Src: interface |Dst: interface - covered in v3po.yang + - Src: interface |Dst: subinterface - covered by this model"; + } + + augment /if:interfaces/if:interface/vpp-vlan:sub-interfaces/vpp-vlan:sub-interface { + ext:augment-identifier "vpp-subinterface-span-augmentation"; + + container span { + uses v3po:span-attributes; + } + } + + augment /if:interfaces-state/if:interface/vpp-vlan:sub-interfaces/vpp-vlan:sub-interface { + ext:augment-identifier "vpp-subinterface-span-state-augmentation"; + container span-state { + uses v3po:span-state-attributes; + } + } +} \ No newline at end of file -- cgit 1.2.3-korg