2020-07-24 09:17:48 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
option go_package = "./pb";
|
|
|
|
|
|
|
|
|
|
package pb;
|
|
|
|
|
|
2020-07-29 19:02:28 +08:00
|
|
|
import "model_node_cluster.proto";
|
2020-07-30 22:41:49 +08:00
|
|
|
import "model_node_login.proto";
|
2020-07-24 09:17:48 +08:00
|
|
|
|
|
|
|
|
message Node {
|
|
|
|
|
int64 id = 1;
|
|
|
|
|
string name = 2;
|
2020-08-21 12:32:33 +08:00
|
|
|
string status = 3;
|
2020-08-30 16:12:00 +08:00
|
|
|
string installDir = 4;
|
|
|
|
|
bool isInstalled = 5;
|
|
|
|
|
string code = 6;
|
|
|
|
|
string uniqueId = 7;
|
|
|
|
|
string secret = 8;
|
2020-07-24 09:17:48 +08:00
|
|
|
|
2020-07-29 19:02:28 +08:00
|
|
|
NodeCluster cluster = 32;
|
2020-07-30 22:41:49 +08:00
|
|
|
NodeLogin login = 33;
|
2020-07-24 09:17:48 +08:00
|
|
|
}
|