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 cmd/definitions; DO NOT EDIT.
Index ¶
- Constants
- Variables
- func New(pairs ...typ.Pair) (_ typ.Servicer, _ typ.Storager, err error)
- func NewServicer(pairs ...typ.Pair) (typ.Servicer, error)
- func NewStorager(pairs ...typ.Pair) (typ.Storager, error)
- func WithDefaultServicePairs(v DefaultServicePairs) Pair
- func WithDefaultStoragePairs(v DefaultStoragePairs) Pair
- func WithEnableVirtualDir() Pair
- func WithServerSideEncryption(v string) Pair
- func WithServerSideEncryptionContext(v string) Pair
- func WithServerSideEncryptionCosKmsKeyID(v string) Pair
- func WithServerSideEncryptionCustomerAlgorithm(v string) Pair
- func WithServerSideEncryptionCustomerKey(v []byte) Pair
- func WithServiceFeatures(v ServiceFeatures) Pair
- func WithStorageClass(v string) Pair
- func WithStorageFeatures(v StorageFeatures) Pair
- type DefaultServicePairs
- type DefaultStoragePairs
- type ObjectSystemMetadata
- type Service
- 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
- type Storage
- func (s *Storage) CompleteMultipart(o *Object, parts []*Part, pairs ...Pair) (err error)
- func (s *Storage) CompleteMultipartWithContext(ctx context.Context, o *Object, parts []*Part, pairs ...Pair) (err error)
- func (s *Storage) Create(path string, pairs ...Pair) (o *Object)
- func (s *Storage) CreateDir(path string, pairs ...Pair) (o *Object, err error)
- func (s *Storage) CreateDirWithContext(ctx context.Context, path string, pairs ...Pair) (o *Object, err error)
- func (s *Storage) CreateMultipart(path string, pairs ...Pair) (o *Object, err error)
- func (s *Storage) CreateMultipartWithContext(ctx context.Context, path string, pairs ...Pair) (o *Object, err error)
- 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) ListMultipart(o *Object, pairs ...Pair) (pi *PartIterator, err error)
- func (s *Storage) ListMultipartWithContext(ctx context.Context, o *Object, pairs ...Pair) (pi *PartIterator, 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) 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) WriteMultipart(o *Object, r io.Reader, size int64, index int, pairs ...Pair) (n int64, part *Part, err error)
- func (s *Storage) WriteMultipartWithContext(ctx context.Context, o *Object, r io.Reader, size int64, index int, ...) (n int64, part *Part, err error)
- func (s *Storage) WriteWithContext(ctx context.Context, path string, r io.Reader, size int64, pairs ...Pair) (n int64, err error)
- type StorageFeatures
- type StorageSystemMetadata
Constants ¶
const ( StorageClassStandard = "STANDARD" StorageClassStandardIA = "STANDARD_IA" StorageClassArchive = "ARCHIVE" )
All available storage classes are listed here.
const ( ServerSideEncryptionAes256 = "AES256" ServerSideEncryptionCosKms = "cos/kms" )
All available server side algorithm are listed here.
const Type = "cos"
Type is the type for cos
Variables ¶
var ( // ErrServerSideEncryptionCustomerKeyInvalid will be returned while server-side encryption customer key is invalid. ErrServerSideEncryptionCustomerKeyInvalid = services.NewErrorCode("invalid server-side encryption customer key") )
Functions ¶
func NewServicer ¶
NewServicer will create Servicer only.
func NewStorager ¶
NewStorager will create Storager only.
func WithDefaultServicePairs ¶
func WithDefaultServicePairs(v DefaultServicePairs) Pair
WithDefaultServicePairs will apply default_service_pairs value to Options.
func WithDefaultStoragePairs ¶
func WithDefaultStoragePairs(v DefaultStoragePairs) Pair
WithDefaultStoragePairs will apply default_storage_pairs value to Options.
func WithEnableVirtualDir ¶
func WithEnableVirtualDir() Pair
WithEnableVirtualDir will apply enable_virtual_dir value to Options.
virtual_dir feature is designed for a service that doesn't have native dir support but wants to provide simulated operations.
- If this feature is disabled (the default behavior), the service will behave like it doesn't have any dir support. - If this feature is enabled, the service will support simulated dir behavior in create_dir, create, list, delete, and so on.
This feature was introduced in GSP-109.
func WithServerSideEncryption ¶
func WithServerSideEncryption(v string) Pair
WithServerSideEncryption will apply server_side_encryption value to Options.
the server-side encryption algorithm used when storing this object. It can be `AES-256` for SSE-COS, and `cos/kms` for SSE-KMS.
func WithServerSideEncryptionContext ¶
func WithServerSideEncryptionContext(v string) Pair
WithServerSideEncryptionContext will apply server_side_encryption_context value to Options.
specifies the COS KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs.
func WithServerSideEncryptionCosKmsKeyID ¶
func WithServerSideEncryptionCosKmsKeyID(v string) Pair
WithServerSideEncryptionCosKmsKeyID will apply server_side_encryption_cos_kms_key_id value to Options.
specifies the COS KMS key ID to use for object encryption.
func WithServerSideEncryptionCustomerAlgorithm ¶
func WithServerSideEncryptionCustomerAlgorithm(v string) Pair
WithServerSideEncryptionCustomerAlgorithm will apply server_side_encryption_customer_algorithm value to Options.
specifies the algorithm to use to when encrypting the object. Now only `AES256` is supported.
func WithServerSideEncryptionCustomerKey ¶
func WithServerSideEncryptionCustomerKey(v []byte) Pair
WithServerSideEncryptionCustomerKey will apply server_side_encryption_customer_key value to Options.
specifies the customer-provided encryption key to encrypt/decrypt the source object. It must be a 32-byte AES-256 key.
func WithServiceFeatures ¶
func WithServiceFeatures(v ServiceFeatures) Pair
WithServiceFeatures will apply service_features value to Options.
func WithStorageClass ¶
func WithStorageClass(v string) Pair
WithStorageClass will apply storage_class value to Options.
func WithStorageFeatures ¶
func WithStorageFeatures(v StorageFeatures) Pair
WithStorageFeatures will apply storage_features value to Options.
Types ¶
type DefaultServicePairs ¶
type DefaultServicePairs struct { Create []Pair Delete []Pair Get []Pair List []Pair }
DefaultServicePairs is default pairs for specific action
type DefaultStoragePairs ¶
type DefaultStoragePairs struct { CompleteMultipart []Pair Create []Pair CreateDir []Pair CreateMultipart []Pair Delete []Pair List []Pair ListMultipart []Pair Metadata []Pair Read []Pair Stat []Pair Write []Pair WriteMultipart []Pair }
DefaultStoragePairs is default pairs for specific action
type ObjectSystemMetadata ¶
type ObjectSystemMetadata struct { ServerSideEncryption string ServerSideEncryptionCosKmsKeyID string ServerSideEncryptionCustomerAlgorithm string ServerSideEncryptionCustomerKeyMd5 string StorageClass string }
ObjectSystemMetadata stores system metadata for object.
func GetObjectSystemMetadata ¶
func GetObjectSystemMetadata(o *Object) ObjectSystemMetadata
GetObjectSystemMetadata will get ObjectSystemMetadata from Object.
- This function should not be called by service implementer. - The returning ObjectServiceMetadata is read only and should not be modified.
type Service ¶
type Service struct { typ.UnimplementedServicer // contains filtered or unexported fields }
Service is the Tencent oss *Service config.
func (*Service) CreateWithContext ¶
func (*Service) DeleteWithContext ¶
func (*Service) GetWithContext ¶
func (*Service) ListWithContext ¶
type ServiceFeatures ¶
type ServiceFeatures struct { }
type Storage ¶
type Storage struct { typ.UnimplementedStorager typ.UnimplementedDirer typ.UnimplementedMultiparter // contains filtered or unexported fields }
Storage is the cos object storage service.
func (*Storage) CompleteMultipart ¶
func (*Storage) CompleteMultipartWithContext ¶
func (*Storage) CreateDirWithContext ¶
func (*Storage) CreateMultipart ¶
func (*Storage) CreateMultipartWithContext ¶
func (*Storage) DeleteWithContext ¶
func (*Storage) ListMultipart ¶
func (*Storage) ListMultipartWithContext ¶
func (*Storage) ListWithContext ¶
func (*Storage) ReadWithContext ¶
func (*Storage) StatWithContext ¶
func (*Storage) WriteMultipart ¶
func (*Storage) WriteMultipartWithContext ¶
type StorageFeatures ¶
type StorageFeatures struct { // provide simulated operations. // // - If this feature is disabled (the default behavior), the service will behave like it doesn't have // any dir support. // - If this feature is enabled, the service will support simulated dir behavior in create_dir, create, // list, delete, and so on. // // This feature was introduced in GSP-109. VirtualDir bool }
type StorageSystemMetadata ¶
type StorageSystemMetadata struct { ServerSideEncryption string ServerSideEncryptionCosKmsKeyID string ServerSideEncryptionCustomerAlgorithm string ServerSideEncryptionCustomerKeyMd5 string StorageClass string }
StorageSystemMetadata stores system metadata for object.
func GetStorageSystemMetadata ¶
func GetStorageSystemMetadata(s *StorageMeta) StorageSystemMetadata
GetStorageSystemMetadata will get StorageSystemMetadata from Storage.
- This function should not be called by service implementer. - The returning StorageServiceMetadata is read only and should not be modified.