22 lines
411 B
Protocol Buffer
22 lines
411 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message HTTPDNSCluster {
|
|
int64 id = 1;
|
|
bool isOn = 2;
|
|
bool isDefault = 3;
|
|
string name = 4;
|
|
string serviceDomain = 5;
|
|
int32 defaultTTL = 6;
|
|
int32 fallbackTimeoutMs = 7;
|
|
string installDir = 8;
|
|
bytes tlsPolicyJSON = 9;
|
|
int64 createdAt = 10;
|
|
int64 updatedAt = 11;
|
|
bool autoRemoteStart = 12;
|
|
bool accessLogIsOn = 13;
|
|
string timeZone = 14;
|
|
}
|