49 lines
1.3 KiB
Protocol Buffer
49 lines
1.3 KiB
Protocol Buffer
syntax = "proto3"; //版本声明,使用v3版本
|
||
|
||
package resource;
|
||
option go_package = "gitlab.fusenpack.com/backend/resource;service";
|
||
|
||
// 导入google/api/annotations.proto 注释依赖
|
||
import "google/api/annotations.proto";
|
||
import "service/basic.proto";
|
||
import "google/protobuf/struct.proto";
|
||
import "google/protobuf/any.proto";
|
||
|
||
//定义服务
|
||
service resource {
|
||
|
||
// 获取资源详情
|
||
rpc GetResourceInfo(GetResourceInfoReq) returns (GetResourceInfoRes) {
|
||
option (google.api.http) = {
|
||
get: "/api/resource/info"
|
||
};
|
||
}
|
||
}
|
||
|
||
/* 获取资源详情 */
|
||
message GetResourceInfoReq{
|
||
optional string resource_id = 1;
|
||
optional int64 guest_id =2;
|
||
optional int64 user_id =3;
|
||
optional string resource_type = 4;
|
||
optional string resource_url = 5;
|
||
optional string version = 6;
|
||
optional int64 api_type = 7;
|
||
optional string bucket_name = 8;
|
||
optional string source = 9;
|
||
}
|
||
message GetResourceInfoRes {
|
||
string resource_id = 1;
|
||
int64 guest_id =2;
|
||
int64 user_id =3;
|
||
string resource_type = 4;
|
||
string resource_url = 5;
|
||
string version = 6;
|
||
int64 api_type = 7;
|
||
string bucket_name = 8;
|
||
string source = 9;
|
||
string uploaded_at = 10;
|
||
// google.protobuf.Struct metadata = 11;
|
||
google.protobuf.Any metadata =11;
|
||
}
|
||
/* 获取资源详情 */ |