Documentation ¶
Overview ¶
Package oss provided support for Aliyun Object Storage Service (https://cn.aliyun.com/product/oss)
Code generated by go generate via internal/cmd/service; DO NOT EDIT.
Index ¶
- Constants
- func New(pairs ...typ.Pair) (typ.Servicer, typ.Storager, 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 WithServerSideDataEncryption(v string) Pair
- func WithServerSideEncryption(v string) Pair
- func WithServerSideEncryptionKeyID(v string) Pair
- func WithStorageClass(v string) Pair
- type DefaultServicePairs
- type DefaultStoragePairs
- type ObjectMetadata
- 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 Storage
- 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, err error)
- func (s *Storage) MetadataWithContext(ctx context.Context, pairs ...Pair) (meta *StorageMeta, 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)
Constants ¶
const ( // ref: https://www.alibabacloud.com/help/doc-detail/51374.htm StorageClassStandard = "STANDARD" StorageClassIA = "IA" StorageClassArchive = "Archive" )
All available storage classes are listed here.
const ( ServerSideEncryptionAES256 = "AES256" ServerSideEncryptionKMS = "KMS" ServerSideEncryptionSM4 = "SM4" ServerSideDataEncryptionSM4 = "SM4" )
All available encryption algorithms are listed here.
const Type = "oss"
Type is the type for oss
Variables ¶
This section is empty.
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 DefaultServicePairs set default pairs for service actions
func WithDefaultStoragePairs ¶
func WithDefaultStoragePairs(v DefaultStoragePairs) Pair
WithDefaultStoragePairs will apply default_storage_pairs value to Options DefaultStoragePairs set default pairs for storager actions
func WithServerSideDataEncryption ¶
func WithServerSideDataEncryption(v string) Pair
WithServerSideDataEncryption will apply server_side_data_encryption value to Options ServerSideDataEncryption specifies the encryption algorithm when server_side_encryption is KMS. Can only be set to SM4. If this is not set, AES256 will be used.
For Chinese users, refer to https://help.aliyun.com/document_detail/31871.html for details.
For global users, refer to https://www.alibabacloud.com/help/doc-detail/31871.htm for details, and double-check whether SM4 can be used.
func WithServerSideEncryption ¶
func WithServerSideEncryption(v string) Pair
WithServerSideEncryption will apply server_side_encryption value to Options ServerSideEncryption specifies the encryption algorithm. Can be AES256, KMS or SM4.
For Chinese users, refer to https://help.aliyun.com/document_detail/31871.html for details.
For global users, refer to https://www.alibabacloud.com/help/doc-detail/31871.htm for details, and double-check whether SM4 can be used.
func WithServerSideEncryptionKeyID ¶
func WithServerSideEncryptionKeyID(v string) Pair
WithServerSideEncryptionKeyID will apply server_side_encryption_key_id value to Options ServerSideEncryptionKeyID is the KMS-managed user master key. Only valid when server_side_encryption is KMS.
func WithStorageClass ¶
func WithStorageClass(v string) Pair
WithStorageClass will apply storage_class value to Options StorageClass
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 { Create []Pair Delete []Pair List []Pair Metadata []Pair Read []Pair Stat []Pair Write []Pair }
DefaultStoragePairs is default pairs for specific action
type ObjectMetadata ¶
type ObjectMetadata struct { // ServerSideEncryption ServerSideEncryption string // ServerSideEncryptionKeyID ServerSideEncryptionKeyID string // StorageClass StorageClass string }
ObjectMetadata stores service metadata for object.
func GetObjectMetadata ¶
func GetObjectMetadata(o *Object) ObjectMetadata
GetObjectMetadata will get ObjectMetadata from Object.
- This function should not be called by service implementer. - The returning ObjectMetadata is read only and should not be modified.
type Service ¶
type Service struct { typ.UnimplementedServicer // contains filtered or unexported fields }
Service is the aliyun oss *Service config.
func (*Service) Create ¶
Create will create a new storager instance.
This function will create a context by default.
func (*Service) CreateWithContext ¶
func (s *Service) CreateWithContext(ctx context.Context, name string, pairs ...Pair) (store Storager, err error)
CreateWithContext will create a new storager instance.
func (*Service) Delete ¶
Delete will delete a storager instance.
This function will create a context by default.
func (*Service) DeleteWithContext ¶
DeleteWithContext will delete a storager instance.
func (*Service) Get ¶
Get will get a valid storager instance for service.
This function will create a context by default.
func (*Service) GetWithContext ¶
func (s *Service) GetWithContext(ctx context.Context, name string, pairs ...Pair) (store Storager, err error)
GetWithContext will get a valid storager instance for service.
func (*Service) List ¶
List will list all storager instances under this service.
This function will create a context by default.
type Storage ¶
type Storage struct { typ.UnimplementedStorager // contains filtered or unexported fields }
Storage is the aliyun object storage service.
func (*Storage) Create ¶
Create will create a new object without any api call.
This function will create a context by default.
func (*Storage) Delete ¶
Delete will delete an Object from service.
This function will create a context by default.
func (*Storage) DeleteWithContext ¶
DeleteWithContext will delete an Object from service.
func (*Storage) List ¶
List will return list a specific path.
This function will create a context by default.
func (*Storage) ListWithContext ¶
func (s *Storage) ListWithContext(ctx context.Context, path string, pairs ...Pair) (oi *ObjectIterator, err error)
ListWithContext will return list a specific path.
func (*Storage) Metadata ¶
Metadata will return current storager metadata.
This function will create a context by default.
func (*Storage) MetadataWithContext ¶
func (s *Storage) MetadataWithContext(ctx context.Context, pairs ...Pair) (meta *StorageMeta, err error)
MetadataWithContext will return current storager metadata.
func (*Storage) Read ¶
Read will read the file's data.
This function will create a context by default.
func (*Storage) ReadWithContext ¶
func (s *Storage) ReadWithContext(ctx context.Context, path string, w io.Writer, pairs ...Pair) (n int64, err error)
ReadWithContext will read the file's data.
func (*Storage) Stat ¶
Stat will stat a path to get info of an object.
This function will create a context by default.
func (*Storage) StatWithContext ¶
func (s *Storage) StatWithContext(ctx context.Context, path string, pairs ...Pair) (o *Object, err error)
StatWithContext will stat a path to get info of an object.