Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BucketsClient ¶
type BucketsClient struct { ListBucketsCall struct { CallCount int Returns struct { Output *gcpstorage.Buckets Error error } } DeleteBucketCall struct { CallCount int Receives struct { Bucket string } Returns struct { Error error } } ListObjectsCall struct { CallCount int Receives struct { Bucket string } Returns struct { Objects *gcpstorage.Objects Error error } } DeleteObjectCall struct { CallCount int Receives struct { Bucket string Object string Generation int64 } Returns struct { Error error } } }
func (*BucketsClient) DeleteBucket ¶
func (u *BucketsClient) DeleteBucket(bucket string) error
func (*BucketsClient) DeleteObject ¶ added in v0.32.0
func (b *BucketsClient) DeleteObject(bucket, object string, generation int64) error
func (*BucketsClient) ListBuckets ¶
func (u *BucketsClient) ListBuckets() (*gcpstorage.Buckets, error)
func (*BucketsClient) ListObjects ¶ added in v0.32.0
func (b *BucketsClient) ListObjects(bucket string) (*gcpstorage.Objects, error)
Click to show internal directories.
Click to hide internal directories.