コード例 #1
0
ファイル: client.py プロジェクト: ConPaaS-team/conpaas
def list_nodes(host, port):
    method = 'list_nodes'
    return _check(_jsonrpc_get(host, port , '/' , method))
コード例 #2
0
ファイル: client.py プロジェクト: ConPaaS-team/conpaas
def get_helloworld(host, port):
    method = 'get_helloworld'
    return _check(_jsonrpc_get(host, port , '/' , method))
コード例 #3
0
ファイル: client.py プロジェクト: ConPaaS-team/conpaas
def startup(host, port):
    method = 'startup'
    return _check(_jsonrpc_get(host, port , '/' , method))
コード例 #4
0
ファイル: client.py プロジェクト: ConPaaS-team/conpaas
def get_service_info(host, port):
    method = 'get_service_info'
    return _check(_jsonrpc_get(host, port , '/' , method))