Files
EdgeCommon/pkg/rpc/protos/model_node_cluster.proto

14 lines
225 B
Protocol Buffer
Raw Normal View History

2020-09-13 19:27:47 +08:00
syntax = "proto3";
option go_package = "./pb";
package pb;
message NodeCluster {
int64 id = 1;
string name = 2;
int64 createdAt = 3;
int64 grantId = 4;
string installDir = 5;
string uniqueId = 6;
string secret = 7;
2020-09-13 19:27:47 +08:00
}