21 lines
403 B
Protocol Buffer
21 lines
403 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message HTTPDNSApp {
|
|
int64 id = 1;
|
|
string name = 2;
|
|
string appId = 3;
|
|
bool isOn = 4;
|
|
reserved 5, 6; // removed: primaryClusterId, backupClusterId
|
|
string sniMode = 7;
|
|
bool signEnabled = 8;
|
|
string signSecret = 9;
|
|
int64 signUpdatedAt = 10;
|
|
int64 createdAt = 11;
|
|
int64 updatedAt = 12;
|
|
int64 userId = 13;
|
|
bytes clusterIdsJSON = 14;
|
|
}
|