summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/test/resources/parser-identifier/invoke-rpc-module.yang
blob: 7a8bcffdf405f2e2dbdabe83dfb72e089e2dfd45 (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
26
module invoke-rpc-module {
  namespace "invoke:rpc:module";
  prefix "inrpcmod";
  yang-version 1;

  revision 2017-05-23 {
      description "Initial revision.";
  }

  rpc rpc-test {
      input {
          container cont {
              leaf lf {
                  type string;
              }
          }
      }
      output {
          container cont-out {
              leaf lf-out {
                  type string;
              }
          }
      }
  }
}