2020-11-12 14:41:23 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
option go_package = "./pb";
|
|
|
|
|
|
|
|
|
|
package pb;
|
|
|
|
|
|
2021-01-25 16:41:30 +08:00
|
|
|
import "models/model_dns_route.proto";
|
2020-11-15 11:57:54 +08:00
|
|
|
|
2020-11-12 14:41:23 +08:00
|
|
|
message DNSDomain {
|
|
|
|
|
int64 id = 1;
|
|
|
|
|
string name = 2;
|
|
|
|
|
bool isOn = 3;
|
|
|
|
|
int64 dataUpdatedAt = 4;
|
2020-11-13 18:23:06 +08:00
|
|
|
string dataError = 5;
|
2020-11-14 21:28:02 +08:00
|
|
|
int64 countServerRecords = 6;
|
2020-12-23 16:49:57 +08:00
|
|
|
int64 countAllServers = 13;
|
2020-11-14 21:28:02 +08:00
|
|
|
bool serversChanged = 7;
|
|
|
|
|
int64 countNodeRecords = 8;
|
2020-12-23 16:49:57 +08:00
|
|
|
int64 countAllNodes = 14;
|
2020-11-14 21:28:02 +08:00
|
|
|
bool nodesChanged = 9;
|
2020-11-15 11:57:54 +08:00
|
|
|
repeated DNSRoute routes = 10;
|
2020-11-13 18:23:06 +08:00
|
|
|
int64 providerId = 11;
|
2020-12-23 16:49:57 +08:00
|
|
|
int64 countNodeClusters = 12;
|
2021-08-19 14:26:19 +08:00
|
|
|
bool isUp = 15;
|
2021-11-06 16:23:06 +08:00
|
|
|
bool isDeleted = 16;
|
2020-11-13 18:23:06 +08:00
|
|
|
}
|