Add optional with-defaults parameter to Netconf get and get-config commands
Hello ETSI,
Could you please add also the optional with_default parameter in netconf get and get-config command as follow:
lncc.py - Get netconf command:
(Cmd) netconf get -
[--filter-file] [--with_defaults] [-h, --help]
(Cmd) netconf get --with_defaults
explicit report-all report-all-tagged trim
_nc_get_parser = _netconf_subparsers.add_parser("get")
_nc_get_parser.add_argument("--with_defaults", required=False,
choices={"report-all", "report-all-tagged","trim","explicit"})
lncc.py - Get-config netconf command:
_nc_get_config_parser = _netconf_subparsers.add_parser("get-config")
_nc_get_config_parser.add_argument("--with_defaults", required=False,choices={ "report-all", "report-all-tagged","trim","explicit"})
(Cmd) netconf get-config -
--source [--filter-file] [--with_defaults] [-h, --help]
(Cmd) netconf get-config --with_defaults
explicit report-all report-all-tagged trim
Thank you in advance,
Spyros
Edited by Spyros Kanellopoulos