mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-16 05:46:34 +08:00
查找当前API节点版本中增加角色
This commit is contained in:
@@ -137,6 +137,7 @@ message FindCurrentAPINodeVersionResponse {
|
||||
string version = 1; // 版本号
|
||||
string os = 2; // 系统代号,比如linux
|
||||
string arch = 3; // 架构
|
||||
string role = 4; // 角色
|
||||
}
|
||||
|
||||
// 获取当前API节点的信息
|
||||
|
||||
@@ -124,26 +124,26 @@ message DeleteSSLCertRequest {
|
||||
|
||||
// 计算匹配的证书数量
|
||||
message CountSSLCertRequest {
|
||||
bool isCA = 1; // 是否为CA证书
|
||||
bool isAvailable = 2; // 是否可用(在有效期内)
|
||||
bool isExpired = 3; // 是否已过期
|
||||
int32 expiringDays = 4; // 离过期日的天数
|
||||
string keyword = 5; // 关键词
|
||||
int64 userId = 6; // 用户ID
|
||||
repeated string domains = 7; // 搜索使用的域名列表
|
||||
bool isCA = 1; // 可选项,是否为CA证书
|
||||
bool isAvailable = 2; // 可选项,是否可用(在有效期内)
|
||||
bool isExpired = 3; // 可选项,是否已过期
|
||||
int32 expiringDays = 4; // 可选项,离过期日的天数
|
||||
string keyword = 5; // 可选项,关键词
|
||||
int64 userId = 6; // 可选项,用户ID,不填则表示读取管理员上传的证书
|
||||
repeated string domains = 7; // 可选项,搜索使用的域名列表
|
||||
}
|
||||
|
||||
// 列出单页匹配的证书
|
||||
message ListSSLCertsRequest {
|
||||
bool isCA = 1; // 是否为CA证书
|
||||
bool isAvailable = 2; // 是否可用(在有效期内)
|
||||
bool isExpired = 3; // 是否已过期
|
||||
int32 expiringDays = 4; // 离过期日的天数
|
||||
string keyword = 5; // 关键词
|
||||
int64 userId = 8; // 用户ID
|
||||
repeated string domains = 9; // 搜索使用的域名列表
|
||||
bool isCA = 1; // 可选项,是否为CA证书
|
||||
bool isAvailable = 2; // 可选项,是否可用(在有效期内)
|
||||
bool isExpired = 3; //可选项, 是否已过期
|
||||
int32 expiringDays = 4; // 可选项,离过期日的天数
|
||||
string keyword = 5; // 可选项,关键词
|
||||
int64 userId = 8; // 可选项,用户ID,不填则表示读取管理员上传的证书
|
||||
repeated string domains = 9; // 可选项,搜索使用的域名列表
|
||||
int64 offset = 6; // 读取位置
|
||||
int64 size = 7; // 读取长度
|
||||
int64 size = 7; // 读取长度,不能小于0
|
||||
}
|
||||
|
||||
message ListSSLCertsResponse {
|
||||
|
||||
Reference in New Issue
Block a user