remove dhcp failed yang
[unimgr.git] / legato-api / src / main / yang / unimgr-dhcp.yang
1 module unimgr-dhcp {
2     namespace "urn:opendaylight:unimgr:unimgr-dhcp";
3     prefix "unimgr-dhcp";
4     
5     import dhcp_allocation_pool {
6         prefix dhcp;
7     }
8
9     revision "2016-12-14" {
10         description "It provides required datastore containers to handle DHCP requests
11             coming from access or external tunnel ports";
12     }
13     container unimgr-dhcp {
14         config true;
15         description "contains non-neutron DHCP allocation";
16         list network {
17             key "network-id";
18             leaf network-id {
19                 description "unimgr network id";
20                 type string;
21             }
22         }
23     }
24 }
25
26