Initial commit (code only without large binaries)
This commit is contained in:
22
EdgeCommon/pkg/rpc/protos/models/model_ns_key.proto
Normal file
22
EdgeCommon/pkg/rpc/protos/models/model_ns_key.proto
Normal file
@@ -0,0 +1,22 @@
|
||||
syntax = "proto3";
|
||||
option go_package = "./pb";
|
||||
|
||||
package pb;
|
||||
|
||||
import "models/model_ns_domain.proto";
|
||||
import "models/model_ns_zone.proto";
|
||||
|
||||
// NS密钥
|
||||
message NSKey {
|
||||
int64 id = 1;
|
||||
bool isOn = 2;
|
||||
string name = 3;
|
||||
string algo = 4;
|
||||
string secret = 5;
|
||||
string secretType = 6;
|
||||
bool isDeleted = 7;
|
||||
int64 version = 8;
|
||||
|
||||
NSDomain nsDomain = 30;
|
||||
NSZone nsZone = 31;
|
||||
}
|
||||
Reference in New Issue
Block a user