2dd5f9f0c5dc8e9b1d24e6fc250a6f5d802dd801
[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;}
6     import ietf-inet-types {prefix inet;}
7     import ietf-yang-types {prefix yang;}
8     import opendaylight-port-types {prefix port;}
9     import opendaylight-inventory {prefix inv;}
10     import flow-node-inventory {prefix flowinv;}
11     
12     revision "2013-08-19" {
13         description "Flow Capable Node extensions to the Inventory model";
14     }
15     
16
17     grouping link {
18         leaf source {
19             type inv:node-connector-ref;
20         }
21         leaf destination {
22             type inv:node-connector-ref;
23         }
24     }
25
26
27     notification link-discovered {
28         uses link;
29     }
30     
31     notification link-overutilized {
32         uses link;
33     }
34     
35     notification link-removed {
36         uses link;
37     }
38     
39     notification link-utilization-normal {
40         uses link;
41     }
42
43     rpc solicit-refresh {
44     
45     }
46
47 }