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

18 lines
339 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;
2020-09-13 19:27:47 +08:00
}