We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e830e commit 2676a28Copy full SHA for 2676a28
client/cisco_grpc_client.py
@@ -105,6 +105,17 @@ def getoper (self, path):
105
objects += response.yangjson
106
return objects
107
108
+ def cliconfig(self, cli):
109
+ """Post of CLI config commands in text
110
+ :param data: cli show
111
+ :type data: str
112
+ :return: Return the response object
113
+ :rtype: str
114
+ """
115
+ message = ems_grpc_pb2.CliConfigArgs(cli = cli)
116
+ response = self._stub.CliConfig(message, self._timeout, metadata = self._metadata)
117
+ return response
118
+
119
def showcmdtextoutput (self, cli):
120
""" Get of CLI show commands in text
121
:param data: cli show
0 commit comments