Initial commit (code only without large binaries)
This commit is contained in:
49
EdgeCommon/pkg/rpc/protos/service_http_gzip.proto
Normal file
49
EdgeCommon/pkg/rpc/protos/service_http_gzip.proto
Normal file
@@ -0,0 +1,49 @@
|
||||
syntax = "proto3";
|
||||
option go_package = "./pb";
|
||||
|
||||
package pb;
|
||||
|
||||
import "models/model_size_capacity.proto";
|
||||
import "models/rpc_messages.proto";
|
||||
|
||||
// Gzip服务
|
||||
service HTTPGzipService {
|
||||
// 创建Gzip配置
|
||||
rpc createHTTPGzip (CreateHTTPGzipRequest) returns (CreateHTTPGzipResponse);
|
||||
|
||||
// 查找Gzip配置
|
||||
rpc findEnabledHTTPGzipConfig (FindEnabledGzipConfigRequest) returns (FindEnabledGzipConfigResponse);
|
||||
|
||||
// 修改Gzip配置
|
||||
rpc updateHTTPGzip (UpdateHTTPGzipRequest) returns (RPCSuccess);
|
||||
}
|
||||
|
||||
// 创建Gzip配置
|
||||
message CreateHTTPGzipRequest {
|
||||
int32 level = 1;
|
||||
SizeCapacity minLength = 2;
|
||||
SizeCapacity maxLength = 3;
|
||||
bytes condsJSON = 4;
|
||||
}
|
||||
|
||||
message CreateHTTPGzipResponse {
|
||||
int64 httpGzipId = 1;
|
||||
}
|
||||
|
||||
// 查找Gzip配置
|
||||
message FindEnabledGzipConfigRequest {
|
||||
int64 httpGzipId = 1;
|
||||
}
|
||||
|
||||
message FindEnabledGzipConfigResponse {
|
||||
bytes httpGzipJSON = 1;
|
||||
}
|
||||
|
||||
// 修改Gzip配置
|
||||
message UpdateHTTPGzipRequest {
|
||||
int64 httpGzipId = 1;
|
||||
int32 level = 2;
|
||||
SizeCapacity minLength = 3;
|
||||
SizeCapacity maxLength = 4;
|
||||
bytes condsJSON = 5;
|
||||
}
|
||||
Reference in New Issue
Block a user