增加服务之间拷贝配置的API(开源版本只有定义,没有实现)

This commit is contained in:
GoEdgeLab
2023-04-09 16:00:21 +08:00
parent 0e6472f154
commit d3713344bc
6 changed files with 296 additions and 269 deletions

View File

@@ -16522,9 +16522,14 @@
"code": "message FindAllEnabledReportNodeGroupsResponse {\n\trepeated ReportNodeGroup reportNodeGroups = 1;\n}",
"doc": ""
},
{
"name": "FindAllEnabledServerGroupsRequest",
"code": "message FindAllEnabledServerGroupsRequest {\n\tint64 userId = 1; // 可选项用户ID只有管理员才可以指定用户ID\n}",
"doc": "查询所有分组"
},
{
"name": "FindAllEnabledServerGroupsResponse",
"code": "message FindAllEnabledServerGroupsResponse {\n\trepeated ServerGroup serverGroups = 1;\n}",
"code": "message FindAllEnabledServerGroupsResponse {\n\trepeated ServerGroup serverGroups = 1; // 分组列表\n}",
"doc": ""
},
{
@@ -20664,7 +20669,7 @@
},
{
"name": "ServerGroup",
"code": "message ServerGroup {\n\tint64 id = 1;\n\tstring name = 2;\n\tint64 userId = 3;\n}",
"code": "message ServerGroup {\n\tint64 id = 1; // ID\n\tstring name = 2; // 分组名称\n\tint64 userId = 3; // 所属用户ID\n\tbool isOn = 4; // 是否启用\n}",
"doc": ""
},
{