bump api version

This commit is contained in:
Michael Zanetti 2018-08-16 22:50:25 +02:00
parent a3faba7619
commit bf1c61c2cf

View File

@ -462,11 +462,12 @@
}
},
"JSONRPC.IsCloudConnected": {
"description": "Check whether the cloud is currently connected.",
"description": "Check whether the cloud is currently connected. \"connected\" will be true whenever connectionState equals CloudConnectionStateConnected and is deprecated. Please use the connectionState value instead.",
"params": {
},
"returns": {
"connected": "Bool"
"connected": "Bool",
"connectionState": "$ref:CloudConnectionState"
}
},
"JSONRPC.KeepAlive": {
@ -506,6 +507,19 @@
"enabled": "Bool"
}
},
"JSONRPC.SetupCloudConnection": {
"description": "Sets up the cloud connection by deploying a certificate and its configuration.",
"params": {
"certificatePEM": "String",
"endpoint": "String",
"privateKey": "String",
"publicKey": "String",
"rootCA": "String"
},
"returns": {
"success": "Bool"
}
},
"JSONRPC.SetupRemoteAccess": {
"description": "Setup the remote connection by providing AWS token information. This requires the cloud to be connected.",
"params": {