Documentation ¶
Index ¶
- Constants
- Variables
- func ComposeAll(target string, parts []string, composeFunc ComposeFunc) (*storage.ObjectAttrs, error)
- func WithDisablePreSigned(b bool) func(a *Adapter)
- func WithDisablePreSignedUI(b bool) func(a *Adapter)
- func WithPreSignedExpiry(v time.Duration) func(a *Adapter)
- func WithServerSideEncryptionCustomerSupplied(value []byte) func(a *Adapter)
- func WithServerSideEncryptionKmsKeyID(s string) func(a *Adapter)
- type Adapter
- func (a *Adapter) AbortMultiPartUpload(ctx context.Context, obj block.ObjectPointer, uploadID string) error
- func (a *Adapter) BlockstoreMetadata(ctx context.Context) (*block.BlockstoreMetadata, error)
- func (a *Adapter) BlockstoreType() string
- func (a *Adapter) Close() error
- func (a *Adapter) CompleteMultiPartUpload(ctx context.Context, obj block.ObjectPointer, uploadID string, ...) (*block.CompleteMultiPartUploadResponse, error)
- func (a *Adapter) Copy(ctx context.Context, sourceObj, destinationObj block.ObjectPointer) error
- func (a *Adapter) CreateMultiPartUpload(ctx context.Context, obj block.ObjectPointer, _ *http.Request, ...) (*block.CreateMultiPartUploadResponse, error)
- func (a *Adapter) Exists(ctx context.Context, obj block.ObjectPointer) (bool, error)
- func (a *Adapter) Get(ctx context.Context, obj block.ObjectPointer) (io.ReadCloser, error)
- func (a *Adapter) GetPreSignedURL(ctx context.Context, obj block.ObjectPointer, mode block.PreSignMode) (string, time.Time, error)
- func (a *Adapter) GetPresignUploadPartURL(_ context.Context, _ block.ObjectPointer, _ string, _ int) (string, error)
- func (a *Adapter) GetProperties(ctx context.Context, obj block.ObjectPointer) (block.Properties, error)
- func (a *Adapter) GetRange(ctx context.Context, obj block.ObjectPointer, startPosition int64, ...) (io.ReadCloser, error)
- func (a *Adapter) GetRegion(_ context.Context, _ string) (string, error)
- func (a *Adapter) GetStorageNamespaceInfo() block.StorageNamespaceInfo
- func (a *Adapter) GetWalker(uri *url.URL) (block.Walker, error)
- func (a *Adapter) ListParts(_ context.Context, _ block.ObjectPointer, _ string, _ block.ListPartsOpts) (*block.ListPartsResponse, error)
- func (a *Adapter) Put(ctx context.Context, obj block.ObjectPointer, sizeBytes int64, ...) error
- func (a *Adapter) Remove(ctx context.Context, obj block.ObjectPointer) error
- func (a *Adapter) ResolveNamespace(storageNamespace, key string, identifierType block.IdentifierType) (block.QualifiedKey, error)
- func (a *Adapter) RuntimeStats() map[string]string
- func (a *Adapter) UploadCopyPart(ctx context.Context, sourceObj, destinationObj block.ObjectPointer, ...) (*block.UploadPartResponse, error)
- func (a *Adapter) UploadCopyPartRange(ctx context.Context, sourceObj, destinationObj block.ObjectPointer, ...) (*block.UploadPartResponse, error)
- func (a *Adapter) UploadPart(ctx context.Context, obj block.ObjectPointer, sizeBytes int64, ...) (*block.UploadPartResponse, error)
- type AdapterOption
- type ComposeFunc
- type GCSWalker
Constants ¶
View Source
const (
MaxMultipartObjects = 10000
)
View Source
const MaxPartsInCompose = 32
Variables ¶
View Source
var ( ErrMismatchPartETag = errors.New("mismatch part ETag") ErrMismatchPartName = errors.New("mismatch part name") ErrMaxMultipartObjects = errors.New("maximum multipart object reached") ErrPartListMismatch = errors.New("multipart part list mismatch") ErrMissingTargetAttrs = errors.New("missing target attributes") )
Functions ¶
func ComposeAll ¶
func ComposeAll(target string, parts []string, composeFunc ComposeFunc) (*storage.ObjectAttrs, error)
func WithDisablePreSigned ¶ added in v0.94.0
func WithDisablePreSignedUI ¶ added in v0.97.0
func WithPreSignedExpiry ¶ added in v0.92.0
func WithServerSideEncryptionCustomerSupplied ¶ added in v1.26.0
func WithServerSideEncryptionKmsKeyID ¶ added in v1.26.0
Types ¶
type Adapter ¶
type Adapter struct { ServerSideEncryptionCustomerSupplied []byte ServerSideEncryptionKmsKeyID string // contains filtered or unexported fields }
func NewAdapter ¶
func NewAdapter(client *storage.Client, opts ...AdapterOption) *Adapter
func (*Adapter) AbortMultiPartUpload ¶
func (*Adapter) BlockstoreMetadata ¶ added in v1.26.0
func (*Adapter) BlockstoreType ¶
func (*Adapter) CompleteMultiPartUpload ¶
func (a *Adapter) CompleteMultiPartUpload(ctx context.Context, obj block.ObjectPointer, uploadID string, multipartList *block.MultipartUploadCompletion) (*block.CompleteMultiPartUploadResponse, error)
func (*Adapter) CreateMultiPartUpload ¶
func (a *Adapter) CreateMultiPartUpload(ctx context.Context, obj block.ObjectPointer, _ *http.Request, _ block.CreateMultiPartUploadOpts) (*block.CreateMultiPartUploadResponse, error)
func (*Adapter) Get ¶
func (a *Adapter) Get(ctx context.Context, obj block.ObjectPointer) (io.ReadCloser, error)
func (*Adapter) GetPreSignedURL ¶ added in v0.90.0
func (*Adapter) GetPresignUploadPartURL ¶ added in v1.7.0
func (*Adapter) GetProperties ¶
func (a *Adapter) GetProperties(ctx context.Context, obj block.ObjectPointer) (block.Properties, error)
func (*Adapter) GetRange ¶
func (a *Adapter) GetRange(ctx context.Context, obj block.ObjectPointer, startPosition int64, endPosition int64) (io.ReadCloser, error)
func (*Adapter) GetStorageNamespaceInfo ¶
func (a *Adapter) GetStorageNamespaceInfo() block.StorageNamespaceInfo
func (*Adapter) ListParts ¶ added in v1.19.0
func (a *Adapter) ListParts(_ context.Context, _ block.ObjectPointer, _ string, _ block.ListPartsOpts) (*block.ListPartsResponse, error)
func (*Adapter) ResolveNamespace ¶ added in v0.97.0
func (a *Adapter) ResolveNamespace(storageNamespace, key string, identifierType block.IdentifierType) (block.QualifiedKey, error)
func (*Adapter) RuntimeStats ¶ added in v0.41.1
func (*Adapter) UploadCopyPart ¶
func (a *Adapter) UploadCopyPart(ctx context.Context, sourceObj, destinationObj block.ObjectPointer, uploadID string, partNumber int) (*block.UploadPartResponse, error)
func (*Adapter) UploadCopyPartRange ¶
func (*Adapter) UploadPart ¶
type AdapterOption ¶ added in v1.26.0
type AdapterOption func(a *Adapter)
type ComposeFunc ¶
type ComposeFunc func(target string, parts []string) (*storage.ObjectAttrs, error)
type GCSWalker ¶ added in v0.97.0
type GCSWalker struct {
// contains filtered or unexported fields
}
func NewGCSWalker ¶ added in v0.97.0
func (*GCSWalker) GetSkippedEntries ¶ added in v0.98.0
func (w *GCSWalker) GetSkippedEntries() []block.ObjectStoreEntry
Click to show internal directories.
Click to hide internal directories.