Package ganeti :: Package rpc :: Package stub :: Module metad
[hide private]
[frames] | no frames]

Source Code for Module ganeti.rpc.stub.metad

 1  # This file is automatically generated, do not edit! 
 2  # pylint: disable-all 
3 -class ClientRpcStub(object):
4 - def _GenericInvoke(self, method, *args):
5 raise NotImplementedError()
6
7 - def _GetSocketPath(self):
8 from ganeti import pathutils 9 return pathutils.METAD_SOCKET
10
11 - def Echo(self, string):
12 return self._GenericInvoke("echo", string)
13
14 - def UpdateConfig(self, jSValue):
15 return self._GenericInvoke("updateConfig", jSValue)
16