Merge "BUG 4015 test_create_floating_ip_specifying_a_fixed_ip_address fails"
[neutron.git] / model / src / main / yang / neutron.yang
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 module neutron {
10
11     yang-version 1;
12
13     namespace "urn:opendaylight:neutron";
14
15     prefix neutron-L3;
16
17     import neutron-networks { prefix "networks"; }
18     import neutron-ports { prefix "ports"; }
19     import neutron-subnets { prefix "subnets"; }
20     import neutron-secgroups { prefix "secgroups"; }
21     import neutron-L3 { prefix "l3"; }
22     import neutron-metering { prefix "metering"; }
23     import neutron-lbaasv2 { prefix "lbaasv2"; }
24
25     organization "OpenDaylight Neutron Group";
26
27     contact "Ed Warnicke <eaw@cisco.com>";
28
29     description "This YANG module defines a top level for the neutron models in opendaylight.";
30
31     revision "2015-03-25" {
32         description
33                 "Initial version of top level neutron model";
34     }
35
36     container neutron {
37         uses networks:networks-attributes;
38         uses l3:routers-attributes;
39         uses l3:floatingips-attributes;
40         uses metering:metering-labels-attributes;
41         uses metering:metering-rules-attributes;
42         uses ports:ports-attributes;
43         uses secgroups:security-groups-attributes;
44         uses secgroups:security-rules-attributes;
45         uses subnets:subnets-attributes;
46         uses lbaasv2:lbaas-attributes;
47     }
48 }