blob: d5622d418574edc834dcf382710e98259fd3d42b [file] [log] [blame]
janani be18b5342016-07-13 21:06:41 +05301module ietf-network {
2 yang-version 1;
3 namespace "urn:ietf:params:xml:ns:yang:ietf-network";
4 prefix nd;
5 rpc networks {
6 description
7 "Serves as top-level container for a list of networks.";
8 grouping input {
9 leaf network-id {
10 type string;
11 description
12 "Identifies a network.";
13 }
14 }
15 input {
16 leaf network-id {
17 type uint8;
18 description
19 "Identifies a network.";
20 }
21 }
22 output {
23 }
24 }
25 leaf network-ref {
26 type leafref {
27 path "/networks/input/network-id";
28 }
29 }
30}