mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-04 13:10:24 +08:00
31 lines
533 B
Protocol Buffer
31 lines
533 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "model_node_cluster.proto";
|
|
|
|
message Server {
|
|
int64 id = 1;
|
|
string type = 2;
|
|
string name = 3;
|
|
string description = 4;
|
|
bytes includeNodes = 5;
|
|
bytes excludeNodes = 6;
|
|
int64 createdAt = 7;
|
|
|
|
// 配置相关
|
|
bytes config = 17;
|
|
bytes serverNamesJON = 8;
|
|
bytes httpJSON = 9;
|
|
bytes httpsJSON = 10;
|
|
bytes tcpJSON = 11;
|
|
bytes tlsJSON = 12;
|
|
bytes unixJSON = 13;
|
|
bytes udpJSON = 14;
|
|
int64 webId = 15;
|
|
int64 reverseProxyId = 16;
|
|
|
|
NodeCluster cluster = 30;
|
|
}
|