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 11ddec8 commit 7ef163aCopy full SHA for 7ef163a
components/supervisor-api/control.proto
@@ -40,8 +40,15 @@ message ExposePortResponse {}
40
41
message CreateSSHKeyPairRequest {}
42
message CreateSSHKeyPairResponse {
43
- // Return privateKey for ws-proxy
+ // Return privateKey for ws-proxy or web socket tunnels
44
string private_key = 1;
45
+ // Return hostKey used by client to verify fingerprint
46
+ SSHPublicKey host_key = 2;
47
+}
48
+
49
+message SSHPublicKey {
50
+ string type = 1;
51
+ string value = 2;
52
}
53
54
message CreateDebugEnvRequest {
0 commit comments