Documentation
¶
Overview ¶
Code generated by counterfeiter. DO NOT EDIT.
Index ¶
- type FakeStorageClient
- func (fake *FakeStorageClient) Copy(arg1 string, arg2 string) error
- func (fake *FakeStorageClient) CopyArgsForCall(i int) (string, string)
- func (fake *FakeStorageClient) CopyCallCount() int
- func (fake *FakeStorageClient) CopyCalls(stub func(string, string) error)
- func (fake *FakeStorageClient) CopyReturns(result1 error)
- func (fake *FakeStorageClient) CopyReturnsOnCall(i int, result1 error)
- func (fake *FakeStorageClient) Delete(arg1 string) error
- func (fake *FakeStorageClient) DeleteArgsForCall(i int) string
- func (fake *FakeStorageClient) DeleteCallCount() int
- func (fake *FakeStorageClient) DeleteCalls(stub func(string) error)
- func (fake *FakeStorageClient) DeleteRecursive(arg1 string) error
- func (fake *FakeStorageClient) DeleteRecursiveArgsForCall(i int) string
- func (fake *FakeStorageClient) DeleteRecursiveCallCount() int
- func (fake *FakeStorageClient) DeleteRecursiveCalls(stub func(string) error)
- func (fake *FakeStorageClient) DeleteRecursiveReturns(result1 error)
- func (fake *FakeStorageClient) DeleteRecursiveReturnsOnCall(i int, result1 error)
- func (fake *FakeStorageClient) DeleteReturns(result1 error)
- func (fake *FakeStorageClient) DeleteReturnsOnCall(i int, result1 error)
- func (fake *FakeStorageClient) Download(arg1 string, arg2 string) error
- func (fake *FakeStorageClient) DownloadArgsForCall(i int) (string, string)
- func (fake *FakeStorageClient) DownloadCallCount() int
- func (fake *FakeStorageClient) DownloadCalls(stub func(string, string) error)
- func (fake *FakeStorageClient) DownloadReturns(result1 error)
- func (fake *FakeStorageClient) DownloadReturnsOnCall(i int, result1 error)
- func (fake *FakeStorageClient) EnsureBucketExists() error
- func (fake *FakeStorageClient) EnsureBucketExistsCallCount() int
- func (fake *FakeStorageClient) EnsureBucketExistsCalls(stub func() error)
- func (fake *FakeStorageClient) EnsureBucketExistsReturns(result1 error)
- func (fake *FakeStorageClient) EnsureBucketExistsReturnsOnCall(i int, result1 error)
- func (fake *FakeStorageClient) Exists(arg1 string) (bool, error)
- func (fake *FakeStorageClient) ExistsArgsForCall(i int) string
- func (fake *FakeStorageClient) ExistsCallCount() int
- func (fake *FakeStorageClient) ExistsCalls(stub func(string) (bool, error))
- func (fake *FakeStorageClient) ExistsReturns(result1 bool, result2 error)
- func (fake *FakeStorageClient) ExistsReturnsOnCall(i int, result1 bool, result2 error)
- func (fake *FakeStorageClient) Invocations() map[string][][]interface{}
- func (fake *FakeStorageClient) List(arg1 string) ([]string, error)
- func (fake *FakeStorageClient) ListArgsForCall(i int) string
- func (fake *FakeStorageClient) ListCallCount() int
- func (fake *FakeStorageClient) ListCalls(stub func(string) ([]string, error))
- func (fake *FakeStorageClient) ListReturns(result1 []string, result2 error)
- func (fake *FakeStorageClient) ListReturnsOnCall(i int, result1 []string, result2 error)
- func (fake *FakeStorageClient) Properties(arg1 string) error
- func (fake *FakeStorageClient) PropertiesArgsForCall(i int) string
- func (fake *FakeStorageClient) PropertiesCallCount() int
- func (fake *FakeStorageClient) PropertiesCalls(stub func(string) error)
- func (fake *FakeStorageClient) PropertiesReturns(result1 error)
- func (fake *FakeStorageClient) PropertiesReturnsOnCall(i int, result1 error)
- func (fake *FakeStorageClient) SignedUrlGet(arg1 string, arg2 int64) (string, error)
- func (fake *FakeStorageClient) SignedUrlGetArgsForCall(i int) (string, int64)
- func (fake *FakeStorageClient) SignedUrlGetCallCount() int
- func (fake *FakeStorageClient) SignedUrlGetCalls(stub func(string, int64) (string, error))
- func (fake *FakeStorageClient) SignedUrlGetReturns(result1 string, result2 error)
- func (fake *FakeStorageClient) SignedUrlGetReturnsOnCall(i int, result1 string, result2 error)
- func (fake *FakeStorageClient) SignedUrlPut(arg1 string, arg2 int64) (string, error)
- func (fake *FakeStorageClient) SignedUrlPutArgsForCall(i int) (string, int64)
- func (fake *FakeStorageClient) SignedUrlPutCallCount() int
- func (fake *FakeStorageClient) SignedUrlPutCalls(stub func(string, int64) (string, error))
- func (fake *FakeStorageClient) SignedUrlPutReturns(result1 string, result2 error)
- func (fake *FakeStorageClient) SignedUrlPutReturnsOnCall(i int, result1 string, result2 error)
- func (fake *FakeStorageClient) Upload(arg1 string, arg2 string, arg3 string) error
- func (fake *FakeStorageClient) UploadArgsForCall(i int) (string, string, string)
- func (fake *FakeStorageClient) UploadCallCount() int
- func (fake *FakeStorageClient) UploadCalls(stub func(string, string, string) error)
- func (fake *FakeStorageClient) UploadReturns(result1 error)
- func (fake *FakeStorageClient) UploadReturnsOnCall(i int, result1 error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FakeStorageClient ¶
type FakeStorageClient struct {
CopyStub func(string, string) error
DeleteStub func(string) error
DeleteRecursiveStub func(string) error
DownloadStub func(string, string) error
EnsureBucketExistsStub func() error
ExistsStub func(string) (bool, error)
ListStub func(string) ([]string, error)
PropertiesStub func(string) error
SignedUrlGetStub func(string, int64) (string, error)
SignedUrlPutStub func(string, int64) (string, error)
UploadStub func(string, string, string) error
// contains filtered or unexported fields
}
func (*FakeStorageClient) Copy ¶
func (fake *FakeStorageClient) Copy(arg1 string, arg2 string) error
func (*FakeStorageClient) CopyArgsForCall ¶
func (fake *FakeStorageClient) CopyArgsForCall(i int) (string, string)
func (*FakeStorageClient) CopyCallCount ¶
func (fake *FakeStorageClient) CopyCallCount() int
func (*FakeStorageClient) CopyCalls ¶
func (fake *FakeStorageClient) CopyCalls(stub func(string, string) error)
func (*FakeStorageClient) CopyReturns ¶
func (fake *FakeStorageClient) CopyReturns(result1 error)
func (*FakeStorageClient) CopyReturnsOnCall ¶
func (fake *FakeStorageClient) CopyReturnsOnCall(i int, result1 error)
func (*FakeStorageClient) Delete ¶
func (fake *FakeStorageClient) Delete(arg1 string) error
func (*FakeStorageClient) DeleteArgsForCall ¶
func (fake *FakeStorageClient) DeleteArgsForCall(i int) string
func (*FakeStorageClient) DeleteCallCount ¶
func (fake *FakeStorageClient) DeleteCallCount() int
func (*FakeStorageClient) DeleteCalls ¶
func (fake *FakeStorageClient) DeleteCalls(stub func(string) error)
func (*FakeStorageClient) DeleteRecursive ¶
func (fake *FakeStorageClient) DeleteRecursive(arg1 string) error
func (*FakeStorageClient) DeleteRecursiveArgsForCall ¶
func (fake *FakeStorageClient) DeleteRecursiveArgsForCall(i int) string
func (*FakeStorageClient) DeleteRecursiveCallCount ¶
func (fake *FakeStorageClient) DeleteRecursiveCallCount() int
func (*FakeStorageClient) DeleteRecursiveCalls ¶
func (fake *FakeStorageClient) DeleteRecursiveCalls(stub func(string) error)
func (*FakeStorageClient) DeleteRecursiveReturns ¶
func (fake *FakeStorageClient) DeleteRecursiveReturns(result1 error)
func (*FakeStorageClient) DeleteRecursiveReturnsOnCall ¶
func (fake *FakeStorageClient) DeleteRecursiveReturnsOnCall(i int, result1 error)
func (*FakeStorageClient) DeleteReturns ¶
func (fake *FakeStorageClient) DeleteReturns(result1 error)
func (*FakeStorageClient) DeleteReturnsOnCall ¶
func (fake *FakeStorageClient) DeleteReturnsOnCall(i int, result1 error)
func (*FakeStorageClient) Download ¶
func (fake *FakeStorageClient) Download(arg1 string, arg2 string) error
func (*FakeStorageClient) DownloadArgsForCall ¶
func (fake *FakeStorageClient) DownloadArgsForCall(i int) (string, string)
func (*FakeStorageClient) DownloadCallCount ¶
func (fake *FakeStorageClient) DownloadCallCount() int
func (*FakeStorageClient) DownloadCalls ¶
func (fake *FakeStorageClient) DownloadCalls(stub func(string, string) error)
func (*FakeStorageClient) DownloadReturns ¶
func (fake *FakeStorageClient) DownloadReturns(result1 error)
func (*FakeStorageClient) DownloadReturnsOnCall ¶
func (fake *FakeStorageClient) DownloadReturnsOnCall(i int, result1 error)
func (*FakeStorageClient) EnsureBucketExists ¶
func (fake *FakeStorageClient) EnsureBucketExists() error
func (*FakeStorageClient) EnsureBucketExistsCallCount ¶
func (fake *FakeStorageClient) EnsureBucketExistsCallCount() int
func (*FakeStorageClient) EnsureBucketExistsCalls ¶
func (fake *FakeStorageClient) EnsureBucketExistsCalls(stub func() error)
func (*FakeStorageClient) EnsureBucketExistsReturns ¶
func (fake *FakeStorageClient) EnsureBucketExistsReturns(result1 error)
func (*FakeStorageClient) EnsureBucketExistsReturnsOnCall ¶
func (fake *FakeStorageClient) EnsureBucketExistsReturnsOnCall(i int, result1 error)
func (*FakeStorageClient) ExistsArgsForCall ¶
func (fake *FakeStorageClient) ExistsArgsForCall(i int) string
func (*FakeStorageClient) ExistsCallCount ¶
func (fake *FakeStorageClient) ExistsCallCount() int
func (*FakeStorageClient) ExistsCalls ¶
func (fake *FakeStorageClient) ExistsCalls(stub func(string) (bool, error))
func (*FakeStorageClient) ExistsReturns ¶
func (fake *FakeStorageClient) ExistsReturns(result1 bool, result2 error)
func (*FakeStorageClient) ExistsReturnsOnCall ¶
func (fake *FakeStorageClient) ExistsReturnsOnCall(i int, result1 bool, result2 error)
func (*FakeStorageClient) Invocations ¶
func (fake *FakeStorageClient) Invocations() map[string][][]interface{}
func (*FakeStorageClient) ListArgsForCall ¶
func (fake *FakeStorageClient) ListArgsForCall(i int) string
func (*FakeStorageClient) ListCallCount ¶
func (fake *FakeStorageClient) ListCallCount() int
func (*FakeStorageClient) ListCalls ¶
func (fake *FakeStorageClient) ListCalls(stub func(string) ([]string, error))
func (*FakeStorageClient) ListReturns ¶
func (fake *FakeStorageClient) ListReturns(result1 []string, result2 error)
func (*FakeStorageClient) ListReturnsOnCall ¶
func (fake *FakeStorageClient) ListReturnsOnCall(i int, result1 []string, result2 error)
func (*FakeStorageClient) Properties ¶
func (fake *FakeStorageClient) Properties(arg1 string) error
func (*FakeStorageClient) PropertiesArgsForCall ¶
func (fake *FakeStorageClient) PropertiesArgsForCall(i int) string
func (*FakeStorageClient) PropertiesCallCount ¶
func (fake *FakeStorageClient) PropertiesCallCount() int
func (*FakeStorageClient) PropertiesCalls ¶
func (fake *FakeStorageClient) PropertiesCalls(stub func(string) error)
func (*FakeStorageClient) PropertiesReturns ¶
func (fake *FakeStorageClient) PropertiesReturns(result1 error)
func (*FakeStorageClient) PropertiesReturnsOnCall ¶
func (fake *FakeStorageClient) PropertiesReturnsOnCall(i int, result1 error)
func (*FakeStorageClient) SignedUrlGet ¶
func (fake *FakeStorageClient) SignedUrlGet(arg1 string, arg2 int64) (string, error)
func (*FakeStorageClient) SignedUrlGetArgsForCall ¶
func (fake *FakeStorageClient) SignedUrlGetArgsForCall(i int) (string, int64)
func (*FakeStorageClient) SignedUrlGetCallCount ¶
func (fake *FakeStorageClient) SignedUrlGetCallCount() int
func (*FakeStorageClient) SignedUrlGetCalls ¶
func (fake *FakeStorageClient) SignedUrlGetCalls(stub func(string, int64) (string, error))
func (*FakeStorageClient) SignedUrlGetReturns ¶
func (fake *FakeStorageClient) SignedUrlGetReturns(result1 string, result2 error)
func (*FakeStorageClient) SignedUrlGetReturnsOnCall ¶
func (fake *FakeStorageClient) SignedUrlGetReturnsOnCall(i int, result1 string, result2 error)
func (*FakeStorageClient) SignedUrlPut ¶
func (fake *FakeStorageClient) SignedUrlPut(arg1 string, arg2 int64) (string, error)
func (*FakeStorageClient) SignedUrlPutArgsForCall ¶
func (fake *FakeStorageClient) SignedUrlPutArgsForCall(i int) (string, int64)
func (*FakeStorageClient) SignedUrlPutCallCount ¶
func (fake *FakeStorageClient) SignedUrlPutCallCount() int
func (*FakeStorageClient) SignedUrlPutCalls ¶
func (fake *FakeStorageClient) SignedUrlPutCalls(stub func(string, int64) (string, error))
func (*FakeStorageClient) SignedUrlPutReturns ¶
func (fake *FakeStorageClient) SignedUrlPutReturns(result1 string, result2 error)
func (*FakeStorageClient) SignedUrlPutReturnsOnCall ¶
func (fake *FakeStorageClient) SignedUrlPutReturnsOnCall(i int, result1 string, result2 error)
func (*FakeStorageClient) Upload ¶
func (fake *FakeStorageClient) Upload(arg1 string, arg2 string, arg3 string) error
func (*FakeStorageClient) UploadArgsForCall ¶
func (fake *FakeStorageClient) UploadArgsForCall(i int) (string, string, string)
func (*FakeStorageClient) UploadCallCount ¶
func (fake *FakeStorageClient) UploadCallCount() int
func (*FakeStorageClient) UploadCalls ¶
func (fake *FakeStorageClient) UploadCalls(stub func(string, string, string) error)
func (*FakeStorageClient) UploadReturns ¶
func (fake *FakeStorageClient) UploadReturns(result1 error)
func (*FakeStorageClient) UploadReturnsOnCall ¶
func (fake *FakeStorageClient) UploadReturnsOnCall(i int, result1 error)
Click to show internal directories.
Click to hide internal directories.