Bump versions by x.y.(z+1)
[unimgr.git] / presto-api / src / main / yang / mef-unimgr-ext.yang
1 module mef-unimgr-ext {
2   namespace "urn:mef:unimgr-ext";
3   prefix mef-unimgr-ext;
4
5   import onf-core-network-module {
6     prefix onf-cn;
7   }
8
9   revision 2016-07-25 {
10   }
11
12   typedef ActivationStatus {
13     type enumeration {
14       enum INACTIVE;
15       enum ACTIVE;
16       enum FAILED;
17     }
18   }
19
20   augment "/onf-cn:forwarding-constructs/onf-cn:forwarding-construct" {
21     container unimgr-attrs {
22       leaf status {
23         type ActivationStatus;
24         config false;
25         default INACTIVE;
26       }
27     }
28   }
29 }