Versions in this module Expand all Collapse all v0 v0.3.0 Oct 24, 2021 Changes in this version + const Type + func New(pairs ...types.Pair) (types.Servicer, types.Storager, error) + func NewServicer(pairs ...types.Pair) (types.Servicer, error) + func NewStorager(pairs ...types.Pair) (types.Storager, error) + func WithDefaultServicePairs(v DefaultServicePairs) Pair + func WithDefaultStoragePairs(v DefaultStoragePairs) Pair + func WithEnableVirtualDir() Pair + func WithServiceFeatures(v ServiceFeatures) Pair + func WithStorageClass(v string) Pair + func WithStorageFeatures(v StorageFeatures) Pair + type DefaultServicePairs struct + Create []Pair + Delete []Pair + Get []Pair + List []Pair + type DefaultStoragePairs struct + Copy []Pair + Create []Pair + Delete []Pair + List []Pair + Metadata []Pair + Reach []Pair + Read []Pair + Stat []Pair + Write []Pair + type ObjectSystemMetadata struct + StorageClass string + func GetObjectSystemMetadata(o *Object) ObjectSystemMetadata + type Service struct + func (s *Service) Create(name string, pairs ...Pair) (store Storager, err error) + func (s *Service) CreateWithContext(ctx context.Context, name string, pairs ...Pair) (store Storager, err error) + func (s *Service) Delete(name string, pairs ...Pair) (err error) + func (s *Service) DeleteWithContext(ctx context.Context, name string, pairs ...Pair) (err error) + func (s *Service) Get(name string, pairs ...Pair) (store Storager, err error) + func (s *Service) GetWithContext(ctx context.Context, name string, pairs ...Pair) (store Storager, err error) + func (s *Service) List(pairs ...Pair) (sti *StoragerIterator, err error) + func (s *Service) ListWithContext(ctx context.Context, pairs ...Pair) (sti *StoragerIterator, err error) + func (s *Service) String() string + type ServiceFeatures struct + type Storage struct + func (s *Storage) Copy(src string, dst string, pairs ...Pair) (err error) + func (s *Storage) CopyWithContext(ctx context.Context, src string, dst string, pairs ...Pair) (err error) + func (s *Storage) Create(path string, pairs ...Pair) (o *Object) + func (s *Storage) Delete(path string, pairs ...Pair) (err error) + func (s *Storage) DeleteWithContext(ctx context.Context, path string, pairs ...Pair) (err error) + func (s *Storage) List(path string, pairs ...Pair) (oi *ObjectIterator, err error) + func (s *Storage) ListWithContext(ctx context.Context, path string, pairs ...Pair) (oi *ObjectIterator, err error) + func (s *Storage) Metadata(pairs ...Pair) (meta *StorageMeta) + func (s *Storage) Reach(path string, pairs ...Pair) (url string, err error) + func (s *Storage) ReachWithContext(ctx context.Context, path string, pairs ...Pair) (url string, err error) + func (s *Storage) Read(path string, w io.Writer, pairs ...Pair) (n int64, err error) + func (s *Storage) ReadWithContext(ctx context.Context, path string, w io.Writer, pairs ...Pair) (n int64, err error) + func (s *Storage) Stat(path string, pairs ...Pair) (o *Object, err error) + func (s *Storage) StatWithContext(ctx context.Context, path string, pairs ...Pair) (o *Object, err error) + func (s *Storage) String() string + func (s *Storage) Write(path string, r io.Reader, size int64, pairs ...Pair) (n int64, err error) + func (s *Storage) WriteWithContext(ctx context.Context, path string, r io.Reader, size int64, pairs ...Pair) (n int64, err error) + type StorageFeatures struct + VirtualDir bool + type StorageSystemMetadata struct + StorageClass string + func GetStorageSystemMetadata(s *StorageMeta) StorageSystemMetadata