Merge "Logs are added to identify the flows and groups being added in the node for...
[openflowplugin.git] / applications / southbound-cli / src / main / yang / admin-reconciliation.yang
1 module admin-reconciliation {
2
3     namespace "urn:opendaylight:params:xml:ns:yang:openflowplugin:app:admin-reconciliation:service";
4     prefix admin-reconciliation;
5
6     revision "2018-02-27" {
7         description "Initial revision for admin reconciliation";
8     }
9
10     rpc exec-reconciliation {
11         description "Requests the execution of an administrative reconciliation between the controller and
12                      one or several or all Nodes";
13         input {
14             leaf-list nodes {
15                 description "List of nodes to be reconciled";
16                 type uint64;
17             }
18
19             leaf reconcile-all-nodes {
20                 description "Flag to indicate that all nodes must be reconciled";
21                 type boolean;
22                 mandatory false;
23                 default false;
24             }
25         }
26
27         output {
28              leaf result {
29                  type boolean;
30              }
31         }
32     }
33 }