/usr/share/yuma/modules/yuma123/yangcli-ex.yang is in libyuma-base 2.10-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | module yangcli-ex {
namespace
"http://yuma123.org/ns/yangcli-ex";
prefix "yangcli-ex";
import yangcli { prefix yc; }
organization
"Yuma123";
contact
"Vladimir Vassilev <mailto:vladimir@transpacket.com>";
description
"This module contains extra parameters for yangcli";
revision 2017-08-31 {
description
"Changed the default value of
keep-session-model-copies-after-compilation to false.";
}
revision 2016-08-10 {
description
"Added dump-session parameter.";
}
revision 2016-03-28 {
description
"Initial revision.";
}
grouping ConnectParmsEx {
description
"Common extended parms for connecting to a NETCONF server.
Used by the connect operation and if present at
the command line invocation, then the connect
operation will be invoked automatically.";
leaf dump-session {
description
"Filespec base for dumping the raw netconf
traffic data and timestamp information. Example:
--dump-session=<base> The following files are created:
* <base>out - session data sent to server
* <base>in - session data received from server
* <base>out.ts - timestamp-tee formated output transactions report
* <base>in.ts - timestamp-tee formated input transactions report
";
type string;
}
}
augment "/yc:yangcli" {
description
"Adds extra parameters to yangcli.";
leaf keep-session-model-copies-after-compilation {
description
"Controls if temporary session model copies are kept
after compilation in ~/.yuma/tmp/<>/<sid> until yangcli
is terminated.";
type boolean;
default false;
}
uses ConnectParmsEx;
}
augment "/yc:connect/yc:input" {
description
"Adds extra parameters to connect.";
uses ConnectParmsEx;
}
}
|