Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BucketsClient ¶
type BucketsClient struct { DeleteBucketCall struct { sync.Mutex CallCount int Receives struct { Bucket string } Returns struct { Error error } Stub func(string) error } DeleteObjectCall struct { sync.Mutex CallCount int Receives struct { Bucket string Object string Generation int64 } Returns struct { Error error } Stub func(string, string, int64) error } ListBucketsCall struct { sync.Mutex CallCount int Returns struct { Buckets *gcpstorage.Buckets Error error } Stub func() (*gcpstorage.Buckets, error) } ListObjectsCall struct { sync.Mutex CallCount int Receives struct { Bucket string } Returns struct { Objects *gcpstorage.Objects Error error } Stub func(string) (*gcpstorage.Objects, error) } }
func (*BucketsClient) DeleteBucket ¶
func (f *BucketsClient) DeleteBucket(param1 string) error
func (*BucketsClient) DeleteObject ¶ added in v0.32.0
func (f *BucketsClient) DeleteObject(param1 string, param2 string, param3 int64) error
func (*BucketsClient) ListBuckets ¶
func (f *BucketsClient) ListBuckets() (*gcpstorage.Buckets, error)
func (*BucketsClient) ListObjects ¶ added in v0.32.0
func (f *BucketsClient) ListObjects(param1 string) (*gcpstorage.Objects, error)
type Logger ¶
type Logger struct { DebuglnCall struct { sync.Mutex CallCount int Receives struct { Message string } Stub func(string) } PrintfCall struct { sync.Mutex CallCount int Receives struct { Message string A []interface { } } Stub func(string, ...interface { }) } PromptWithDetailsCall struct { sync.Mutex CallCount int Receives struct { ResourceType string ResourceName string } Returns struct { Proceed bool } Stub func(string, string) bool } }
Click to show internal directories.
Click to hide internal directories.