You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package objstorage
|
|
|
|
|
|
|
|
import "context"
|
|
|
|
|
|
|
|
type Interface interface {
|
|
|
|
Init() error
|
|
|
|
Name() string
|
|
|
|
MinMultipartSize() int64
|
|
|
|
UploadBucket() string
|
|
|
|
PermanentBucket() string
|
|
|
|
ClearBucket() string
|
|
|
|
ApplyPut(ctx context.Context, args *ApplyPutArgs) (*PutRes, error)
|
|
|
|
GetObjectInfo(ctx context.Context, args *BucketFile) (*ObjectInfo, error)
|
|
|
|
CopyObjectInfo(ctx context.Context, src *BucketFile, dst *BucketFile) error
|
|
|
|
DeleteObjectInfo(ctx context.Context, info *BucketFile) error
|
|
|
|
MoveObjectInfo(ctx context.Context, src *BucketFile, dst *BucketFile) error
|
|
|
|
MergeObjectInfo(ctx context.Context, src []BucketFile, dst *BucketFile) error
|
|
|
|
IsNotFound(err error) bool
|
|
|
|
}
|