698cbe8fff0850b70b052a47470b9a5dcbfd4b9d
[groupbasedpolicy.git] / neutron-ovsdb / src / main / yang / module-settings.yang
1 module neutron-ovsdb-impl {
2
3     yang-version 1;
4     namespace "urn:opendaylight:groupbasedpolicy:neutron:ovsdb:params";
5     prefix "neutron-ovsdb-params";
6
7     import opendaylight-md-sal-binding { prefix mdsal; revision-date 2013-10-28; }
8
9     description
10         "This module contains the base YANG definitions for
11         neutron-ovsdb mudule params.";
12
13     revision "2016-08-12" {
14         description
15             "Initial revision.";
16     }
17
18     container integration-bridge-setting {
19         leaf name {
20             mandatory true;
21             type string;
22         }
23         leaf openflow-port {
24             mandatory true;
25             type uint16;
26         }
27         leaf openflow-protocol {
28             mandatory true;
29             type string {
30                 pattern "tcp|udp";
31            }
32         }
33     }
34 }