Documentation
¶
Overview ¶
Package mock_accountclient is a generated GoMock package.
Index ¶
- type MockInterface
- func (m *MockInterface) Create(ctx context.Context, resourceGroupName, accountName string, ...) (*armstorage.Account, error)
- func (m *MockInterface) Delete(ctx context.Context, resourceGroupName, accountName string) error
- func (m *MockInterface) EXPECT() *MockInterfaceMockRecorder
- func (m *MockInterface) GetProperties(ctx context.Context, resourceGroupName, accountName string, ...) (*armstorage.Account, error)
- func (m *MockInterface) List(ctx context.Context, resourceGroupName string) ([]*armstorage.Account, error)
- func (m *MockInterface) ListKeys(ctx context.Context, resourceGroupName, accountName string) ([]*armstorage.AccountKey, error)
- func (m *MockInterface) Update(ctx context.Context, resourceGroupName, accountName string, ...) (*armstorage.Account, error)
- type MockInterfaceCreateCall
- type MockInterfaceDeleteCall
- func (c *MockInterfaceDeleteCall) Do(f func(context.Context, string, string) error) *MockInterfaceDeleteCall
- func (c *MockInterfaceDeleteCall) DoAndReturn(f func(context.Context, string, string) error) *MockInterfaceDeleteCall
- func (c *MockInterfaceDeleteCall) Return(arg0 error) *MockInterfaceDeleteCall
- type MockInterfaceGetPropertiesCall
- func (c *MockInterfaceGetPropertiesCall) Do(f func(context.Context, string, string, ...) (*armstorage.Account, error)) *MockInterfaceGetPropertiesCall
- func (c *MockInterfaceGetPropertiesCall) DoAndReturn(f func(context.Context, string, string, ...) (*armstorage.Account, error)) *MockInterfaceGetPropertiesCall
- func (c *MockInterfaceGetPropertiesCall) Return(arg0 *armstorage.Account, arg1 error) *MockInterfaceGetPropertiesCall
- type MockInterfaceListCall
- func (c *MockInterfaceListCall) Do(f func(context.Context, string) ([]*armstorage.Account, error)) *MockInterfaceListCall
- func (c *MockInterfaceListCall) DoAndReturn(f func(context.Context, string) ([]*armstorage.Account, error)) *MockInterfaceListCall
- func (c *MockInterfaceListCall) Return(result []*armstorage.Account, rerr error) *MockInterfaceListCall
- type MockInterfaceListKeysCall
- func (c *MockInterfaceListKeysCall) Do(f func(context.Context, string, string) ([]*armstorage.AccountKey, error)) *MockInterfaceListKeysCall
- func (c *MockInterfaceListKeysCall) DoAndReturn(f func(context.Context, string, string) ([]*armstorage.AccountKey, error)) *MockInterfaceListKeysCall
- func (c *MockInterfaceListKeysCall) Return(arg0 []*armstorage.AccountKey, arg1 error) *MockInterfaceListKeysCall
- type MockInterfaceMockRecorder
- func (mr *MockInterfaceMockRecorder) Create(ctx, resourceGroupName, accountName, resource any) *MockInterfaceCreateCall
- func (mr *MockInterfaceMockRecorder) Delete(ctx, resourceGroupName, accountName any) *MockInterfaceDeleteCall
- func (mr *MockInterfaceMockRecorder) GetProperties(ctx, resourceGroupName, accountName, options any) *MockInterfaceGetPropertiesCall
- func (mr *MockInterfaceMockRecorder) List(ctx, resourceGroupName any) *MockInterfaceListCall
- func (mr *MockInterfaceMockRecorder) ListKeys(ctx, resourceGroupName, accountName any) *MockInterfaceListKeysCall
- func (mr *MockInterfaceMockRecorder) Update(ctx, resourceGroupName, accountName, parameters any) *MockInterfaceUpdateCall
- type MockInterfaceUpdateCall
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MockInterface ¶
type MockInterface struct {
// contains filtered or unexported fields
}
MockInterface is a mock of Interface interface.
func NewMockInterface ¶
func NewMockInterface(ctrl *gomock.Controller) *MockInterface
NewMockInterface creates a new mock instance.
func (*MockInterface) Create ¶
func (m *MockInterface) Create(ctx context.Context, resourceGroupName, accountName string, resource *armstorage.AccountCreateParameters) (*armstorage.Account, error)
Create mocks base method.
func (*MockInterface) Delete ¶
func (m *MockInterface) Delete(ctx context.Context, resourceGroupName, accountName string) error
Delete mocks base method.
func (*MockInterface) EXPECT ¶
func (m *MockInterface) EXPECT() *MockInterfaceMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockInterface) GetProperties ¶
func (m *MockInterface) GetProperties(ctx context.Context, resourceGroupName, accountName string, options *armstorage.AccountsClientGetPropertiesOptions) (*armstorage.Account, error)
GetProperties mocks base method.
func (*MockInterface) List ¶
func (m *MockInterface) List(ctx context.Context, resourceGroupName string) ([]*armstorage.Account, error)
List mocks base method.
func (*MockInterface) ListKeys ¶
func (m *MockInterface) ListKeys(ctx context.Context, resourceGroupName, accountName string) ([]*armstorage.AccountKey, error)
ListKeys mocks base method.
func (*MockInterface) Update ¶ added in v0.2.2
func (m *MockInterface) Update(ctx context.Context, resourceGroupName, accountName string, parameters *armstorage.AccountUpdateParameters) (*armstorage.Account, error)
Update mocks base method.
type MockInterfaceCreateCall ¶ added in v0.2.2
MockInterfaceCreateCall wrap *gomock.Call
func (*MockInterfaceCreateCall) Do ¶ added in v0.2.2
func (c *MockInterfaceCreateCall) Do(f func(context.Context, string, string, *armstorage.AccountCreateParameters) (*armstorage.Account, error)) *MockInterfaceCreateCall
Do rewrite *gomock.Call.Do
func (*MockInterfaceCreateCall) DoAndReturn ¶ added in v0.2.2
func (c *MockInterfaceCreateCall) DoAndReturn(f func(context.Context, string, string, *armstorage.AccountCreateParameters) (*armstorage.Account, error)) *MockInterfaceCreateCall
DoAndReturn rewrite *gomock.Call.DoAndReturn
func (*MockInterfaceCreateCall) Return ¶ added in v0.2.2
func (c *MockInterfaceCreateCall) Return(arg0 *armstorage.Account, arg1 error) *MockInterfaceCreateCall
Return rewrite *gomock.Call.Return
type MockInterfaceDeleteCall ¶ added in v0.2.2
MockInterfaceDeleteCall wrap *gomock.Call
func (*MockInterfaceDeleteCall) Do ¶ added in v0.2.2
func (c *MockInterfaceDeleteCall) Do(f func(context.Context, string, string) error) *MockInterfaceDeleteCall
Do rewrite *gomock.Call.Do
func (*MockInterfaceDeleteCall) DoAndReturn ¶ added in v0.2.2
func (c *MockInterfaceDeleteCall) DoAndReturn(f func(context.Context, string, string) error) *MockInterfaceDeleteCall
DoAndReturn rewrite *gomock.Call.DoAndReturn
func (*MockInterfaceDeleteCall) Return ¶ added in v0.2.2
func (c *MockInterfaceDeleteCall) Return(arg0 error) *MockInterfaceDeleteCall
Return rewrite *gomock.Call.Return
type MockInterfaceGetPropertiesCall ¶ added in v0.2.2
MockInterfaceGetPropertiesCall wrap *gomock.Call
func (*MockInterfaceGetPropertiesCall) Do ¶ added in v0.2.2
func (c *MockInterfaceGetPropertiesCall) Do(f func(context.Context, string, string, *armstorage.AccountsClientGetPropertiesOptions) (*armstorage.Account, error)) *MockInterfaceGetPropertiesCall
Do rewrite *gomock.Call.Do
func (*MockInterfaceGetPropertiesCall) DoAndReturn ¶ added in v0.2.2
func (c *MockInterfaceGetPropertiesCall) DoAndReturn(f func(context.Context, string, string, *armstorage.AccountsClientGetPropertiesOptions) (*armstorage.Account, error)) *MockInterfaceGetPropertiesCall
DoAndReturn rewrite *gomock.Call.DoAndReturn
func (*MockInterfaceGetPropertiesCall) Return ¶ added in v0.2.2
func (c *MockInterfaceGetPropertiesCall) Return(arg0 *armstorage.Account, arg1 error) *MockInterfaceGetPropertiesCall
Return rewrite *gomock.Call.Return
type MockInterfaceListCall ¶ added in v0.2.2
MockInterfaceListCall wrap *gomock.Call
func (*MockInterfaceListCall) Do ¶ added in v0.2.2
func (c *MockInterfaceListCall) Do(f func(context.Context, string) ([]*armstorage.Account, error)) *MockInterfaceListCall
Do rewrite *gomock.Call.Do
func (*MockInterfaceListCall) DoAndReturn ¶ added in v0.2.2
func (c *MockInterfaceListCall) DoAndReturn(f func(context.Context, string) ([]*armstorage.Account, error)) *MockInterfaceListCall
DoAndReturn rewrite *gomock.Call.DoAndReturn
func (*MockInterfaceListCall) Return ¶ added in v0.2.2
func (c *MockInterfaceListCall) Return(result []*armstorage.Account, rerr error) *MockInterfaceListCall
Return rewrite *gomock.Call.Return
type MockInterfaceListKeysCall ¶ added in v0.2.2
MockInterfaceListKeysCall wrap *gomock.Call
func (*MockInterfaceListKeysCall) Do ¶ added in v0.2.2
func (c *MockInterfaceListKeysCall) Do(f func(context.Context, string, string) ([]*armstorage.AccountKey, error)) *MockInterfaceListKeysCall
Do rewrite *gomock.Call.Do
func (*MockInterfaceListKeysCall) DoAndReturn ¶ added in v0.2.2
func (c *MockInterfaceListKeysCall) DoAndReturn(f func(context.Context, string, string) ([]*armstorage.AccountKey, error)) *MockInterfaceListKeysCall
DoAndReturn rewrite *gomock.Call.DoAndReturn
func (*MockInterfaceListKeysCall) Return ¶ added in v0.2.2
func (c *MockInterfaceListKeysCall) Return(arg0 []*armstorage.AccountKey, arg1 error) *MockInterfaceListKeysCall
Return rewrite *gomock.Call.Return
type MockInterfaceMockRecorder ¶
type MockInterfaceMockRecorder struct {
// contains filtered or unexported fields
}
MockInterfaceMockRecorder is the mock recorder for MockInterface.
func (*MockInterfaceMockRecorder) Create ¶
func (mr *MockInterfaceMockRecorder) Create(ctx, resourceGroupName, accountName, resource any) *MockInterfaceCreateCall
Create indicates an expected call of Create.
func (*MockInterfaceMockRecorder) Delete ¶
func (mr *MockInterfaceMockRecorder) Delete(ctx, resourceGroupName, accountName any) *MockInterfaceDeleteCall
Delete indicates an expected call of Delete.
func (*MockInterfaceMockRecorder) GetProperties ¶
func (mr *MockInterfaceMockRecorder) GetProperties(ctx, resourceGroupName, accountName, options any) *MockInterfaceGetPropertiesCall
GetProperties indicates an expected call of GetProperties.
func (*MockInterfaceMockRecorder) List ¶
func (mr *MockInterfaceMockRecorder) List(ctx, resourceGroupName any) *MockInterfaceListCall
List indicates an expected call of List.
func (*MockInterfaceMockRecorder) ListKeys ¶
func (mr *MockInterfaceMockRecorder) ListKeys(ctx, resourceGroupName, accountName any) *MockInterfaceListKeysCall
ListKeys indicates an expected call of ListKeys.
func (*MockInterfaceMockRecorder) Update ¶ added in v0.2.2
func (mr *MockInterfaceMockRecorder) Update(ctx, resourceGroupName, accountName, parameters any) *MockInterfaceUpdateCall
Update indicates an expected call of Update.
type MockInterfaceUpdateCall ¶ added in v0.2.2
MockInterfaceUpdateCall wrap *gomock.Call
func (*MockInterfaceUpdateCall) Do ¶ added in v0.2.2
func (c *MockInterfaceUpdateCall) Do(f func(context.Context, string, string, *armstorage.AccountUpdateParameters) (*armstorage.Account, error)) *MockInterfaceUpdateCall
Do rewrite *gomock.Call.Do
func (*MockInterfaceUpdateCall) DoAndReturn ¶ added in v0.2.2
func (c *MockInterfaceUpdateCall) DoAndReturn(f func(context.Context, string, string, *armstorage.AccountUpdateParameters) (*armstorage.Account, error)) *MockInterfaceUpdateCall
DoAndReturn rewrite *gomock.Call.DoAndReturn
func (*MockInterfaceUpdateCall) Return ¶ added in v0.2.2
func (c *MockInterfaceUpdateCall) Return(arg0 *armstorage.Account, arg1 error) *MockInterfaceUpdateCall
Return rewrite *gomock.Call.Return