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

22 lines
442 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;
2021-05-25 17:49:05 +08:00
int64 nodeGrantId = 4;
2020-09-13 19:27:47 +08:00
string installDir = 5;
string uniqueId = 6;
string secret = 7;
string dnsName = 8;
int64 dnsDomainId = 9;
int64 httpCachePolicyId = 10;
int64 httpFirewallPolicyId = 11;
2021-07-31 22:23:16 +08:00
bool isOn = 12;
2021-10-12 11:45:28 +08:00
string timeZone = 13;
int32 nodeMaxThreads = 14;
int32 nodeTCPMaxConnections = 15;
2020-09-13 19:27:47 +08:00
}