summaryrefslogtreecommitdiffstats
path: root/tests/modules/yang/sm-rpcnotif.yang
blob: fda5442ca0b220277ae5c0f173749a56eff756d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module sm-rpcnotif {
  yang-version 1.1;
  namespace "urn:rpcnotif";
  prefix "smrn";

  container cont {
    notification cn;
    action cr {
      input {
        leaf in {
          type string;
        }
      }
      output {
        leaf out {
          type string;
        }
      }
    }
  }
  rpc r1;
  rpc r2;
  notification n1;
  notification n2;
}