增加修改服务所在分组API/proto文件增加若干注释

This commit is contained in:
GoEdgeLab
2022-06-25 19:22:19 +08:00
parent be1a53e567
commit cd19ec5333
34 changed files with 4339 additions and 4166 deletions

View File

@@ -16,6 +16,9 @@ service ServerService {
// 修改服务基本信息
rpc updateServerBasic (UpdateServerBasicRequest) returns (RPCSuccess);
// 修改服务所在分组
rpc updateServerGroupIds(UpdateServerGroupIdsRequest) returns (RPCSuccess);
// 修改服务是否启用
rpc updateServerIsOn (UpdateServerIsOnRequest) returns (RPCSuccess);
@@ -194,6 +197,12 @@ message UpdateServerBasicRequest {
repeated int64 serverGroupIds = 6;
}
// 修改服务所在分组
message UpdateServerGroupIdsRequest {
int64 serverId = 1;
repeated int64 serverGroupIds = 2;
}
// 修改服务启是否启用
message UpdateServerIsOnRequest {
int64 serverId = 1;