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

26 lines
513 B
Protocol Buffer
Raw Normal View History

2020-11-12 14:41:23 +08:00
syntax = "proto3";
option go_package = "./pb";
package pb;
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;
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;
int64 providerId = 11;
2020-12-23 16:49:57 +08:00
int64 countNodeClusters = 12;
bool isUp = 15;
2021-11-06 16:23:06 +08:00
bool isDeleted = 16;
}