static

package
v1.87.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 20, 2022 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config interface {
	NewStorage() (Storage, error)
}

type Storage

type Storage interface {
	CreateBucket(ctx context.Context, name, location string) error
	RemoveBucket(ctx context.Context, name string) error
	ListBuckets(ctx context.Context) ([]*domain.BucketInfo, error)
	PutObject(ctx context.Context, bucketName, objectName, contentType string, object io.Reader, objectSize int64, createBucketIfNotExisting bool) (*domain.AssetInfo, error)
	GetObjectInfo(ctx context.Context, bucketName, objectName string) (*domain.AssetInfo, error)
	GetObject(ctx context.Context, bucketName, objectName string) (io.Reader, func() (*domain.AssetInfo, error), error)
	ListObjectInfos(ctx context.Context, bucketName, prefix string, recursive bool) ([]*domain.AssetInfo, error)
	GetObjectPresignedURL(ctx context.Context, bucketName, objectName string, expiration time.Duration) (*url.URL, error)
	RemoveObject(ctx context.Context, bucketName, objectName string) error
	RemoveObjects(ctx context.Context, bucketName, path string, recursive bool) error
}

Directories

Path Synopsis
Package mock is a generated GoMock package.
Package mock is a generated GoMock package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL