mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-28 07:50:25 +08:00
增加查找使用某个证书的NS集群数量的API
This commit is contained in:
@@ -58,6 +58,9 @@ service NSClusterService {
|
||||
|
||||
// 修改集群的UDP设置
|
||||
rpc updateNSClusterUDP (UpdateNSClusterUDPRequest) returns (RPCSuccess);
|
||||
|
||||
// 计算使用某个SSL证书的集群数量
|
||||
rpc countAllNSClustersWithSSLCertId (CountAllNSClustersWithSSLCertIdRequest) returns (RPCCountResponse);
|
||||
}
|
||||
|
||||
// 创建集群
|
||||
@@ -187,4 +190,9 @@ message UpdateNSClusterTLSRequest {
|
||||
message UpdateNSClusterUDPRequest {
|
||||
int64 nsClusterId = 1;
|
||||
bytes udpJSON = 2;
|
||||
}
|
||||
|
||||
// 计算使用某个SSL证书的集群数量
|
||||
message CountAllNSClustersWithSSLCertIdRequest {
|
||||
int64 sslCertId = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user