ae35be5dd0ad8fc7859307c590ba3d6ba460bf76
[honeycomb.git] / v3po / api / src / main / yang / v3po-context.yang
1 module v3po-context {
2   yang-version 1;
3   namespace "urn:opendaylight:params:xml:ns:yang:v3po:context";
4   prefix "v3po-ctx";
5
6   revision "2016-09-09" {
7     description
8     "Initial revision of v3po specific context";
9   }
10
11   container disabled-interfaces {
12     config false;
13     // context data
14
15     description "Index list of disabled interfaces. VPP does not always delete an interface after deletion. It just
16                  disables it and keeps it there. Honeycomb can hide such interfaces from operational data, and this
17                  is the place to heep track of which interfaces were deleted, but are expected to show up in VPP";
18
19     list disabled-interface-index {
20
21         key "index";
22
23         leaf index {
24             type int32;
25         }
26     }
27   }
28
29 }