memos/proto/store/resource.proto

29 lines
581 B
Protocol Buffer
Raw Normal View History

2024-05-02 21:28:06 +08:00
syntax = "proto3";
package memos.store;
import "google/protobuf/timestamp.proto";
option go_package = "gen/store";
enum ResourceStorageType {
RESOURCE_STORAGE_TYPE_UNSPECIFIED = 0;
LOCAL = 1;
S3 = 2;
EXTERNAL = 3;
}
message ResourcePayload {
oneof payload {
S3Object s3_object = 1;
}
message S3Object {
2024-05-02 22:21:49 +08:00
// key is the S3 object key.
string key = 1;
// last_presigned_time is the last time the object was presigned.
// This is used to determine if the presigned URL is still valid.
google.protobuf.Timestamp last_presigned_time = 2;
2024-05-02 21:28:06 +08:00
}
}