storage

package
v0.18.0 Latest Latest
Warning

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

Go to latest
Published: Sep 12, 2022 License: Apache-2.0 Imports: 1 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type FileInfo added in v0.16.0

type FileInfo struct {
	Key string
}

type Operation

type Operation int
const (
	READ  Operation = iota
	WRITE           = iota
)

func (Operation) String

func (op Operation) String() string

type StorageService

type StorageService interface {
	Read(bucket string, key string) ([]byte, error)
	Write(bucket string, key string, object []byte) error
	Delete(bucket string, key string) error
	ListFiles(bucket string) ([]*FileInfo, error)
	PreSignUrl(bucket string, key string, operation Operation, expiry uint32) (string, error)
}

type UnimplementedStoragePlugin

type UnimplementedStoragePlugin struct{}

func (*UnimplementedStoragePlugin) Delete

func (*UnimplementedStoragePlugin) Delete(bucket string, key string) error

func (*UnimplementedStoragePlugin) ListFiles added in v0.16.0

func (*UnimplementedStoragePlugin) ListFiles(bucket string) ([]*FileInfo, error)

func (*UnimplementedStoragePlugin) PreSignUrl

func (*UnimplementedStoragePlugin) PreSignUrl(bucket string, key string, operation Operation, expiry uint32) (string, error)

func (*UnimplementedStoragePlugin) Read

func (*UnimplementedStoragePlugin) Read(bucket string, key string) ([]byte, error)

func (*UnimplementedStoragePlugin) Write

func (*UnimplementedStoragePlugin) Write(bucket string, key string, object []byte) error

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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