Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MinioClient ¶
type MinioClient interface { FPutObjectWithContext(ctx context.Context, bucketName, objectName, filePath string, opts minio.PutObjectOptions) (n int64, err error) ListObjects(bucketName, objectPrefix string, recursive bool, doneCh <-chan struct{}) <-chan minio.ObjectInfo MakeBucket(bucketName string, location string) error BucketExists(bucketName string) (bool, error) RemoveBucket(bucketName string) error SetBucketPolicy(bucketName, policy string) error GetBucketPolicy(bucketName string) (string, error) RemoveObjectsWithContext(ctx context.Context, bucketName string, objectsCh <-chan string) <-chan minio.RemoveObjectError }
type Store ¶
type Store interface { CreateBucket(namespace, crName, region string) (string, error) BucketExists(name string) (bool, error) DeleteBucket(ctx context.Context, name string) error SetBucketPolicy(name string, policy v1beta1.BucketPolicy) error CompareBucketPolicy(name string, expected v1beta1.BucketPolicy) (bool, error) ContainsAllObjects(ctx context.Context, bucketName, assetName string, files []string) (bool, error) PutObjects(ctx context.Context, bucketName, assetName, sourceBasePath string, files []string) error DeleteObjects(ctx context.Context, bucketName, prefix string) error ListObjects(ctx context.Context, bucketName, prefix string) ([]string, error) }
func New ¶
func New(client MinioClient, uploadWorkerCount int) Store
Click to show internal directories.
Click to hide internal directories.