Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface { ClientBucket ClientImplicitBucket }
Client is storage client abstraction
type ClientBucket ¶ added in v1.9.3
type ClientBucket interface { CreateBucket(ctx context.Context, bucket string) error DeleteBucket(ctx context.Context, bucket string, force bool) error ListBuckets(ctx context.Context) ([]string, error) DownloadFileFromBucket(ctx context.Context, bucket, bucketFolder, file string) (*minio.Object, error) UploadFileToBucket(ctx context.Context, bucket, bucketFolder, filePath string, reader io.Reader, objectSize int64) error GetValidBucketName(parentType string, parentName string) string DeleteFileFromBucket(ctx context.Context, bucket, bucketFolder, file string) error }
ClientBucket is storage client abstraction where you have to specify bucket name
type ClientImplicitBucket ¶ added in v1.9.3
type ClientImplicitBucket interface { ListFiles(ctx context.Context, bucketFolder string) ([]testkube.Artifact, error) SaveFile(ctx context.Context, bucketFolder, filePath string) error DownloadFile(ctx context.Context, bucketFolder, file string) (*minio.Object, error) UploadFile(ctx context.Context, bucketFolder string, filePath string, reader io.Reader, objectSize int64) error PlaceFiles(ctx context.Context, bucketFolders []string, prefix string) error DeleteFile(ctx context.Context, bucketFolder, file string) error }
ClientImplicitBucket is storage client abstraction where bucket name is provided from config
Click to show internal directories.
Click to hide internal directories.