mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
46 lines
980 B
Protocol Buffer
46 lines
980 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/rpc_messages.proto";
|
|
|
|
// 重写规则服务
|
|
service HTTPRewriteRuleService {
|
|
// 创建重写规则
|
|
rpc createHTTPRewriteRule (CreateHTTPRewriteRuleRequest) returns (CreateHTTPRewriteRuleResponse);
|
|
|
|
// 修改重写规则
|
|
rpc updateHTTPRewriteRule (UpdateHTTPRewriteRuleRequest) returns (RPCSuccess);
|
|
}
|
|
|
|
// 创建重写规则
|
|
message CreateHTTPRewriteRuleRequest {
|
|
string pattern = 1;
|
|
string replace = 2;
|
|
string mode = 3;
|
|
int32 redirectStatus = 4;
|
|
bool isBreak = 5;
|
|
string proxyHost = 6;
|
|
bool isOn = 7;
|
|
bool withQuery = 8;
|
|
bytes condsJSON = 9;
|
|
}
|
|
|
|
message CreateHTTPRewriteRuleResponse {
|
|
int64 rewriteRuleId = 1;
|
|
}
|
|
|
|
// 修改重写规则
|
|
message UpdateHTTPRewriteRuleRequest {
|
|
int64 rewriteRuleId = 1;
|
|
string pattern = 2;
|
|
string replace = 3;
|
|
string mode = 4;
|
|
int32 redirectStatus = 5;
|
|
bool isBreak = 6;
|
|
string proxyHost = 7;
|
|
bool isOn = 8;
|
|
bool withQuery = 9;
|
|
bytes condsJSON = 10;
|
|
} |