增加根据IP名单代号查找IP名单ID的接口

This commit is contained in:
GoEdgeLab
2024-05-05 14:08:04 +08:00
parent cf508a2771
commit bd0d46f26c
4 changed files with 272 additions and 67 deletions

View File

@@ -4230,6 +4230,15 @@
"user"
],
"isDeprecated": false
},
{
"name": "findIPListIdWithCode",
"requestMessageName": "FindIPListIdWithCodeRequest",
"responseMessageName": "FindIPListIdWithCodeResponse",
"code": "rpc findIPListIdWithCode(FindIPListIdWithCodeRequest) returns (FindIPListIdWithCodeResponse);",
"doc": "根据IP名单代号获取IP名单ID",
"roles": [],
"isDeprecated": false
}
],
"filename": "service_ip_list.proto",
@@ -19387,6 +19396,16 @@
"code": "message FindIPLibraryFileResponse {\n\tIPLibraryFile ipLibraryFile = 1;\n}",
"doc": ""
},
{
"name": "FindIPListIdWithCodeRequest",
"code": "message FindIPListIdWithCodeRequest {\n\tstring code = 1; // IP名单代号\n}",
"doc": "根据IP名单代号获取IP名单ID"
},
{
"name": "FindIPListIdWithCodeResponse",
"code": "message FindIPListIdWithCodeResponse {\n\tint64 ipListId = 1; // IP名单ID\n}",
"doc": ""
},
{
"name": "FindLatestDeployFilesRequest",
"code": "message FindLatestDeployFilesRequest {\n\n}",