Initial commit (code only without large binaries)
This commit is contained in:
25
EdgeCommon/pkg/rpc/protos/models/model_dns_domain.proto
Normal file
25
EdgeCommon/pkg/rpc/protos/models/model_dns_domain.proto
Normal file
@@ -0,0 +1,25 @@
|
||||
syntax = "proto3";
|
||||
option go_package = "./pb";
|
||||
|
||||
package pb;
|
||||
|
||||
import "models/model_dns_route.proto";
|
||||
|
||||
message DNSDomain {
|
||||
int64 id = 1;
|
||||
string name = 2;
|
||||
bool isOn = 3;
|
||||
int64 dataUpdatedAt = 4;
|
||||
string dataError = 5;
|
||||
int64 countServerRecords = 6;
|
||||
int64 countAllServers = 13;
|
||||
bool serversChanged = 7;
|
||||
int64 countNodeRecords = 8;
|
||||
int64 countAllNodes = 14;
|
||||
bool nodesChanged = 9;
|
||||
repeated DNSRoute routes = 10;
|
||||
int64 providerId = 11;
|
||||
int64 countNodeClusters = 12;
|
||||
bool isUp = 15;
|
||||
bool isDeleted = 16;
|
||||
}
|
||||
Reference in New Issue
Block a user