6ad6b6dbc5532239ba9eba2d2a61f2fd6e3761fe
[controller.git] / opendaylight / md-sal / model / model-flow-service / src / main / yang / flow-topology-notification.yang
1 module flow-topology-discovery {
2     namespace "urn:opendaylight:flow:topology:discovery";
3     prefix flow-node-topo;
4
5     import yang-ext {prefix ext; revision-date "2013-07-09";}
6     import opendaylight-inventory {prefix inv;revision-date "2013-08-19";}
7     
8     revision "2013-08-19" {
9         description "Flow Capable Node extensions to the Inventory model";
10     }
11     
12
13     grouping link {
14         leaf source {
15             type inv:node-connector-ref;
16         }
17         leaf destination {
18             type inv:node-connector-ref;
19         }
20     }
21
22
23     notification link-discovered {
24         uses link;
25     }
26     
27     notification link-overutilized {
28         uses link;
29     }
30     
31     notification link-removed {
32         uses link;
33     }
34     
35     notification link-utilization-normal {
36         uses link;
37     }
38
39     rpc solicit-refresh {
40     
41     }
42
43 }