2020-09-16 09:09:31 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
option go_package = "./pb";
|
|
|
|
|
|
|
|
|
|
package pb;
|
|
|
|
|
|
2021-01-25 16:41:30 +08:00
|
|
|
import "models/model_size_capacity.proto";
|
|
|
|
|
import "models/rpc_messages.proto";
|
2020-09-16 09:09:31 +08:00
|
|
|
|
|
|
|
|
service HTTPGzipService {
|
|
|
|
|
// 创建Gzip配置
|
|
|
|
|
rpc createHTTPGzip (CreateHTTPGzipRequest) returns (CreateHTTPGzipResponse);
|
|
|
|
|
|
|
|
|
|
// 查找Gzip配置
|
|
|
|
|
rpc findEnabledHTTPGzipConfig (FindEnabledGzipConfigRequest) returns (FindEnabledGzipConfigResponse);
|
|
|
|
|
|
|
|
|
|
// 修改Gzip配置
|
2020-11-13 18:23:06 +08:00
|
|
|
rpc updateHTTPGzip (UpdateHTTPGzipRequest) returns (RPCSuccess);
|
2020-09-16 09:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 创建Gzip配置
|
|
|
|
|
message CreateHTTPGzipRequest {
|
|
|
|
|
int32 level = 1;
|
|
|
|
|
SizeCapacity minLength = 2;
|
|
|
|
|
SizeCapacity maxLength = 3;
|
2020-09-29 17:23:11 +08:00
|
|
|
bytes condsJSON = 4;
|
2020-09-16 09:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message CreateHTTPGzipResponse {
|
2021-05-10 21:13:47 +08:00
|
|
|
int64 httpGzipId = 1;
|
2020-09-16 09:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 查找Gzip配置
|
|
|
|
|
message FindEnabledGzipConfigRequest {
|
2021-05-10 21:13:47 +08:00
|
|
|
int64 httpGzipId = 1;
|
2020-09-16 09:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message FindEnabledGzipConfigResponse {
|
2021-05-10 21:13:47 +08:00
|
|
|
bytes httpGzipJSON = 1;
|
2020-09-16 09:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 修改Gzip配置
|
|
|
|
|
message UpdateHTTPGzipRequest {
|
2021-05-10 21:13:47 +08:00
|
|
|
int64 httpGzipId = 1;
|
2020-09-16 09:09:31 +08:00
|
|
|
int32 level = 2;
|
|
|
|
|
SizeCapacity minLength = 3;
|
|
|
|
|
SizeCapacity maxLength = 4;
|
2020-09-29 17:23:11 +08:00
|
|
|
bytes condsJSON = 5;
|
2020-09-16 09:09:31 +08:00
|
|
|
}
|