Documentation
¶
Overview ¶
Package cos provided support for Tencent Cloud's Cloud Object Storage (https://intl.cloud.tencent.com/product/cos)
Code generated by go generate via internal/cmd/service; DO NOT EDIT.
Index ¶
- Constants
- func New(pairs ...*types.Pair) (_ storage.Servicer, _ storage.Storager, err error)
- func NewServicer(pairs ...*types.Pair) (storage.Servicer, error)
- func NewStorager(pairs ...*types.Pair) (storage.Storager, error)
- type Service
- func (s *Service) Create(name string, pairs ...*types.Pair) (st storage.Storager, err error)
- func (s *Service) CreateWithContext(ctx context.Context, name string, pairs ...*types.Pair) (st storage.Storager, err error)
- func (s *Service) Delete(name string, pairs ...*types.Pair) (err error)
- func (s *Service) DeleteWithContext(ctx context.Context, name string, pairs ...*types.Pair) (err error)
- func (s *Service) Get(name string, pairs ...*types.Pair) (st storage.Storager, err error)
- func (s *Service) GetWithContext(ctx context.Context, name string, pairs ...*types.Pair) (st storage.Storager, err error)
- func (s *Service) List(pairs ...*types.Pair) (err error)
- func (s *Service) ListWithContext(ctx context.Context, pairs ...*types.Pair) (err error)
- func (s *Service) String() string
- type Storage
- func (s *Storage) Delete(path string, pairs ...*types.Pair) (err error)
- func (s *Storage) DeleteWithContext(ctx context.Context, path string, pairs ...*types.Pair) (err error)
- func (s *Storage) ListDir(path string, pairs ...*types.Pair) (err error)
- func (s *Storage) ListDirWithContext(ctx context.Context, path string, pairs ...*types.Pair) (err error)
- func (s *Storage) ListPrefix(prefix string, pairs ...*types.Pair) (err error)
- func (s *Storage) ListPrefixWithContext(ctx context.Context, prefix string, pairs ...*types.Pair) (err error)
- func (s *Storage) Metadata(pairs ...*types.Pair) (m metadata.StorageMeta, err error)
- func (s *Storage) MetadataWithContext(ctx context.Context, pairs ...*types.Pair) (m metadata.StorageMeta, err error)
- func (s *Storage) Read(path string, pairs ...*types.Pair) (r io.ReadCloser, err error)
- func (s *Storage) ReadWithContext(ctx context.Context, path string, pairs ...*types.Pair) (r io.ReadCloser, err error)
- func (s *Storage) Stat(path string, pairs ...*types.Pair) (o *types.Object, err error)
- func (s *Storage) StatWithContext(ctx context.Context, path string, pairs ...*types.Pair) (o *types.Object, err error)
- func (s *Storage) String() string
- func (s *Storage) Write(path string, r io.Reader, pairs ...*types.Pair) (err error)
- func (s *Storage) WriteWithContext(ctx context.Context, path string, r io.Reader, pairs ...*types.Pair) (err error)
Constants ¶
const Type = "cos"
Type is the type for cos
Variables ¶
This section is empty.
Functions ¶
func NewServicer ¶ added in v1.0.0
NewServicer will create Servicer only.
Types ¶
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service is the Tencent oss *Service config.
func (*Service) CreateWithContext ¶
func (s *Service) CreateWithContext(ctx context.Context, name string, pairs ...*types.Pair) (st storage.Storager, err error)
CreateWithContext adds context support for Create.
func (*Service) DeleteWithContext ¶
func (s *Service) DeleteWithContext(ctx context.Context, name string, pairs ...*types.Pair) (err error)
DeleteWithContext adds context support for Delete.
func (*Service) GetWithContext ¶
func (s *Service) GetWithContext(ctx context.Context, name string, pairs ...*types.Pair) (st storage.Storager, err error)
GetWithContext adds context support for Get.
func (*Service) ListWithContext ¶
ListWithContext adds context support for List.
type Storage ¶
type Storage struct {
// contains filtered or unexported fields
}
Storage is the cos object storage service.
func (*Storage) DeleteWithContext ¶
func (s *Storage) DeleteWithContext(ctx context.Context, path string, pairs ...*types.Pair) (err error)
DeleteWithContext adds context support for Delete.
func (*Storage) ListDirWithContext ¶ added in v1.0.0
func (s *Storage) ListDirWithContext(ctx context.Context, path string, pairs ...*types.Pair) (err error)
ListDirWithContext adds context support for ListDir.
func (*Storage) ListPrefix ¶ added in v1.0.0
ListPrefix implements Storager.ListPrefix
func (*Storage) ListPrefixWithContext ¶ added in v1.0.0
func (s *Storage) ListPrefixWithContext(ctx context.Context, prefix string, pairs ...*types.Pair) (err error)
ListPrefixWithContext adds context support for ListPrefix.
func (*Storage) MetadataWithContext ¶
func (s *Storage) MetadataWithContext(ctx context.Context, pairs ...*types.Pair) (m metadata.StorageMeta, err error)
MetadataWithContext adds context support for Metadata.
func (*Storage) ReadWithContext ¶
func (s *Storage) ReadWithContext(ctx context.Context, path string, pairs ...*types.Pair) (r io.ReadCloser, err error)
ReadWithContext adds context support for Read.
func (*Storage) StatWithContext ¶
func (s *Storage) StatWithContext(ctx context.Context, path string, pairs ...*types.Pair) (o *types.Object, err error)
StatWithContext adds context support for Stat.