diff options
author | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-03-11 22:22:30 -0400 |
---|---|---|
committer | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-03-11 22:34:11 -0400 |
commit | 4a2c6a244ca8f0640922fdc98c0990998011f5cf (patch) | |
tree | fca400228f3d4142e1f07dafe69c445ed4b9ce3f /components | |
parent | 51b06267304d9c5dec53d15f9a2f9f614e843cbd (diff) |
Add support to invoke device specific RPC
Change-Id: Ia003ed669cc88a4c24a495e79db620b5034bc3ca
Issue-ID: CCSDK-790
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
Diffstat (limited to 'components')
-rw-r--r-- | components/scripts/python/ccsdk_netconf/netconfclient.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/scripts/python/ccsdk_netconf/netconfclient.py b/components/scripts/python/ccsdk_netconf/netconfclient.py index d898ec00..e263ba8f 100644 --- a/components/scripts/python/ccsdk_netconf/netconfclient.py +++ b/components/scripts/python/ccsdk_netconf/netconfclient.py @@ -41,6 +41,10 @@ class NetconfClient: persist, persist_id) return device_response + def invoke_rpc(self, rpc): + device_response = self.netconf_rpc_client.invokeRpc(rpc) + return device_response + def cancel_commit(self, persist_id=""): device_response = self.netconf_rpc_client.cancelCommit(persist_id) return device_response |