Neutron MTU extension in network model
[neutron.git] / model / src / main / yang / neutron-mtu-ext.yang
1 /*
2  * Copyright (c) 2018 Redhat 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 module neutron-mtu-ext {
9
10     yang-version 1;
11
12     namespace "urn:opendaylight:neutron-mtu-ext";
13
14     prefix neutron-mtu-ext;
15
16     import neutron { prefix "neutron"; }
17     import neutron-mtu { prefix "mtu"; }
18     import yang-ext { prefix "ext"; }
19
20     organization "OpenDaylight Neutron Group";
21
22     description "This YANG module defines Openstack Neutron mtu extensions model";
23
24     revision "2018-11-14" {
25         description
26                 "OpenDaylight Neon release";
27     }
28
29     augment "/neutron:neutron/neutron:networks/neutron:network"{
30         description "This module augments the networks container
31                 in the neutron-networks module with mtu information.";
32         ext:augment-identifier "network-mtu-extension";
33         uses mtu:mtu-attributes;
34     }
35 }