client

package
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 13, 2024 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Overview

Package client includes the mock FGA client generated by testify mockery

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func BatchCheck

func BatchCheck(t *testing.T, c *MockSdkClient, list []string, allowed []string)

CheckAny mocks a check request for any times in a test

func CheckAny

func CheckAny(t *testing.T, c *MockSdkClient, allowed bool)

CheckAny mocks a check request for any times in a test

func ClearMocks

func ClearMocks(c *MockSdkClient)

ClearMocks is used to clear mocks in a test loop easiest to use `def mock_fga.ClearMocks(c)` so no matter how the test exits mocks are always cleared before the next test case

func DeleteAny

func DeleteAny(t *testing.T, c *MockSdkClient, errMsg string)

DeleteAny creates mock delete responses based on the mock FGA client for any times in a test

func ListAny

func ListAny(t *testing.T, c *MockSdkClient, allowedObjects []string)

ListAny mocks a list request for any times in a test

func ListOnce

func ListOnce(t *testing.T, c *MockSdkClient, allowedObjects []string, err error)

ListOnce mocks a list request once with a allowed objects and error if provided

func ListTimes

func ListTimes(t *testing.T, c *MockSdkClient, allowedObjects []string, times int)

ListTimes mocks a list request for the specified number of times in a test

func ListUsers

func ListUsers(t *testing.T, c *MockSdkClient, allowedUsers []openfga.User, err error)

ListOnce mocks a list request once with a allowed objects and error if provided

func ReadAny

func ReadAny(t *testing.T, c *MockSdkClient)

ReadAny mocks a read request for any times in a test

func WriteAny

func WriteAny(t *testing.T, c *MockSdkClient)

WriteAny creates mock write responses based on the mock FGA client for any times in a test

func WriteError

func WriteError(t *testing.T, c *MockSdkClient, err error)

WriteError creates mock write error response based on the mock FGA client for any times in a test

func WriteOnce

func WriteOnce(t *testing.T, c *MockSdkClient)

WriteOnce creates mock write responses based on the mock FGA client one time per test

Types

type MockSdkClient

type MockSdkClient struct {
	mock.Mock
}

MockSdkClient is an autogenerated mock type for the SdkClient type

func NewMockSdkClient

func NewMockSdkClient(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClient

NewMockSdkClient creates a new instance of MockSdkClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClient) BatchCheck

BatchCheck provides a mock function with given fields: ctx

func (*MockSdkClient) BatchCheckExecute

BatchCheckExecute provides a mock function with given fields: request

func (*MockSdkClient) Check

Check provides a mock function with given fields: ctx

func (*MockSdkClient) CheckExecute

CheckExecute provides a mock function with given fields: request

func (*MockSdkClient) CreateStore

CreateStore provides a mock function with given fields: ctx

func (*MockSdkClient) CreateStoreExecute

CreateStoreExecute provides a mock function with given fields: request

func (*MockSdkClient) DeleteStore

DeleteStore provides a mock function with given fields: ctx

func (*MockSdkClient) DeleteStoreExecute

DeleteStoreExecute provides a mock function with given fields: request

func (*MockSdkClient) DeleteTuples

DeleteTuples provides a mock function with given fields: ctx

func (*MockSdkClient) DeleteTuplesExecute

DeleteTuplesExecute provides a mock function with given fields: request

func (*MockSdkClient) EXPECT

func (_m *MockSdkClient) EXPECT() *MockSdkClient_Expecter

func (*MockSdkClient) Expand

Expand provides a mock function with given fields: ctx

func (*MockSdkClient) ExpandExecute

ExpandExecute provides a mock function with given fields: request

func (*MockSdkClient) GetStore

GetStore provides a mock function with given fields: ctx

func (*MockSdkClient) GetStoreExecute

GetStoreExecute provides a mock function with given fields: request

func (*MockSdkClient) ListObjects

ListObjects provides a mock function with given fields: ctx

func (*MockSdkClient) ListObjectsExecute

ListObjectsExecute provides a mock function with given fields: request

func (*MockSdkClient) ListRelations

ListRelations provides a mock function with given fields: ctx

func (*MockSdkClient) ListRelationsExecute

ListRelationsExecute provides a mock function with given fields: request

func (*MockSdkClient) ListStores

ListStores provides a mock function with given fields: ctx

func (*MockSdkClient) ListStoresExecute

ListStoresExecute provides a mock function with given fields: request

func (*MockSdkClient) ListUsers

ListUsers provides a mock function with given fields: ctx

func (*MockSdkClient) ListUsersExecute

ListUsersExecute provides a mock function with given fields: r

func (*MockSdkClient) Read

Read provides a mock function with given fields: ctx

func (*MockSdkClient) ReadAssertions

ReadAssertions provides a mock function with given fields: ctx

func (*MockSdkClient) ReadAssertionsExecute

ReadAssertionsExecute provides a mock function with given fields: request

func (*MockSdkClient) ReadAuthorizationModel

ReadAuthorizationModel provides a mock function with given fields: ctx

func (*MockSdkClient) ReadAuthorizationModelExecute

ReadAuthorizationModelExecute provides a mock function with given fields: request

func (*MockSdkClient) ReadAuthorizationModels

ReadAuthorizationModels provides a mock function with given fields: ctx

func (*MockSdkClient) ReadAuthorizationModelsExecute

ReadAuthorizationModelsExecute provides a mock function with given fields: request

func (*MockSdkClient) ReadChanges

ReadChanges provides a mock function with given fields: ctx

func (*MockSdkClient) ReadChangesExecute

ReadChangesExecute provides a mock function with given fields: request

func (*MockSdkClient) ReadExecute

ReadExecute provides a mock function with given fields: request

func (*MockSdkClient) ReadLatestAuthorizationModel

ReadLatestAuthorizationModel provides a mock function with given fields: ctx

func (*MockSdkClient) ReadLatestAuthorizationModelExecute

ReadLatestAuthorizationModelExecute provides a mock function with given fields: request

func (*MockSdkClient) Write

Write provides a mock function with given fields: ctx

func (*MockSdkClient) WriteAssertions

WriteAssertions provides a mock function with given fields: ctx

func (*MockSdkClient) WriteAssertionsExecute

WriteAssertionsExecute provides a mock function with given fields: request

func (*MockSdkClient) WriteAuthorizationModel

WriteAuthorizationModel provides a mock function with given fields: ctx

func (*MockSdkClient) WriteAuthorizationModelExecute

WriteAuthorizationModelExecute provides a mock function with given fields: request

func (*MockSdkClient) WriteExecute

WriteExecute provides a mock function with given fields: request

func (*MockSdkClient) WriteTuples

WriteTuples provides a mock function with given fields: ctx

func (*MockSdkClient) WriteTuplesExecute

WriteTuplesExecute provides a mock function with given fields: request

type MockSdkClientBatchCheckRequestInterface

type MockSdkClientBatchCheckRequestInterface struct {
	mock.Mock
}

MockSdkClientBatchCheckRequestInterface is an autogenerated mock type for the SdkClientBatchCheckRequestInterface type

func NewMockSdkClientBatchCheckRequestInterface

func NewMockSdkClientBatchCheckRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientBatchCheckRequestInterface

NewMockSdkClientBatchCheckRequestInterface creates a new instance of MockSdkClientBatchCheckRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientBatchCheckRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientBatchCheckRequestInterface) EXPECT

func (*MockSdkClientBatchCheckRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientBatchCheckRequestInterface) GetAuthorizationModelIdOverride

func (_m *MockSdkClientBatchCheckRequestInterface) GetAuthorizationModelIdOverride() *string

GetAuthorizationModelIdOverride provides a mock function with given fields:

func (*MockSdkClientBatchCheckRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientBatchCheckRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientBatchCheckRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientBatchCheckRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientBatchCheckRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientBatchCheckRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientBatchCheckRequestInterface_Body_Call

type MockSdkClientBatchCheckRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientBatchCheckRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientBatchCheckRequestInterface_Body_Call) Run

type MockSdkClientBatchCheckRequestInterface_Execute_Call

type MockSdkClientBatchCheckRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientBatchCheckRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientBatchCheckRequestInterface_Execute_Call) Run

func (*MockSdkClientBatchCheckRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientBatchCheckRequestInterface_Expecter

type MockSdkClientBatchCheckRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientBatchCheckRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body []client.ClientCheckRequest

func (*MockSdkClientBatchCheckRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientBatchCheckRequestInterface_Expecter) GetAuthorizationModelIdOverride

GetAuthorizationModelIdOverride is a helper method to define mock.On call

func (*MockSdkClientBatchCheckRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientBatchCheckRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientBatchCheckRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientBatchCheckRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientBatchCheckRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientBatchCheckOptions

type MockSdkClientBatchCheckRequestInterface_GetAuthorizationModelIdOverride_Call

type MockSdkClientBatchCheckRequestInterface_GetAuthorizationModelIdOverride_Call struct {
	*mock.Call
}

MockSdkClientBatchCheckRequestInterface_GetAuthorizationModelIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetAuthorizationModelIdOverride'

func (*MockSdkClientBatchCheckRequestInterface_GetAuthorizationModelIdOverride_Call) Return

func (*MockSdkClientBatchCheckRequestInterface_GetAuthorizationModelIdOverride_Call) Run

func (*MockSdkClientBatchCheckRequestInterface_GetAuthorizationModelIdOverride_Call) RunAndReturn

type MockSdkClientBatchCheckRequestInterface_GetBody_Call

type MockSdkClientBatchCheckRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientBatchCheckRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientBatchCheckRequestInterface_GetBody_Call) Return

func (*MockSdkClientBatchCheckRequestInterface_GetBody_Call) Run

func (*MockSdkClientBatchCheckRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientBatchCheckRequestInterface_GetContext_Call

type MockSdkClientBatchCheckRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientBatchCheckRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientBatchCheckRequestInterface_GetContext_Call) Return

func (*MockSdkClientBatchCheckRequestInterface_GetContext_Call) Run

func (*MockSdkClientBatchCheckRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientBatchCheckRequestInterface_GetOptions_Call

type MockSdkClientBatchCheckRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientBatchCheckRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientBatchCheckRequestInterface_GetOptions_Call) Run

func (*MockSdkClientBatchCheckRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientBatchCheckRequestInterface_GetStoreIdOverride_Call

type MockSdkClientBatchCheckRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientBatchCheckRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientBatchCheckRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientBatchCheckRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientBatchCheckRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientBatchCheckRequestInterface_Options_Call

type MockSdkClientBatchCheckRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientBatchCheckRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientBatchCheckRequestInterface_Options_Call) Run

type MockSdkClientCheckRequestInterface

type MockSdkClientCheckRequestInterface struct {
	mock.Mock
}

MockSdkClientCheckRequestInterface is an autogenerated mock type for the SdkClientCheckRequestInterface type

func NewMockSdkClientCheckRequestInterface

func NewMockSdkClientCheckRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientCheckRequestInterface

NewMockSdkClientCheckRequestInterface creates a new instance of MockSdkClientCheckRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientCheckRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientCheckRequestInterface) EXPECT

func (*MockSdkClientCheckRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientCheckRequestInterface) GetAuthorizationModelIdOverride

func (_m *MockSdkClientCheckRequestInterface) GetAuthorizationModelIdOverride() *string

GetAuthorizationModelIdOverride provides a mock function with given fields:

func (*MockSdkClientCheckRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientCheckRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientCheckRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientCheckRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientCheckRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientCheckRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientCheckRequestInterface_Body_Call

type MockSdkClientCheckRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientCheckRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientCheckRequestInterface_Body_Call) Run

type MockSdkClientCheckRequestInterface_Execute_Call

type MockSdkClientCheckRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientCheckRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientCheckRequestInterface_Execute_Call) Return

func (*MockSdkClientCheckRequestInterface_Execute_Call) Run

func (*MockSdkClientCheckRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientCheckRequestInterface_Expecter

type MockSdkClientCheckRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientCheckRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body client.ClientCheckRequest

func (*MockSdkClientCheckRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientCheckRequestInterface_Expecter) GetAuthorizationModelIdOverride

GetAuthorizationModelIdOverride is a helper method to define mock.On call

func (*MockSdkClientCheckRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientCheckRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientCheckRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientCheckRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientCheckRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientCheckOptions

type MockSdkClientCheckRequestInterface_GetAuthorizationModelIdOverride_Call

type MockSdkClientCheckRequestInterface_GetAuthorizationModelIdOverride_Call struct {
	*mock.Call
}

MockSdkClientCheckRequestInterface_GetAuthorizationModelIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetAuthorizationModelIdOverride'

func (*MockSdkClientCheckRequestInterface_GetAuthorizationModelIdOverride_Call) Return

func (*MockSdkClientCheckRequestInterface_GetAuthorizationModelIdOverride_Call) Run

func (*MockSdkClientCheckRequestInterface_GetAuthorizationModelIdOverride_Call) RunAndReturn

type MockSdkClientCheckRequestInterface_GetBody_Call

type MockSdkClientCheckRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientCheckRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientCheckRequestInterface_GetBody_Call) Return

func (*MockSdkClientCheckRequestInterface_GetBody_Call) Run

func (*MockSdkClientCheckRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientCheckRequestInterface_GetContext_Call

type MockSdkClientCheckRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientCheckRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientCheckRequestInterface_GetContext_Call) Return

func (*MockSdkClientCheckRequestInterface_GetContext_Call) Run

func (*MockSdkClientCheckRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientCheckRequestInterface_GetOptions_Call

type MockSdkClientCheckRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientCheckRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientCheckRequestInterface_GetOptions_Call) Return

func (*MockSdkClientCheckRequestInterface_GetOptions_Call) Run

func (*MockSdkClientCheckRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientCheckRequestInterface_GetStoreIdOverride_Call

type MockSdkClientCheckRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientCheckRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientCheckRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientCheckRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientCheckRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientCheckRequestInterface_Options_Call

type MockSdkClientCheckRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientCheckRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientCheckRequestInterface_Options_Call) Run

type MockSdkClientCreateStoreRequestInterface

type MockSdkClientCreateStoreRequestInterface struct {
	mock.Mock
}

MockSdkClientCreateStoreRequestInterface is an autogenerated mock type for the SdkClientCreateStoreRequestInterface type

func NewMockSdkClientCreateStoreRequestInterface

func NewMockSdkClientCreateStoreRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientCreateStoreRequestInterface

NewMockSdkClientCreateStoreRequestInterface creates a new instance of MockSdkClientCreateStoreRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientCreateStoreRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientCreateStoreRequestInterface) EXPECT

func (*MockSdkClientCreateStoreRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientCreateStoreRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientCreateStoreRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientCreateStoreRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientCreateStoreRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientCreateStoreRequestInterface_Body_Call

type MockSdkClientCreateStoreRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientCreateStoreRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientCreateStoreRequestInterface_Body_Call) Run

type MockSdkClientCreateStoreRequestInterface_Execute_Call

type MockSdkClientCreateStoreRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientCreateStoreRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientCreateStoreRequestInterface_Execute_Call) Return

func (*MockSdkClientCreateStoreRequestInterface_Execute_Call) Run

func (*MockSdkClientCreateStoreRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientCreateStoreRequestInterface_Expecter

type MockSdkClientCreateStoreRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientCreateStoreRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body client.ClientCreateStoreRequest

func (*MockSdkClientCreateStoreRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientCreateStoreRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientCreateStoreRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientCreateStoreRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientCreateStoreRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientCreateStoreOptions

type MockSdkClientCreateStoreRequestInterface_GetBody_Call

type MockSdkClientCreateStoreRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientCreateStoreRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientCreateStoreRequestInterface_GetBody_Call) Run

func (*MockSdkClientCreateStoreRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientCreateStoreRequestInterface_GetContext_Call

type MockSdkClientCreateStoreRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientCreateStoreRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientCreateStoreRequestInterface_GetContext_Call) Return

func (*MockSdkClientCreateStoreRequestInterface_GetContext_Call) Run

func (*MockSdkClientCreateStoreRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientCreateStoreRequestInterface_GetOptions_Call

type MockSdkClientCreateStoreRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientCreateStoreRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientCreateStoreRequestInterface_GetOptions_Call) Run

func (*MockSdkClientCreateStoreRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientCreateStoreRequestInterface_Options_Call

type MockSdkClientCreateStoreRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientCreateStoreRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientCreateStoreRequestInterface_Options_Call) Run

type MockSdkClientDeleteStoreRequestInterface

type MockSdkClientDeleteStoreRequestInterface struct {
	mock.Mock
}

MockSdkClientDeleteStoreRequestInterface is an autogenerated mock type for the SdkClientDeleteStoreRequestInterface type

func NewMockSdkClientDeleteStoreRequestInterface

func NewMockSdkClientDeleteStoreRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientDeleteStoreRequestInterface

NewMockSdkClientDeleteStoreRequestInterface creates a new instance of MockSdkClientDeleteStoreRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientDeleteStoreRequestInterface) EXPECT

func (*MockSdkClientDeleteStoreRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientDeleteStoreRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientDeleteStoreRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientDeleteStoreRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientDeleteStoreRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientDeleteStoreRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientDeleteStoreRequestInterface_Execute_Call

type MockSdkClientDeleteStoreRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientDeleteStoreRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientDeleteStoreRequestInterface_Execute_Call) Return

func (*MockSdkClientDeleteStoreRequestInterface_Execute_Call) Run

func (*MockSdkClientDeleteStoreRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientDeleteStoreRequestInterface_Expecter

type MockSdkClientDeleteStoreRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientDeleteStoreRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientDeleteStoreRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientDeleteStoreRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientDeleteStoreRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientDeleteStoreRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientDeleteStoreOptions

type MockSdkClientDeleteStoreRequestInterface_GetContext_Call

type MockSdkClientDeleteStoreRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientDeleteStoreRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientDeleteStoreRequestInterface_GetContext_Call) Return

func (*MockSdkClientDeleteStoreRequestInterface_GetContext_Call) Run

func (*MockSdkClientDeleteStoreRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientDeleteStoreRequestInterface_GetOptions_Call

type MockSdkClientDeleteStoreRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientDeleteStoreRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientDeleteStoreRequestInterface_GetOptions_Call) Run

func (*MockSdkClientDeleteStoreRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientDeleteStoreRequestInterface_GetStoreIdOverride_Call

type MockSdkClientDeleteStoreRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientDeleteStoreRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientDeleteStoreRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientDeleteStoreRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientDeleteStoreRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientDeleteStoreRequestInterface_Options_Call

type MockSdkClientDeleteStoreRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientDeleteStoreRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientDeleteStoreRequestInterface_Options_Call) Run

type MockSdkClientDeleteTuplesRequestInterface

type MockSdkClientDeleteTuplesRequestInterface struct {
	mock.Mock
}

MockSdkClientDeleteTuplesRequestInterface is an autogenerated mock type for the SdkClientDeleteTuplesRequestInterface type

func NewMockSdkClientDeleteTuplesRequestInterface

func NewMockSdkClientDeleteTuplesRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientDeleteTuplesRequestInterface

NewMockSdkClientDeleteTuplesRequestInterface creates a new instance of MockSdkClientDeleteTuplesRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientDeleteTuplesRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientDeleteTuplesRequestInterface) EXPECT

func (*MockSdkClientDeleteTuplesRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientDeleteTuplesRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientDeleteTuplesRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientDeleteTuplesRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientDeleteTuplesRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientDeleteTuplesRequestInterface_Body_Call

type MockSdkClientDeleteTuplesRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientDeleteTuplesRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientDeleteTuplesRequestInterface_Body_Call) Run

type MockSdkClientDeleteTuplesRequestInterface_Execute_Call

type MockSdkClientDeleteTuplesRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientDeleteTuplesRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientDeleteTuplesRequestInterface_Execute_Call) Return

func (*MockSdkClientDeleteTuplesRequestInterface_Execute_Call) Run

func (*MockSdkClientDeleteTuplesRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientDeleteTuplesRequestInterface_Expecter

type MockSdkClientDeleteTuplesRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientDeleteTuplesRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body []openfga.TupleKeyWithoutCondition

func (*MockSdkClientDeleteTuplesRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientDeleteTuplesRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientDeleteTuplesRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientDeleteTuplesRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientDeleteTuplesRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientWriteOptions

type MockSdkClientDeleteTuplesRequestInterface_GetBody_Call

type MockSdkClientDeleteTuplesRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientDeleteTuplesRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientDeleteTuplesRequestInterface_GetBody_Call) Run

func (*MockSdkClientDeleteTuplesRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientDeleteTuplesRequestInterface_GetContext_Call

type MockSdkClientDeleteTuplesRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientDeleteTuplesRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientDeleteTuplesRequestInterface_GetContext_Call) Return

func (*MockSdkClientDeleteTuplesRequestInterface_GetContext_Call) Run

func (*MockSdkClientDeleteTuplesRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientDeleteTuplesRequestInterface_GetOptions_Call

type MockSdkClientDeleteTuplesRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientDeleteTuplesRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientDeleteTuplesRequestInterface_GetOptions_Call) Return

func (*MockSdkClientDeleteTuplesRequestInterface_GetOptions_Call) Run

func (*MockSdkClientDeleteTuplesRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientDeleteTuplesRequestInterface_Options_Call

type MockSdkClientDeleteTuplesRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientDeleteTuplesRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientDeleteTuplesRequestInterface_Options_Call) Run

type MockSdkClientExpandRequestInterface

type MockSdkClientExpandRequestInterface struct {
	mock.Mock
}

MockSdkClientExpandRequestInterface is an autogenerated mock type for the SdkClientExpandRequestInterface type

func NewMockSdkClientExpandRequestInterface

func NewMockSdkClientExpandRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientExpandRequestInterface

NewMockSdkClientExpandRequestInterface creates a new instance of MockSdkClientExpandRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientExpandRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientExpandRequestInterface) EXPECT

func (*MockSdkClientExpandRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientExpandRequestInterface) GetAuthorizationModelIdOverride

func (_m *MockSdkClientExpandRequestInterface) GetAuthorizationModelIdOverride() *string

GetAuthorizationModelIdOverride provides a mock function with given fields:

func (*MockSdkClientExpandRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientExpandRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientExpandRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientExpandRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientExpandRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientExpandRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientExpandRequestInterface_Body_Call

type MockSdkClientExpandRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientExpandRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientExpandRequestInterface_Body_Call) Run

type MockSdkClientExpandRequestInterface_Execute_Call

type MockSdkClientExpandRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientExpandRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientExpandRequestInterface_Execute_Call) Return

func (*MockSdkClientExpandRequestInterface_Execute_Call) Run

func (*MockSdkClientExpandRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientExpandRequestInterface_Expecter

type MockSdkClientExpandRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientExpandRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body client.ClientExpandRequest

func (*MockSdkClientExpandRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientExpandRequestInterface_Expecter) GetAuthorizationModelIdOverride

GetAuthorizationModelIdOverride is a helper method to define mock.On call

func (*MockSdkClientExpandRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientExpandRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientExpandRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientExpandRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientExpandRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientExpandOptions

type MockSdkClientExpandRequestInterface_GetAuthorizationModelIdOverride_Call

type MockSdkClientExpandRequestInterface_GetAuthorizationModelIdOverride_Call struct {
	*mock.Call
}

MockSdkClientExpandRequestInterface_GetAuthorizationModelIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetAuthorizationModelIdOverride'

func (*MockSdkClientExpandRequestInterface_GetAuthorizationModelIdOverride_Call) Return

func (*MockSdkClientExpandRequestInterface_GetAuthorizationModelIdOverride_Call) Run

func (*MockSdkClientExpandRequestInterface_GetAuthorizationModelIdOverride_Call) RunAndReturn

type MockSdkClientExpandRequestInterface_GetBody_Call

type MockSdkClientExpandRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientExpandRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientExpandRequestInterface_GetBody_Call) Return

func (*MockSdkClientExpandRequestInterface_GetBody_Call) Run

func (*MockSdkClientExpandRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientExpandRequestInterface_GetContext_Call

type MockSdkClientExpandRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientExpandRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientExpandRequestInterface_GetContext_Call) Return

func (*MockSdkClientExpandRequestInterface_GetContext_Call) Run

func (*MockSdkClientExpandRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientExpandRequestInterface_GetOptions_Call

type MockSdkClientExpandRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientExpandRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientExpandRequestInterface_GetOptions_Call) Return

func (*MockSdkClientExpandRequestInterface_GetOptions_Call) Run

func (*MockSdkClientExpandRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientExpandRequestInterface_GetStoreIdOverride_Call

type MockSdkClientExpandRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientExpandRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientExpandRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientExpandRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientExpandRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientExpandRequestInterface_Options_Call

type MockSdkClientExpandRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientExpandRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientExpandRequestInterface_Options_Call) Run

type MockSdkClientGetStoreRequestInterface

type MockSdkClientGetStoreRequestInterface struct {
	mock.Mock
}

MockSdkClientGetStoreRequestInterface is an autogenerated mock type for the SdkClientGetStoreRequestInterface type

func NewMockSdkClientGetStoreRequestInterface

func NewMockSdkClientGetStoreRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientGetStoreRequestInterface

NewMockSdkClientGetStoreRequestInterface creates a new instance of MockSdkClientGetStoreRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientGetStoreRequestInterface) EXPECT

func (*MockSdkClientGetStoreRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientGetStoreRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientGetStoreRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientGetStoreRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientGetStoreRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientGetStoreRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientGetStoreRequestInterface_Execute_Call

type MockSdkClientGetStoreRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientGetStoreRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientGetStoreRequestInterface_Execute_Call) Return

func (*MockSdkClientGetStoreRequestInterface_Execute_Call) Run

func (*MockSdkClientGetStoreRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientGetStoreRequestInterface_Expecter

type MockSdkClientGetStoreRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientGetStoreRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientGetStoreRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientGetStoreRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientGetStoreRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientGetStoreRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientGetStoreOptions

type MockSdkClientGetStoreRequestInterface_GetContext_Call

type MockSdkClientGetStoreRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientGetStoreRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientGetStoreRequestInterface_GetContext_Call) Return

func (*MockSdkClientGetStoreRequestInterface_GetContext_Call) Run

func (*MockSdkClientGetStoreRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientGetStoreRequestInterface_GetOptions_Call

type MockSdkClientGetStoreRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientGetStoreRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientGetStoreRequestInterface_GetOptions_Call) Return

func (*MockSdkClientGetStoreRequestInterface_GetOptions_Call) Run

func (*MockSdkClientGetStoreRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientGetStoreRequestInterface_GetStoreIdOverride_Call

type MockSdkClientGetStoreRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientGetStoreRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientGetStoreRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientGetStoreRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientGetStoreRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientGetStoreRequestInterface_Options_Call

type MockSdkClientGetStoreRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientGetStoreRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientGetStoreRequestInterface_Options_Call) Run

type MockSdkClientListObjectsRequestInterface

type MockSdkClientListObjectsRequestInterface struct {
	mock.Mock
}

MockSdkClientListObjectsRequestInterface is an autogenerated mock type for the SdkClientListObjectsRequestInterface type

func NewMockSdkClientListObjectsRequestInterface

func NewMockSdkClientListObjectsRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientListObjectsRequestInterface

NewMockSdkClientListObjectsRequestInterface creates a new instance of MockSdkClientListObjectsRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientListObjectsRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientListObjectsRequestInterface) EXPECT

func (*MockSdkClientListObjectsRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientListObjectsRequestInterface) GetAuthorizationModelIdOverride

func (_m *MockSdkClientListObjectsRequestInterface) GetAuthorizationModelIdOverride() *string

GetAuthorizationModelIdOverride provides a mock function with given fields:

func (*MockSdkClientListObjectsRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientListObjectsRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientListObjectsRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientListObjectsRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientListObjectsRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientListObjectsRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientListObjectsRequestInterface_Body_Call

type MockSdkClientListObjectsRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientListObjectsRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientListObjectsRequestInterface_Body_Call) Run

type MockSdkClientListObjectsRequestInterface_Execute_Call

type MockSdkClientListObjectsRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientListObjectsRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientListObjectsRequestInterface_Execute_Call) Return

func (*MockSdkClientListObjectsRequestInterface_Execute_Call) Run

func (*MockSdkClientListObjectsRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientListObjectsRequestInterface_Expecter

type MockSdkClientListObjectsRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientListObjectsRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body client.ClientListObjectsRequest

func (*MockSdkClientListObjectsRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientListObjectsRequestInterface_Expecter) GetAuthorizationModelIdOverride

GetAuthorizationModelIdOverride is a helper method to define mock.On call

func (*MockSdkClientListObjectsRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientListObjectsRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientListObjectsRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientListObjectsRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientListObjectsRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientListObjectsOptions

type MockSdkClientListObjectsRequestInterface_GetAuthorizationModelIdOverride_Call

type MockSdkClientListObjectsRequestInterface_GetAuthorizationModelIdOverride_Call struct {
	*mock.Call
}

MockSdkClientListObjectsRequestInterface_GetAuthorizationModelIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetAuthorizationModelIdOverride'

func (*MockSdkClientListObjectsRequestInterface_GetAuthorizationModelIdOverride_Call) Return

func (*MockSdkClientListObjectsRequestInterface_GetAuthorizationModelIdOverride_Call) Run

func (*MockSdkClientListObjectsRequestInterface_GetAuthorizationModelIdOverride_Call) RunAndReturn

type MockSdkClientListObjectsRequestInterface_GetBody_Call

type MockSdkClientListObjectsRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientListObjectsRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientListObjectsRequestInterface_GetBody_Call) Run

func (*MockSdkClientListObjectsRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientListObjectsRequestInterface_GetContext_Call

type MockSdkClientListObjectsRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientListObjectsRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientListObjectsRequestInterface_GetContext_Call) Return

func (*MockSdkClientListObjectsRequestInterface_GetContext_Call) Run

func (*MockSdkClientListObjectsRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientListObjectsRequestInterface_GetOptions_Call

type MockSdkClientListObjectsRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientListObjectsRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientListObjectsRequestInterface_GetOptions_Call) Run

func (*MockSdkClientListObjectsRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientListObjectsRequestInterface_GetStoreIdOverride_Call

type MockSdkClientListObjectsRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientListObjectsRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientListObjectsRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientListObjectsRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientListObjectsRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientListObjectsRequestInterface_Options_Call

type MockSdkClientListObjectsRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientListObjectsRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientListObjectsRequestInterface_Options_Call) Run

type MockSdkClientListRelationsRequestInterface

type MockSdkClientListRelationsRequestInterface struct {
	mock.Mock
}

MockSdkClientListRelationsRequestInterface is an autogenerated mock type for the SdkClientListRelationsRequestInterface type

func NewMockSdkClientListRelationsRequestInterface

func NewMockSdkClientListRelationsRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientListRelationsRequestInterface

NewMockSdkClientListRelationsRequestInterface creates a new instance of MockSdkClientListRelationsRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientListRelationsRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientListRelationsRequestInterface) EXPECT

func (*MockSdkClientListRelationsRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientListRelationsRequestInterface) GetAuthorizationModelIdOverride

func (_m *MockSdkClientListRelationsRequestInterface) GetAuthorizationModelIdOverride() *string

GetAuthorizationModelIdOverride provides a mock function with given fields:

func (*MockSdkClientListRelationsRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientListRelationsRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientListRelationsRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientListRelationsRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientListRelationsRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientListRelationsRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientListRelationsRequestInterface_Body_Call

type MockSdkClientListRelationsRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientListRelationsRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientListRelationsRequestInterface_Body_Call) Run

type MockSdkClientListRelationsRequestInterface_Execute_Call

type MockSdkClientListRelationsRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientListRelationsRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientListRelationsRequestInterface_Execute_Call) Run

func (*MockSdkClientListRelationsRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientListRelationsRequestInterface_Expecter

type MockSdkClientListRelationsRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientListRelationsRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body client.ClientListRelationsRequest

func (*MockSdkClientListRelationsRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientListRelationsRequestInterface_Expecter) GetAuthorizationModelIdOverride

GetAuthorizationModelIdOverride is a helper method to define mock.On call

func (*MockSdkClientListRelationsRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientListRelationsRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientListRelationsRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientListRelationsRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientListRelationsRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientListRelationsOptions

type MockSdkClientListRelationsRequestInterface_GetAuthorizationModelIdOverride_Call

type MockSdkClientListRelationsRequestInterface_GetAuthorizationModelIdOverride_Call struct {
	*mock.Call
}

MockSdkClientListRelationsRequestInterface_GetAuthorizationModelIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetAuthorizationModelIdOverride'

func (*MockSdkClientListRelationsRequestInterface_GetAuthorizationModelIdOverride_Call) Return

func (*MockSdkClientListRelationsRequestInterface_GetAuthorizationModelIdOverride_Call) Run

func (*MockSdkClientListRelationsRequestInterface_GetAuthorizationModelIdOverride_Call) RunAndReturn

type MockSdkClientListRelationsRequestInterface_GetBody_Call

type MockSdkClientListRelationsRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientListRelationsRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientListRelationsRequestInterface_GetBody_Call) Run

func (*MockSdkClientListRelationsRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientListRelationsRequestInterface_GetContext_Call

type MockSdkClientListRelationsRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientListRelationsRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientListRelationsRequestInterface_GetContext_Call) Return

func (*MockSdkClientListRelationsRequestInterface_GetContext_Call) Run

func (*MockSdkClientListRelationsRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientListRelationsRequestInterface_GetOptions_Call

type MockSdkClientListRelationsRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientListRelationsRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientListRelationsRequestInterface_GetOptions_Call) Run

func (*MockSdkClientListRelationsRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientListRelationsRequestInterface_GetStoreIdOverride_Call

type MockSdkClientListRelationsRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientListRelationsRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientListRelationsRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientListRelationsRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientListRelationsRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientListRelationsRequestInterface_Options_Call

type MockSdkClientListRelationsRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientListRelationsRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientListRelationsRequestInterface_Options_Call) Run

type MockSdkClientListStoresRequestInterface

type MockSdkClientListStoresRequestInterface struct {
	mock.Mock
}

MockSdkClientListStoresRequestInterface is an autogenerated mock type for the SdkClientListStoresRequestInterface type

func NewMockSdkClientListStoresRequestInterface

func NewMockSdkClientListStoresRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientListStoresRequestInterface

NewMockSdkClientListStoresRequestInterface creates a new instance of MockSdkClientListStoresRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientListStoresRequestInterface) EXPECT

func (*MockSdkClientListStoresRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientListStoresRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientListStoresRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientListStoresRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientListStoresRequestInterface_Execute_Call

type MockSdkClientListStoresRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientListStoresRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientListStoresRequestInterface_Execute_Call) Return

func (*MockSdkClientListStoresRequestInterface_Execute_Call) Run

func (*MockSdkClientListStoresRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientListStoresRequestInterface_Expecter

type MockSdkClientListStoresRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientListStoresRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientListStoresRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientListStoresRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientListStoresRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientListStoresOptions

type MockSdkClientListStoresRequestInterface_GetContext_Call

type MockSdkClientListStoresRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientListStoresRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientListStoresRequestInterface_GetContext_Call) Return

func (*MockSdkClientListStoresRequestInterface_GetContext_Call) Run

func (*MockSdkClientListStoresRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientListStoresRequestInterface_GetOptions_Call

type MockSdkClientListStoresRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientListStoresRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientListStoresRequestInterface_GetOptions_Call) Run

func (*MockSdkClientListStoresRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientListStoresRequestInterface_Options_Call

type MockSdkClientListStoresRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientListStoresRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientListStoresRequestInterface_Options_Call) Run

type MockSdkClientListUsersRequestInterface

type MockSdkClientListUsersRequestInterface struct {
	mock.Mock
}

MockSdkClientListUsersRequestInterface is an autogenerated mock type for the SdkClientListUsersRequestInterface type

func NewMockSdkClientListUsersRequestInterface

func NewMockSdkClientListUsersRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientListUsersRequestInterface

NewMockSdkClientListUsersRequestInterface creates a new instance of MockSdkClientListUsersRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientListUsersRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientListUsersRequestInterface) EXPECT

func (*MockSdkClientListUsersRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientListUsersRequestInterface) GetAuthorizationModelIdOverride

func (_m *MockSdkClientListUsersRequestInterface) GetAuthorizationModelIdOverride() *string

GetAuthorizationModelIdOverride provides a mock function with given fields:

func (*MockSdkClientListUsersRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientListUsersRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientListUsersRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientListUsersRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientListUsersRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientListUsersRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientListUsersRequestInterface_Body_Call

type MockSdkClientListUsersRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientListUsersRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientListUsersRequestInterface_Body_Call) Run

type MockSdkClientListUsersRequestInterface_Execute_Call

type MockSdkClientListUsersRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientListUsersRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientListUsersRequestInterface_Execute_Call) Return

func (*MockSdkClientListUsersRequestInterface_Execute_Call) Run

func (*MockSdkClientListUsersRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientListUsersRequestInterface_Expecter

type MockSdkClientListUsersRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientListUsersRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body client.ClientListUsersRequest

func (*MockSdkClientListUsersRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientListUsersRequestInterface_Expecter) GetAuthorizationModelIdOverride

GetAuthorizationModelIdOverride is a helper method to define mock.On call

func (*MockSdkClientListUsersRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientListUsersRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientListUsersRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientListUsersRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientListUsersRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientListUsersOptions

type MockSdkClientListUsersRequestInterface_GetAuthorizationModelIdOverride_Call

type MockSdkClientListUsersRequestInterface_GetAuthorizationModelIdOverride_Call struct {
	*mock.Call
}

MockSdkClientListUsersRequestInterface_GetAuthorizationModelIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetAuthorizationModelIdOverride'

func (*MockSdkClientListUsersRequestInterface_GetAuthorizationModelIdOverride_Call) Return

func (*MockSdkClientListUsersRequestInterface_GetAuthorizationModelIdOverride_Call) Run

func (*MockSdkClientListUsersRequestInterface_GetAuthorizationModelIdOverride_Call) RunAndReturn

type MockSdkClientListUsersRequestInterface_GetBody_Call

type MockSdkClientListUsersRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientListUsersRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientListUsersRequestInterface_GetBody_Call) Return

func (*MockSdkClientListUsersRequestInterface_GetBody_Call) Run

func (*MockSdkClientListUsersRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientListUsersRequestInterface_GetContext_Call

type MockSdkClientListUsersRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientListUsersRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientListUsersRequestInterface_GetContext_Call) Return

func (*MockSdkClientListUsersRequestInterface_GetContext_Call) Run

func (*MockSdkClientListUsersRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientListUsersRequestInterface_GetOptions_Call

type MockSdkClientListUsersRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientListUsersRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientListUsersRequestInterface_GetOptions_Call) Run

func (*MockSdkClientListUsersRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientListUsersRequestInterface_GetStoreIdOverride_Call

type MockSdkClientListUsersRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientListUsersRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientListUsersRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientListUsersRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientListUsersRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientListUsersRequestInterface_Options_Call

type MockSdkClientListUsersRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientListUsersRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientListUsersRequestInterface_Options_Call) Run

type MockSdkClientReadAssertionsRequestInterface

type MockSdkClientReadAssertionsRequestInterface struct {
	mock.Mock
}

MockSdkClientReadAssertionsRequestInterface is an autogenerated mock type for the SdkClientReadAssertionsRequestInterface type

func NewMockSdkClientReadAssertionsRequestInterface

func NewMockSdkClientReadAssertionsRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientReadAssertionsRequestInterface

NewMockSdkClientReadAssertionsRequestInterface creates a new instance of MockSdkClientReadAssertionsRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientReadAssertionsRequestInterface) EXPECT

func (*MockSdkClientReadAssertionsRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientReadAssertionsRequestInterface) GetAuthorizationModelIdOverride

func (_m *MockSdkClientReadAssertionsRequestInterface) GetAuthorizationModelIdOverride() *string

GetAuthorizationModelIdOverride provides a mock function with given fields:

func (*MockSdkClientReadAssertionsRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientReadAssertionsRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientReadAssertionsRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientReadAssertionsRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientReadAssertionsRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientReadAssertionsRequestInterface_Execute_Call

type MockSdkClientReadAssertionsRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientReadAssertionsRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientReadAssertionsRequestInterface_Execute_Call) Return

func (*MockSdkClientReadAssertionsRequestInterface_Execute_Call) Run

func (*MockSdkClientReadAssertionsRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientReadAssertionsRequestInterface_Expecter

type MockSdkClientReadAssertionsRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientReadAssertionsRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientReadAssertionsRequestInterface_Expecter) GetAuthorizationModelIdOverride

GetAuthorizationModelIdOverride is a helper method to define mock.On call

func (*MockSdkClientReadAssertionsRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientReadAssertionsRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientReadAssertionsRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientReadAssertionsRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientReadAssertionsOptions

type MockSdkClientReadAssertionsRequestInterface_GetAuthorizationModelIdOverride_Call

type MockSdkClientReadAssertionsRequestInterface_GetAuthorizationModelIdOverride_Call struct {
	*mock.Call
}

MockSdkClientReadAssertionsRequestInterface_GetAuthorizationModelIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetAuthorizationModelIdOverride'

func (*MockSdkClientReadAssertionsRequestInterface_GetAuthorizationModelIdOverride_Call) Return

func (*MockSdkClientReadAssertionsRequestInterface_GetAuthorizationModelIdOverride_Call) Run

func (*MockSdkClientReadAssertionsRequestInterface_GetAuthorizationModelIdOverride_Call) RunAndReturn

type MockSdkClientReadAssertionsRequestInterface_GetContext_Call

type MockSdkClientReadAssertionsRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientReadAssertionsRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientReadAssertionsRequestInterface_GetContext_Call) Return

func (*MockSdkClientReadAssertionsRequestInterface_GetContext_Call) Run

func (*MockSdkClientReadAssertionsRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientReadAssertionsRequestInterface_GetOptions_Call

type MockSdkClientReadAssertionsRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientReadAssertionsRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientReadAssertionsRequestInterface_GetOptions_Call) Run

func (*MockSdkClientReadAssertionsRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientReadAssertionsRequestInterface_GetStoreIdOverride_Call

type MockSdkClientReadAssertionsRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientReadAssertionsRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientReadAssertionsRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientReadAssertionsRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientReadAssertionsRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientReadAssertionsRequestInterface_Options_Call

type MockSdkClientReadAssertionsRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientReadAssertionsRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientReadAssertionsRequestInterface_Options_Call) Run

type MockSdkClientReadAuthorizationModelRequestInterface

type MockSdkClientReadAuthorizationModelRequestInterface struct {
	mock.Mock
}

MockSdkClientReadAuthorizationModelRequestInterface is an autogenerated mock type for the SdkClientReadAuthorizationModelRequestInterface type

func NewMockSdkClientReadAuthorizationModelRequestInterface

func NewMockSdkClientReadAuthorizationModelRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientReadAuthorizationModelRequestInterface

NewMockSdkClientReadAuthorizationModelRequestInterface creates a new instance of MockSdkClientReadAuthorizationModelRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientReadAuthorizationModelRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientReadAuthorizationModelRequestInterface) EXPECT

func (*MockSdkClientReadAuthorizationModelRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientReadAuthorizationModelRequestInterface) GetAuthorizationModelIdOverride

func (_m *MockSdkClientReadAuthorizationModelRequestInterface) GetAuthorizationModelIdOverride() *string

GetAuthorizationModelIdOverride provides a mock function with given fields:

func (*MockSdkClientReadAuthorizationModelRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientReadAuthorizationModelRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientReadAuthorizationModelRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientReadAuthorizationModelRequestInterface) GetStoreIdOverride

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientReadAuthorizationModelRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientReadAuthorizationModelRequestInterface_Body_Call

type MockSdkClientReadAuthorizationModelRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

type MockSdkClientReadAuthorizationModelRequestInterface_Execute_Call

type MockSdkClientReadAuthorizationModelRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientReadAuthorizationModelRequestInterface_Execute_Call) Run

type MockSdkClientReadAuthorizationModelRequestInterface_Expecter

type MockSdkClientReadAuthorizationModelRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientReadAuthorizationModelRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body client.ClientReadAuthorizationModelRequest

func (*MockSdkClientReadAuthorizationModelRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientReadAuthorizationModelRequestInterface_Expecter) GetAuthorizationModelIdOverride

GetAuthorizationModelIdOverride is a helper method to define mock.On call

func (*MockSdkClientReadAuthorizationModelRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientReadAuthorizationModelRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientReadAuthorizationModelRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientReadAuthorizationModelRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientReadAuthorizationModelRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientReadAuthorizationModelOptions

type MockSdkClientReadAuthorizationModelRequestInterface_GetAuthorizationModelIdOverride_Call

type MockSdkClientReadAuthorizationModelRequestInterface_GetAuthorizationModelIdOverride_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelRequestInterface_GetAuthorizationModelIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetAuthorizationModelIdOverride'

func (*MockSdkClientReadAuthorizationModelRequestInterface_GetAuthorizationModelIdOverride_Call) Return

func (*MockSdkClientReadAuthorizationModelRequestInterface_GetAuthorizationModelIdOverride_Call) Run

func (*MockSdkClientReadAuthorizationModelRequestInterface_GetAuthorizationModelIdOverride_Call) RunAndReturn

type MockSdkClientReadAuthorizationModelRequestInterface_GetBody_Call

type MockSdkClientReadAuthorizationModelRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientReadAuthorizationModelRequestInterface_GetBody_Call) Run

type MockSdkClientReadAuthorizationModelRequestInterface_GetContext_Call

type MockSdkClientReadAuthorizationModelRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientReadAuthorizationModelRequestInterface_GetContext_Call) Return

func (*MockSdkClientReadAuthorizationModelRequestInterface_GetContext_Call) Run

func (*MockSdkClientReadAuthorizationModelRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientReadAuthorizationModelRequestInterface_GetOptions_Call

type MockSdkClientReadAuthorizationModelRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientReadAuthorizationModelRequestInterface_GetOptions_Call) Run

type MockSdkClientReadAuthorizationModelRequestInterface_GetStoreIdOverride_Call

type MockSdkClientReadAuthorizationModelRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientReadAuthorizationModelRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientReadAuthorizationModelRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientReadAuthorizationModelRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientReadAuthorizationModelRequestInterface_Options_Call

type MockSdkClientReadAuthorizationModelRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

type MockSdkClientReadAuthorizationModelsRequestInterface

type MockSdkClientReadAuthorizationModelsRequestInterface struct {
	mock.Mock
}

MockSdkClientReadAuthorizationModelsRequestInterface is an autogenerated mock type for the SdkClientReadAuthorizationModelsRequestInterface type

func NewMockSdkClientReadAuthorizationModelsRequestInterface

func NewMockSdkClientReadAuthorizationModelsRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientReadAuthorizationModelsRequestInterface

NewMockSdkClientReadAuthorizationModelsRequestInterface creates a new instance of MockSdkClientReadAuthorizationModelsRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientReadAuthorizationModelsRequestInterface) EXPECT

func (*MockSdkClientReadAuthorizationModelsRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientReadAuthorizationModelsRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientReadAuthorizationModelsRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientReadAuthorizationModelsRequestInterface) GetStoreIdOverride

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientReadAuthorizationModelsRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientReadAuthorizationModelsRequestInterface_Execute_Call

type MockSdkClientReadAuthorizationModelsRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelsRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientReadAuthorizationModelsRequestInterface_Execute_Call) Run

type MockSdkClientReadAuthorizationModelsRequestInterface_Expecter

type MockSdkClientReadAuthorizationModelsRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientReadAuthorizationModelsRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientReadAuthorizationModelsRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientReadAuthorizationModelsRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientReadAuthorizationModelsRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientReadAuthorizationModelsRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientReadAuthorizationModelsOptions

type MockSdkClientReadAuthorizationModelsRequestInterface_GetContext_Call

type MockSdkClientReadAuthorizationModelsRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelsRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientReadAuthorizationModelsRequestInterface_GetContext_Call) Return

func (*MockSdkClientReadAuthorizationModelsRequestInterface_GetContext_Call) Run

func (*MockSdkClientReadAuthorizationModelsRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientReadAuthorizationModelsRequestInterface_GetOptions_Call

type MockSdkClientReadAuthorizationModelsRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelsRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientReadAuthorizationModelsRequestInterface_GetOptions_Call) Run

type MockSdkClientReadAuthorizationModelsRequestInterface_GetStoreIdOverride_Call

type MockSdkClientReadAuthorizationModelsRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelsRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientReadAuthorizationModelsRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientReadAuthorizationModelsRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientReadAuthorizationModelsRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientReadAuthorizationModelsRequestInterface_Options_Call

type MockSdkClientReadAuthorizationModelsRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientReadAuthorizationModelsRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

type MockSdkClientReadChangesRequestInterface

type MockSdkClientReadChangesRequestInterface struct {
	mock.Mock
}

MockSdkClientReadChangesRequestInterface is an autogenerated mock type for the SdkClientReadChangesRequestInterface type

func NewMockSdkClientReadChangesRequestInterface

func NewMockSdkClientReadChangesRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientReadChangesRequestInterface

NewMockSdkClientReadChangesRequestInterface creates a new instance of MockSdkClientReadChangesRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientReadChangesRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientReadChangesRequestInterface) EXPECT

func (*MockSdkClientReadChangesRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientReadChangesRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientReadChangesRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientReadChangesRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientReadChangesRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientReadChangesRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientReadChangesRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientReadChangesRequestInterface_Body_Call

type MockSdkClientReadChangesRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientReadChangesRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientReadChangesRequestInterface_Body_Call) Run

type MockSdkClientReadChangesRequestInterface_Execute_Call

type MockSdkClientReadChangesRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientReadChangesRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientReadChangesRequestInterface_Execute_Call) Return

func (*MockSdkClientReadChangesRequestInterface_Execute_Call) Run

func (*MockSdkClientReadChangesRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientReadChangesRequestInterface_Expecter

type MockSdkClientReadChangesRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientReadChangesRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body client.ClientReadChangesRequest

func (*MockSdkClientReadChangesRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientReadChangesRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientReadChangesRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientReadChangesRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientReadChangesRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientReadChangesRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientReadChangesOptions

type MockSdkClientReadChangesRequestInterface_GetBody_Call

type MockSdkClientReadChangesRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientReadChangesRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientReadChangesRequestInterface_GetBody_Call) Run

func (*MockSdkClientReadChangesRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientReadChangesRequestInterface_GetContext_Call

type MockSdkClientReadChangesRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientReadChangesRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientReadChangesRequestInterface_GetContext_Call) Return

func (*MockSdkClientReadChangesRequestInterface_GetContext_Call) Run

func (*MockSdkClientReadChangesRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientReadChangesRequestInterface_GetOptions_Call

type MockSdkClientReadChangesRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientReadChangesRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientReadChangesRequestInterface_GetOptions_Call) Run

func (*MockSdkClientReadChangesRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientReadChangesRequestInterface_GetStoreIdOverride_Call

type MockSdkClientReadChangesRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientReadChangesRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientReadChangesRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientReadChangesRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientReadChangesRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientReadChangesRequestInterface_Options_Call

type MockSdkClientReadChangesRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientReadChangesRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientReadChangesRequestInterface_Options_Call) Run

type MockSdkClientReadLatestAuthorizationModelRequestInterface

type MockSdkClientReadLatestAuthorizationModelRequestInterface struct {
	mock.Mock
}

MockSdkClientReadLatestAuthorizationModelRequestInterface is an autogenerated mock type for the SdkClientReadLatestAuthorizationModelRequestInterface type

func NewMockSdkClientReadLatestAuthorizationModelRequestInterface

func NewMockSdkClientReadLatestAuthorizationModelRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientReadLatestAuthorizationModelRequestInterface

NewMockSdkClientReadLatestAuthorizationModelRequestInterface creates a new instance of MockSdkClientReadLatestAuthorizationModelRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface) EXPECT

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface) GetStoreIdOverride

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientReadLatestAuthorizationModelRequestInterface_Execute_Call

type MockSdkClientReadLatestAuthorizationModelRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientReadLatestAuthorizationModelRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_Execute_Call) Run

type MockSdkClientReadLatestAuthorizationModelRequestInterface_Expecter

type MockSdkClientReadLatestAuthorizationModelRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientReadLatestAuthorizationModelOptions

type MockSdkClientReadLatestAuthorizationModelRequestInterface_GetContext_Call

type MockSdkClientReadLatestAuthorizationModelRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientReadLatestAuthorizationModelRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_GetContext_Call) Return

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_GetContext_Call) Run

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientReadLatestAuthorizationModelRequestInterface_GetOptions_Call

type MockSdkClientReadLatestAuthorizationModelRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientReadLatestAuthorizationModelRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_GetOptions_Call) Run

type MockSdkClientReadLatestAuthorizationModelRequestInterface_GetStoreIdOverride_Call

type MockSdkClientReadLatestAuthorizationModelRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientReadLatestAuthorizationModelRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientReadLatestAuthorizationModelRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientReadLatestAuthorizationModelRequestInterface_Options_Call

type MockSdkClientReadLatestAuthorizationModelRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientReadLatestAuthorizationModelRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

type MockSdkClientReadRequestInterface

type MockSdkClientReadRequestInterface struct {
	mock.Mock
}

MockSdkClientReadRequestInterface is an autogenerated mock type for the SdkClientReadRequestInterface type

func NewMockSdkClientReadRequestInterface

func NewMockSdkClientReadRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientReadRequestInterface

NewMockSdkClientReadRequestInterface creates a new instance of MockSdkClientReadRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientReadRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientReadRequestInterface) EXPECT

func (*MockSdkClientReadRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientReadRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientReadRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientReadRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientReadRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientReadRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientReadRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientReadRequestInterface_Body_Call

type MockSdkClientReadRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientReadRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientReadRequestInterface_Body_Call) Run

type MockSdkClientReadRequestInterface_Execute_Call

type MockSdkClientReadRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientReadRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientReadRequestInterface_Execute_Call) Return

func (*MockSdkClientReadRequestInterface_Execute_Call) Run

func (*MockSdkClientReadRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientReadRequestInterface_Expecter

type MockSdkClientReadRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientReadRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body client.ClientReadRequest

func (*MockSdkClientReadRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientReadRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientReadRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientReadRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientReadRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientReadRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientReadOptions

type MockSdkClientReadRequestInterface_GetBody_Call

type MockSdkClientReadRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientReadRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientReadRequestInterface_GetBody_Call) Return

func (*MockSdkClientReadRequestInterface_GetBody_Call) Run

func (*MockSdkClientReadRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientReadRequestInterface_GetContext_Call

type MockSdkClientReadRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientReadRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientReadRequestInterface_GetContext_Call) Return

func (*MockSdkClientReadRequestInterface_GetContext_Call) Run

func (*MockSdkClientReadRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientReadRequestInterface_GetOptions_Call

type MockSdkClientReadRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientReadRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientReadRequestInterface_GetOptions_Call) Return

func (*MockSdkClientReadRequestInterface_GetOptions_Call) Run

func (*MockSdkClientReadRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientReadRequestInterface_GetStoreIdOverride_Call

type MockSdkClientReadRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientReadRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientReadRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientReadRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientReadRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientReadRequestInterface_Options_Call

type MockSdkClientReadRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientReadRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientReadRequestInterface_Options_Call) Run

type MockSdkClientWriteAssertionsRequestInterface

type MockSdkClientWriteAssertionsRequestInterface struct {
	mock.Mock
}

MockSdkClientWriteAssertionsRequestInterface is an autogenerated mock type for the SdkClientWriteAssertionsRequestInterface type

func NewMockSdkClientWriteAssertionsRequestInterface

func NewMockSdkClientWriteAssertionsRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientWriteAssertionsRequestInterface

NewMockSdkClientWriteAssertionsRequestInterface creates a new instance of MockSdkClientWriteAssertionsRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientWriteAssertionsRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientWriteAssertionsRequestInterface) EXPECT

func (*MockSdkClientWriteAssertionsRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientWriteAssertionsRequestInterface) GetAuthorizationModelIdOverride

func (_m *MockSdkClientWriteAssertionsRequestInterface) GetAuthorizationModelIdOverride() *string

GetAuthorizationModelIdOverride provides a mock function with given fields:

func (*MockSdkClientWriteAssertionsRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientWriteAssertionsRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientWriteAssertionsRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientWriteAssertionsRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientWriteAssertionsRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientWriteAssertionsRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientWriteAssertionsRequestInterface_Body_Call

type MockSdkClientWriteAssertionsRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientWriteAssertionsRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientWriteAssertionsRequestInterface_Body_Call) Run

type MockSdkClientWriteAssertionsRequestInterface_Execute_Call

type MockSdkClientWriteAssertionsRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientWriteAssertionsRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientWriteAssertionsRequestInterface_Execute_Call) Run

func (*MockSdkClientWriteAssertionsRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientWriteAssertionsRequestInterface_Expecter

type MockSdkClientWriteAssertionsRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientWriteAssertionsRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body []client.ClientAssertion

func (*MockSdkClientWriteAssertionsRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientWriteAssertionsRequestInterface_Expecter) GetAuthorizationModelIdOverride

GetAuthorizationModelIdOverride is a helper method to define mock.On call

func (*MockSdkClientWriteAssertionsRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientWriteAssertionsRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientWriteAssertionsRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientWriteAssertionsRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientWriteAssertionsRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientWriteAssertionsOptions

type MockSdkClientWriteAssertionsRequestInterface_GetAuthorizationModelIdOverride_Call

type MockSdkClientWriteAssertionsRequestInterface_GetAuthorizationModelIdOverride_Call struct {
	*mock.Call
}

MockSdkClientWriteAssertionsRequestInterface_GetAuthorizationModelIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetAuthorizationModelIdOverride'

func (*MockSdkClientWriteAssertionsRequestInterface_GetAuthorizationModelIdOverride_Call) Return

func (*MockSdkClientWriteAssertionsRequestInterface_GetAuthorizationModelIdOverride_Call) Run

func (*MockSdkClientWriteAssertionsRequestInterface_GetAuthorizationModelIdOverride_Call) RunAndReturn

type MockSdkClientWriteAssertionsRequestInterface_GetBody_Call

type MockSdkClientWriteAssertionsRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientWriteAssertionsRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientWriteAssertionsRequestInterface_GetBody_Call) Return

func (*MockSdkClientWriteAssertionsRequestInterface_GetBody_Call) Run

func (*MockSdkClientWriteAssertionsRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientWriteAssertionsRequestInterface_GetContext_Call

type MockSdkClientWriteAssertionsRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientWriteAssertionsRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientWriteAssertionsRequestInterface_GetContext_Call) Return

func (*MockSdkClientWriteAssertionsRequestInterface_GetContext_Call) Run

func (*MockSdkClientWriteAssertionsRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientWriteAssertionsRequestInterface_GetOptions_Call

type MockSdkClientWriteAssertionsRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientWriteAssertionsRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientWriteAssertionsRequestInterface_GetOptions_Call) Run

func (*MockSdkClientWriteAssertionsRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientWriteAssertionsRequestInterface_GetStoreIdOverride_Call

type MockSdkClientWriteAssertionsRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientWriteAssertionsRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientWriteAssertionsRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientWriteAssertionsRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientWriteAssertionsRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientWriteAssertionsRequestInterface_Options_Call

type MockSdkClientWriteAssertionsRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientWriteAssertionsRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientWriteAssertionsRequestInterface_Options_Call) Run

type MockSdkClientWriteAuthorizationModelRequestInterface

type MockSdkClientWriteAuthorizationModelRequestInterface struct {
	mock.Mock
}

MockSdkClientWriteAuthorizationModelRequestInterface is an autogenerated mock type for the SdkClientWriteAuthorizationModelRequestInterface type

func NewMockSdkClientWriteAuthorizationModelRequestInterface

func NewMockSdkClientWriteAuthorizationModelRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientWriteAuthorizationModelRequestInterface

NewMockSdkClientWriteAuthorizationModelRequestInterface creates a new instance of MockSdkClientWriteAuthorizationModelRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientWriteAuthorizationModelRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientWriteAuthorizationModelRequestInterface) EXPECT

func (*MockSdkClientWriteAuthorizationModelRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientWriteAuthorizationModelRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientWriteAuthorizationModelRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientWriteAuthorizationModelRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientWriteAuthorizationModelRequestInterface) GetStoreIdOverride

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientWriteAuthorizationModelRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientWriteAuthorizationModelRequestInterface_Body_Call

type MockSdkClientWriteAuthorizationModelRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientWriteAuthorizationModelRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

type MockSdkClientWriteAuthorizationModelRequestInterface_Execute_Call

type MockSdkClientWriteAuthorizationModelRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientWriteAuthorizationModelRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientWriteAuthorizationModelRequestInterface_Execute_Call) Run

type MockSdkClientWriteAuthorizationModelRequestInterface_Expecter

type MockSdkClientWriteAuthorizationModelRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientWriteAuthorizationModelRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body openfga.WriteAuthorizationModelRequest

func (*MockSdkClientWriteAuthorizationModelRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientWriteAuthorizationModelRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientWriteAuthorizationModelRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientWriteAuthorizationModelRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientWriteAuthorizationModelRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientWriteAuthorizationModelRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientWriteAuthorizationModelOptions

type MockSdkClientWriteAuthorizationModelRequestInterface_GetBody_Call

type MockSdkClientWriteAuthorizationModelRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientWriteAuthorizationModelRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientWriteAuthorizationModelRequestInterface_GetBody_Call) Run

type MockSdkClientWriteAuthorizationModelRequestInterface_GetContext_Call

type MockSdkClientWriteAuthorizationModelRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientWriteAuthorizationModelRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientWriteAuthorizationModelRequestInterface_GetContext_Call) Return

func (*MockSdkClientWriteAuthorizationModelRequestInterface_GetContext_Call) Run

func (*MockSdkClientWriteAuthorizationModelRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientWriteAuthorizationModelRequestInterface_GetOptions_Call

type MockSdkClientWriteAuthorizationModelRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientWriteAuthorizationModelRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientWriteAuthorizationModelRequestInterface_GetOptions_Call) Run

type MockSdkClientWriteAuthorizationModelRequestInterface_GetStoreIdOverride_Call

type MockSdkClientWriteAuthorizationModelRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientWriteAuthorizationModelRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientWriteAuthorizationModelRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientWriteAuthorizationModelRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientWriteAuthorizationModelRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientWriteAuthorizationModelRequestInterface_Options_Call

type MockSdkClientWriteAuthorizationModelRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientWriteAuthorizationModelRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

type MockSdkClientWriteRequestInterface

type MockSdkClientWriteRequestInterface struct {
	mock.Mock
}

MockSdkClientWriteRequestInterface is an autogenerated mock type for the SdkClientWriteRequestInterface type

func NewMockSdkClientWriteRequestInterface

func NewMockSdkClientWriteRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientWriteRequestInterface

NewMockSdkClientWriteRequestInterface creates a new instance of MockSdkClientWriteRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientWriteRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientWriteRequestInterface) EXPECT

func (*MockSdkClientWriteRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientWriteRequestInterface) GetAuthorizationModelIdOverride

func (_m *MockSdkClientWriteRequestInterface) GetAuthorizationModelIdOverride() *string

GetAuthorizationModelIdOverride provides a mock function with given fields:

func (*MockSdkClientWriteRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientWriteRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientWriteRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientWriteRequestInterface) GetStoreIdOverride

func (_m *MockSdkClientWriteRequestInterface) GetStoreIdOverride() *string

GetStoreIdOverride provides a mock function with given fields:

func (*MockSdkClientWriteRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientWriteRequestInterface_Body_Call

type MockSdkClientWriteRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientWriteRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientWriteRequestInterface_Body_Call) Run

type MockSdkClientWriteRequestInterface_Execute_Call

type MockSdkClientWriteRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientWriteRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientWriteRequestInterface_Execute_Call) Return

func (*MockSdkClientWriteRequestInterface_Execute_Call) Run

func (*MockSdkClientWriteRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientWriteRequestInterface_Expecter

type MockSdkClientWriteRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientWriteRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body client.ClientWriteRequest

func (*MockSdkClientWriteRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientWriteRequestInterface_Expecter) GetAuthorizationModelIdOverride

GetAuthorizationModelIdOverride is a helper method to define mock.On call

func (*MockSdkClientWriteRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientWriteRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientWriteRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientWriteRequestInterface_Expecter) GetStoreIdOverride

GetStoreIdOverride is a helper method to define mock.On call

func (*MockSdkClientWriteRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientWriteOptions

type MockSdkClientWriteRequestInterface_GetAuthorizationModelIdOverride_Call

type MockSdkClientWriteRequestInterface_GetAuthorizationModelIdOverride_Call struct {
	*mock.Call
}

MockSdkClientWriteRequestInterface_GetAuthorizationModelIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetAuthorizationModelIdOverride'

func (*MockSdkClientWriteRequestInterface_GetAuthorizationModelIdOverride_Call) Return

func (*MockSdkClientWriteRequestInterface_GetAuthorizationModelIdOverride_Call) Run

func (*MockSdkClientWriteRequestInterface_GetAuthorizationModelIdOverride_Call) RunAndReturn

type MockSdkClientWriteRequestInterface_GetBody_Call

type MockSdkClientWriteRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientWriteRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientWriteRequestInterface_GetBody_Call) Return

func (*MockSdkClientWriteRequestInterface_GetBody_Call) Run

func (*MockSdkClientWriteRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientWriteRequestInterface_GetContext_Call

type MockSdkClientWriteRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientWriteRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientWriteRequestInterface_GetContext_Call) Return

func (*MockSdkClientWriteRequestInterface_GetContext_Call) Run

func (*MockSdkClientWriteRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientWriteRequestInterface_GetOptions_Call

type MockSdkClientWriteRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientWriteRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientWriteRequestInterface_GetOptions_Call) Return

func (*MockSdkClientWriteRequestInterface_GetOptions_Call) Run

func (*MockSdkClientWriteRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientWriteRequestInterface_GetStoreIdOverride_Call

type MockSdkClientWriteRequestInterface_GetStoreIdOverride_Call struct {
	*mock.Call
}

MockSdkClientWriteRequestInterface_GetStoreIdOverride_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreIdOverride'

func (*MockSdkClientWriteRequestInterface_GetStoreIdOverride_Call) Return

func (*MockSdkClientWriteRequestInterface_GetStoreIdOverride_Call) Run

func (*MockSdkClientWriteRequestInterface_GetStoreIdOverride_Call) RunAndReturn

type MockSdkClientWriteRequestInterface_Options_Call

type MockSdkClientWriteRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientWriteRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientWriteRequestInterface_Options_Call) Run

type MockSdkClientWriteTuplesRequestInterface

type MockSdkClientWriteTuplesRequestInterface struct {
	mock.Mock
}

MockSdkClientWriteTuplesRequestInterface is an autogenerated mock type for the SdkClientWriteTuplesRequestInterface type

func NewMockSdkClientWriteTuplesRequestInterface

func NewMockSdkClientWriteTuplesRequestInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockSdkClientWriteTuplesRequestInterface

NewMockSdkClientWriteTuplesRequestInterface creates a new instance of MockSdkClientWriteTuplesRequestInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockSdkClientWriteTuplesRequestInterface) Body

Body provides a mock function with given fields: body

func (*MockSdkClientWriteTuplesRequestInterface) EXPECT

func (*MockSdkClientWriteTuplesRequestInterface) Execute

Execute provides a mock function with given fields:

func (*MockSdkClientWriteTuplesRequestInterface) GetBody

GetBody provides a mock function with given fields:

func (*MockSdkClientWriteTuplesRequestInterface) GetContext

GetContext provides a mock function with given fields:

func (*MockSdkClientWriteTuplesRequestInterface) GetOptions

GetOptions provides a mock function with given fields:

func (*MockSdkClientWriteTuplesRequestInterface) Options

Options provides a mock function with given fields: options

type MockSdkClientWriteTuplesRequestInterface_Body_Call

type MockSdkClientWriteTuplesRequestInterface_Body_Call struct {
	*mock.Call
}

MockSdkClientWriteTuplesRequestInterface_Body_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Body'

func (*MockSdkClientWriteTuplesRequestInterface_Body_Call) Run

type MockSdkClientWriteTuplesRequestInterface_Execute_Call

type MockSdkClientWriteTuplesRequestInterface_Execute_Call struct {
	*mock.Call
}

MockSdkClientWriteTuplesRequestInterface_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'

func (*MockSdkClientWriteTuplesRequestInterface_Execute_Call) Return

func (*MockSdkClientWriteTuplesRequestInterface_Execute_Call) Run

func (*MockSdkClientWriteTuplesRequestInterface_Execute_Call) RunAndReturn

type MockSdkClientWriteTuplesRequestInterface_Expecter

type MockSdkClientWriteTuplesRequestInterface_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClientWriteTuplesRequestInterface_Expecter) Body

Body is a helper method to define mock.On call

  • body []openfga.TupleKey

func (*MockSdkClientWriteTuplesRequestInterface_Expecter) Execute

Execute is a helper method to define mock.On call

func (*MockSdkClientWriteTuplesRequestInterface_Expecter) GetBody

GetBody is a helper method to define mock.On call

func (*MockSdkClientWriteTuplesRequestInterface_Expecter) GetContext

GetContext is a helper method to define mock.On call

func (*MockSdkClientWriteTuplesRequestInterface_Expecter) GetOptions

GetOptions is a helper method to define mock.On call

func (*MockSdkClientWriteTuplesRequestInterface_Expecter) Options

Options is a helper method to define mock.On call

  • options client.ClientWriteOptions

type MockSdkClientWriteTuplesRequestInterface_GetBody_Call

type MockSdkClientWriteTuplesRequestInterface_GetBody_Call struct {
	*mock.Call
}

MockSdkClientWriteTuplesRequestInterface_GetBody_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBody'

func (*MockSdkClientWriteTuplesRequestInterface_GetBody_Call) Return

func (*MockSdkClientWriteTuplesRequestInterface_GetBody_Call) Run

func (*MockSdkClientWriteTuplesRequestInterface_GetBody_Call) RunAndReturn

type MockSdkClientWriteTuplesRequestInterface_GetContext_Call

type MockSdkClientWriteTuplesRequestInterface_GetContext_Call struct {
	*mock.Call
}

MockSdkClientWriteTuplesRequestInterface_GetContext_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetContext'

func (*MockSdkClientWriteTuplesRequestInterface_GetContext_Call) Return

func (*MockSdkClientWriteTuplesRequestInterface_GetContext_Call) Run

func (*MockSdkClientWriteTuplesRequestInterface_GetContext_Call) RunAndReturn

type MockSdkClientWriteTuplesRequestInterface_GetOptions_Call

type MockSdkClientWriteTuplesRequestInterface_GetOptions_Call struct {
	*mock.Call
}

MockSdkClientWriteTuplesRequestInterface_GetOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetOptions'

func (*MockSdkClientWriteTuplesRequestInterface_GetOptions_Call) Return

func (*MockSdkClientWriteTuplesRequestInterface_GetOptions_Call) Run

func (*MockSdkClientWriteTuplesRequestInterface_GetOptions_Call) RunAndReturn

type MockSdkClientWriteTuplesRequestInterface_Options_Call

type MockSdkClientWriteTuplesRequestInterface_Options_Call struct {
	*mock.Call
}

MockSdkClientWriteTuplesRequestInterface_Options_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Options'

func (*MockSdkClientWriteTuplesRequestInterface_Options_Call) Run

type MockSdkClient_BatchCheckExecute_Call

type MockSdkClient_BatchCheckExecute_Call struct {
	*mock.Call
}

MockSdkClient_BatchCheckExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BatchCheckExecute'

func (*MockSdkClient_BatchCheckExecute_Call) Return

func (*MockSdkClient_BatchCheckExecute_Call) Run

type MockSdkClient_BatchCheck_Call

type MockSdkClient_BatchCheck_Call struct {
	*mock.Call
}

MockSdkClient_BatchCheck_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BatchCheck'

func (*MockSdkClient_BatchCheck_Call) Run

type MockSdkClient_CheckExecute_Call

type MockSdkClient_CheckExecute_Call struct {
	*mock.Call
}

MockSdkClient_CheckExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CheckExecute'

func (*MockSdkClient_CheckExecute_Call) Return

func (*MockSdkClient_CheckExecute_Call) Run

type MockSdkClient_Check_Call

type MockSdkClient_Check_Call struct {
	*mock.Call
}

MockSdkClient_Check_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Check'

func (*MockSdkClient_Check_Call) Return

func (*MockSdkClient_Check_Call) Run

func (*MockSdkClient_Check_Call) RunAndReturn

type MockSdkClient_CreateStoreExecute_Call

type MockSdkClient_CreateStoreExecute_Call struct {
	*mock.Call
}

MockSdkClient_CreateStoreExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CreateStoreExecute'

func (*MockSdkClient_CreateStoreExecute_Call) Return

func (*MockSdkClient_CreateStoreExecute_Call) Run

type MockSdkClient_CreateStore_Call

type MockSdkClient_CreateStore_Call struct {
	*mock.Call
}

MockSdkClient_CreateStore_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CreateStore'

func (*MockSdkClient_CreateStore_Call) Run

type MockSdkClient_DeleteStoreExecute_Call

type MockSdkClient_DeleteStoreExecute_Call struct {
	*mock.Call
}

MockSdkClient_DeleteStoreExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DeleteStoreExecute'

func (*MockSdkClient_DeleteStoreExecute_Call) Return

func (*MockSdkClient_DeleteStoreExecute_Call) Run

type MockSdkClient_DeleteStore_Call

type MockSdkClient_DeleteStore_Call struct {
	*mock.Call
}

MockSdkClient_DeleteStore_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DeleteStore'

func (*MockSdkClient_DeleteStore_Call) Run

type MockSdkClient_DeleteTuplesExecute_Call

type MockSdkClient_DeleteTuplesExecute_Call struct {
	*mock.Call
}

MockSdkClient_DeleteTuplesExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DeleteTuplesExecute'

func (*MockSdkClient_DeleteTuplesExecute_Call) Return

func (*MockSdkClient_DeleteTuplesExecute_Call) Run

type MockSdkClient_DeleteTuples_Call

type MockSdkClient_DeleteTuples_Call struct {
	*mock.Call
}

MockSdkClient_DeleteTuples_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DeleteTuples'

func (*MockSdkClient_DeleteTuples_Call) Run

type MockSdkClient_ExpandExecute_Call

type MockSdkClient_ExpandExecute_Call struct {
	*mock.Call
}

MockSdkClient_ExpandExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ExpandExecute'

func (*MockSdkClient_ExpandExecute_Call) Return

func (*MockSdkClient_ExpandExecute_Call) Run

type MockSdkClient_Expand_Call

type MockSdkClient_Expand_Call struct {
	*mock.Call
}

MockSdkClient_Expand_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Expand'

func (*MockSdkClient_Expand_Call) Return

func (*MockSdkClient_Expand_Call) Run

func (*MockSdkClient_Expand_Call) RunAndReturn

type MockSdkClient_Expecter

type MockSdkClient_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockSdkClient_Expecter) BatchCheck

func (_e *MockSdkClient_Expecter) BatchCheck(ctx interface{}) *MockSdkClient_BatchCheck_Call

BatchCheck is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) BatchCheckExecute

func (_e *MockSdkClient_Expecter) BatchCheckExecute(request interface{}) *MockSdkClient_BatchCheckExecute_Call

BatchCheckExecute is a helper method to define mock.On call

  • request client.SdkClientBatchCheckRequestInterface

func (*MockSdkClient_Expecter) Check

func (_e *MockSdkClient_Expecter) Check(ctx interface{}) *MockSdkClient_Check_Call

Check is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) CheckExecute

func (_e *MockSdkClient_Expecter) CheckExecute(request interface{}) *MockSdkClient_CheckExecute_Call

CheckExecute is a helper method to define mock.On call

  • request client.SdkClientCheckRequestInterface

func (*MockSdkClient_Expecter) CreateStore

func (_e *MockSdkClient_Expecter) CreateStore(ctx interface{}) *MockSdkClient_CreateStore_Call

CreateStore is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) CreateStoreExecute

func (_e *MockSdkClient_Expecter) CreateStoreExecute(request interface{}) *MockSdkClient_CreateStoreExecute_Call

CreateStoreExecute is a helper method to define mock.On call

  • request client.SdkClientCreateStoreRequestInterface

func (*MockSdkClient_Expecter) DeleteStore

func (_e *MockSdkClient_Expecter) DeleteStore(ctx interface{}) *MockSdkClient_DeleteStore_Call

DeleteStore is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) DeleteStoreExecute

func (_e *MockSdkClient_Expecter) DeleteStoreExecute(request interface{}) *MockSdkClient_DeleteStoreExecute_Call

DeleteStoreExecute is a helper method to define mock.On call

  • request client.SdkClientDeleteStoreRequestInterface

func (*MockSdkClient_Expecter) DeleteTuples

func (_e *MockSdkClient_Expecter) DeleteTuples(ctx interface{}) *MockSdkClient_DeleteTuples_Call

DeleteTuples is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) DeleteTuplesExecute

func (_e *MockSdkClient_Expecter) DeleteTuplesExecute(request interface{}) *MockSdkClient_DeleteTuplesExecute_Call

DeleteTuplesExecute is a helper method to define mock.On call

  • request client.SdkClientDeleteTuplesRequestInterface

func (*MockSdkClient_Expecter) Expand

func (_e *MockSdkClient_Expecter) Expand(ctx interface{}) *MockSdkClient_Expand_Call

Expand is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) ExpandExecute

func (_e *MockSdkClient_Expecter) ExpandExecute(request interface{}) *MockSdkClient_ExpandExecute_Call

ExpandExecute is a helper method to define mock.On call

  • request client.SdkClientExpandRequestInterface

func (*MockSdkClient_Expecter) GetStore

func (_e *MockSdkClient_Expecter) GetStore(ctx interface{}) *MockSdkClient_GetStore_Call

GetStore is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) GetStoreExecute

func (_e *MockSdkClient_Expecter) GetStoreExecute(request interface{}) *MockSdkClient_GetStoreExecute_Call

GetStoreExecute is a helper method to define mock.On call

  • request client.SdkClientGetStoreRequestInterface

func (*MockSdkClient_Expecter) ListObjects

func (_e *MockSdkClient_Expecter) ListObjects(ctx interface{}) *MockSdkClient_ListObjects_Call

ListObjects is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) ListObjectsExecute

func (_e *MockSdkClient_Expecter) ListObjectsExecute(request interface{}) *MockSdkClient_ListObjectsExecute_Call

ListObjectsExecute is a helper method to define mock.On call

  • request client.SdkClientListObjectsRequestInterface

func (*MockSdkClient_Expecter) ListRelations

func (_e *MockSdkClient_Expecter) ListRelations(ctx interface{}) *MockSdkClient_ListRelations_Call

ListRelations is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) ListRelationsExecute

func (_e *MockSdkClient_Expecter) ListRelationsExecute(request interface{}) *MockSdkClient_ListRelationsExecute_Call

ListRelationsExecute is a helper method to define mock.On call

  • request client.SdkClientListRelationsRequestInterface

func (*MockSdkClient_Expecter) ListStores

func (_e *MockSdkClient_Expecter) ListStores(ctx interface{}) *MockSdkClient_ListStores_Call

ListStores is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) ListStoresExecute

func (_e *MockSdkClient_Expecter) ListStoresExecute(request interface{}) *MockSdkClient_ListStoresExecute_Call

ListStoresExecute is a helper method to define mock.On call

  • request client.SdkClientListStoresRequestInterface

func (*MockSdkClient_Expecter) ListUsers

func (_e *MockSdkClient_Expecter) ListUsers(ctx interface{}) *MockSdkClient_ListUsers_Call

ListUsers is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) ListUsersExecute

func (_e *MockSdkClient_Expecter) ListUsersExecute(r interface{}) *MockSdkClient_ListUsersExecute_Call

ListUsersExecute is a helper method to define mock.On call

  • r client.SdkClientListUsersRequestInterface

func (*MockSdkClient_Expecter) Read

func (_e *MockSdkClient_Expecter) Read(ctx interface{}) *MockSdkClient_Read_Call

Read is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) ReadAssertions

func (_e *MockSdkClient_Expecter) ReadAssertions(ctx interface{}) *MockSdkClient_ReadAssertions_Call

ReadAssertions is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) ReadAssertionsExecute

func (_e *MockSdkClient_Expecter) ReadAssertionsExecute(request interface{}) *MockSdkClient_ReadAssertionsExecute_Call

ReadAssertionsExecute is a helper method to define mock.On call

  • request client.SdkClientReadAssertionsRequestInterface

func (*MockSdkClient_Expecter) ReadAuthorizationModel

func (_e *MockSdkClient_Expecter) ReadAuthorizationModel(ctx interface{}) *MockSdkClient_ReadAuthorizationModel_Call

ReadAuthorizationModel is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) ReadAuthorizationModelExecute

func (_e *MockSdkClient_Expecter) ReadAuthorizationModelExecute(request interface{}) *MockSdkClient_ReadAuthorizationModelExecute_Call

ReadAuthorizationModelExecute is a helper method to define mock.On call

  • request client.SdkClientReadAuthorizationModelRequestInterface

func (*MockSdkClient_Expecter) ReadAuthorizationModels

func (_e *MockSdkClient_Expecter) ReadAuthorizationModels(ctx interface{}) *MockSdkClient_ReadAuthorizationModels_Call

ReadAuthorizationModels is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) ReadAuthorizationModelsExecute

func (_e *MockSdkClient_Expecter) ReadAuthorizationModelsExecute(request interface{}) *MockSdkClient_ReadAuthorizationModelsExecute_Call

ReadAuthorizationModelsExecute is a helper method to define mock.On call

  • request client.SdkClientReadAuthorizationModelsRequestInterface

func (*MockSdkClient_Expecter) ReadChanges

func (_e *MockSdkClient_Expecter) ReadChanges(ctx interface{}) *MockSdkClient_ReadChanges_Call

ReadChanges is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) ReadChangesExecute

func (_e *MockSdkClient_Expecter) ReadChangesExecute(request interface{}) *MockSdkClient_ReadChangesExecute_Call

ReadChangesExecute is a helper method to define mock.On call

  • request client.SdkClientReadChangesRequestInterface

func (*MockSdkClient_Expecter) ReadExecute

func (_e *MockSdkClient_Expecter) ReadExecute(request interface{}) *MockSdkClient_ReadExecute_Call

ReadExecute is a helper method to define mock.On call

  • request client.SdkClientReadRequestInterface

func (*MockSdkClient_Expecter) ReadLatestAuthorizationModel

func (_e *MockSdkClient_Expecter) ReadLatestAuthorizationModel(ctx interface{}) *MockSdkClient_ReadLatestAuthorizationModel_Call

ReadLatestAuthorizationModel is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) ReadLatestAuthorizationModelExecute

func (_e *MockSdkClient_Expecter) ReadLatestAuthorizationModelExecute(request interface{}) *MockSdkClient_ReadLatestAuthorizationModelExecute_Call

ReadLatestAuthorizationModelExecute is a helper method to define mock.On call

  • request client.SdkClientReadLatestAuthorizationModelRequestInterface

func (*MockSdkClient_Expecter) Write

func (_e *MockSdkClient_Expecter) Write(ctx interface{}) *MockSdkClient_Write_Call

Write is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) WriteAssertions

func (_e *MockSdkClient_Expecter) WriteAssertions(ctx interface{}) *MockSdkClient_WriteAssertions_Call

WriteAssertions is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) WriteAssertionsExecute

func (_e *MockSdkClient_Expecter) WriteAssertionsExecute(request interface{}) *MockSdkClient_WriteAssertionsExecute_Call

WriteAssertionsExecute is a helper method to define mock.On call

  • request client.SdkClientWriteAssertionsRequestInterface

func (*MockSdkClient_Expecter) WriteAuthorizationModel

func (_e *MockSdkClient_Expecter) WriteAuthorizationModel(ctx interface{}) *MockSdkClient_WriteAuthorizationModel_Call

WriteAuthorizationModel is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) WriteAuthorizationModelExecute

func (_e *MockSdkClient_Expecter) WriteAuthorizationModelExecute(request interface{}) *MockSdkClient_WriteAuthorizationModelExecute_Call

WriteAuthorizationModelExecute is a helper method to define mock.On call

  • request client.SdkClientWriteAuthorizationModelRequestInterface

func (*MockSdkClient_Expecter) WriteExecute

func (_e *MockSdkClient_Expecter) WriteExecute(request interface{}) *MockSdkClient_WriteExecute_Call

WriteExecute is a helper method to define mock.On call

  • request client.SdkClientWriteRequestInterface

func (*MockSdkClient_Expecter) WriteTuples

func (_e *MockSdkClient_Expecter) WriteTuples(ctx interface{}) *MockSdkClient_WriteTuples_Call

WriteTuples is a helper method to define mock.On call

  • ctx context.Context

func (*MockSdkClient_Expecter) WriteTuplesExecute

func (_e *MockSdkClient_Expecter) WriteTuplesExecute(request interface{}) *MockSdkClient_WriteTuplesExecute_Call

WriteTuplesExecute is a helper method to define mock.On call

  • request client.SdkClientWriteTuplesRequestInterface

type MockSdkClient_GetStoreExecute_Call

type MockSdkClient_GetStoreExecute_Call struct {
	*mock.Call
}

MockSdkClient_GetStoreExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStoreExecute'

func (*MockSdkClient_GetStoreExecute_Call) Return

func (*MockSdkClient_GetStoreExecute_Call) Run

type MockSdkClient_GetStore_Call

type MockSdkClient_GetStore_Call struct {
	*mock.Call
}

MockSdkClient_GetStore_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStore'

func (*MockSdkClient_GetStore_Call) Run

func (*MockSdkClient_GetStore_Call) RunAndReturn

type MockSdkClient_ListObjectsExecute_Call

type MockSdkClient_ListObjectsExecute_Call struct {
	*mock.Call
}

MockSdkClient_ListObjectsExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListObjectsExecute'

func (*MockSdkClient_ListObjectsExecute_Call) Return

func (*MockSdkClient_ListObjectsExecute_Call) Run

type MockSdkClient_ListObjects_Call

type MockSdkClient_ListObjects_Call struct {
	*mock.Call
}

MockSdkClient_ListObjects_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListObjects'

func (*MockSdkClient_ListObjects_Call) Run

type MockSdkClient_ListRelationsExecute_Call

type MockSdkClient_ListRelationsExecute_Call struct {
	*mock.Call
}

MockSdkClient_ListRelationsExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListRelationsExecute'

func (*MockSdkClient_ListRelationsExecute_Call) Return

func (*MockSdkClient_ListRelationsExecute_Call) Run

type MockSdkClient_ListRelations_Call

type MockSdkClient_ListRelations_Call struct {
	*mock.Call
}

MockSdkClient_ListRelations_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListRelations'

func (*MockSdkClient_ListRelations_Call) Run

type MockSdkClient_ListStoresExecute_Call

type MockSdkClient_ListStoresExecute_Call struct {
	*mock.Call
}

MockSdkClient_ListStoresExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListStoresExecute'

func (*MockSdkClient_ListStoresExecute_Call) Return

func (*MockSdkClient_ListStoresExecute_Call) Run

type MockSdkClient_ListStores_Call

type MockSdkClient_ListStores_Call struct {
	*mock.Call
}

MockSdkClient_ListStores_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListStores'

func (*MockSdkClient_ListStores_Call) Run

type MockSdkClient_ListUsersExecute_Call

type MockSdkClient_ListUsersExecute_Call struct {
	*mock.Call
}

MockSdkClient_ListUsersExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListUsersExecute'

func (*MockSdkClient_ListUsersExecute_Call) Return

func (*MockSdkClient_ListUsersExecute_Call) Run

type MockSdkClient_ListUsers_Call

type MockSdkClient_ListUsers_Call struct {
	*mock.Call
}

MockSdkClient_ListUsers_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListUsers'

func (*MockSdkClient_ListUsers_Call) Run

type MockSdkClient_ReadAssertionsExecute_Call

type MockSdkClient_ReadAssertionsExecute_Call struct {
	*mock.Call
}

MockSdkClient_ReadAssertionsExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReadAssertionsExecute'

func (*MockSdkClient_ReadAssertionsExecute_Call) Return

func (*MockSdkClient_ReadAssertionsExecute_Call) Run

type MockSdkClient_ReadAssertions_Call

type MockSdkClient_ReadAssertions_Call struct {
	*mock.Call
}

MockSdkClient_ReadAssertions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReadAssertions'

func (*MockSdkClient_ReadAssertions_Call) Run

type MockSdkClient_ReadAuthorizationModelExecute_Call

type MockSdkClient_ReadAuthorizationModelExecute_Call struct {
	*mock.Call
}

MockSdkClient_ReadAuthorizationModelExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReadAuthorizationModelExecute'

type MockSdkClient_ReadAuthorizationModel_Call

type MockSdkClient_ReadAuthorizationModel_Call struct {
	*mock.Call
}

MockSdkClient_ReadAuthorizationModel_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReadAuthorizationModel'

func (*MockSdkClient_ReadAuthorizationModel_Call) Run

type MockSdkClient_ReadAuthorizationModelsExecute_Call

type MockSdkClient_ReadAuthorizationModelsExecute_Call struct {
	*mock.Call
}

MockSdkClient_ReadAuthorizationModelsExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReadAuthorizationModelsExecute'

type MockSdkClient_ReadAuthorizationModels_Call

type MockSdkClient_ReadAuthorizationModels_Call struct {
	*mock.Call
}

MockSdkClient_ReadAuthorizationModels_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReadAuthorizationModels'

func (*MockSdkClient_ReadAuthorizationModels_Call) Run

type MockSdkClient_ReadChangesExecute_Call

type MockSdkClient_ReadChangesExecute_Call struct {
	*mock.Call
}

MockSdkClient_ReadChangesExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReadChangesExecute'

func (*MockSdkClient_ReadChangesExecute_Call) Return

func (*MockSdkClient_ReadChangesExecute_Call) Run

type MockSdkClient_ReadChanges_Call

type MockSdkClient_ReadChanges_Call struct {
	*mock.Call
}

MockSdkClient_ReadChanges_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReadChanges'

func (*MockSdkClient_ReadChanges_Call) Run

type MockSdkClient_ReadExecute_Call

type MockSdkClient_ReadExecute_Call struct {
	*mock.Call
}

MockSdkClient_ReadExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReadExecute'

func (*MockSdkClient_ReadExecute_Call) Return

func (*MockSdkClient_ReadExecute_Call) Run

func (*MockSdkClient_ReadExecute_Call) RunAndReturn

type MockSdkClient_ReadLatestAuthorizationModelExecute_Call

type MockSdkClient_ReadLatestAuthorizationModelExecute_Call struct {
	*mock.Call
}

MockSdkClient_ReadLatestAuthorizationModelExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReadLatestAuthorizationModelExecute'

type MockSdkClient_ReadLatestAuthorizationModel_Call

type MockSdkClient_ReadLatestAuthorizationModel_Call struct {
	*mock.Call
}

MockSdkClient_ReadLatestAuthorizationModel_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReadLatestAuthorizationModel'

func (*MockSdkClient_ReadLatestAuthorizationModel_Call) Run

type MockSdkClient_Read_Call

type MockSdkClient_Read_Call struct {
	*mock.Call
}

MockSdkClient_Read_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Read'

func (*MockSdkClient_Read_Call) Return

func (*MockSdkClient_Read_Call) Run

func (*MockSdkClient_Read_Call) RunAndReturn

type MockSdkClient_WriteAssertionsExecute_Call

type MockSdkClient_WriteAssertionsExecute_Call struct {
	*mock.Call
}

MockSdkClient_WriteAssertionsExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WriteAssertionsExecute'

func (*MockSdkClient_WriteAssertionsExecute_Call) Return

func (*MockSdkClient_WriteAssertionsExecute_Call) Run

type MockSdkClient_WriteAssertions_Call

type MockSdkClient_WriteAssertions_Call struct {
	*mock.Call
}

MockSdkClient_WriteAssertions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WriteAssertions'

func (*MockSdkClient_WriteAssertions_Call) Run

type MockSdkClient_WriteAuthorizationModelExecute_Call

type MockSdkClient_WriteAuthorizationModelExecute_Call struct {
	*mock.Call
}

MockSdkClient_WriteAuthorizationModelExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WriteAuthorizationModelExecute'

type MockSdkClient_WriteAuthorizationModel_Call

type MockSdkClient_WriteAuthorizationModel_Call struct {
	*mock.Call
}

MockSdkClient_WriteAuthorizationModel_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WriteAuthorizationModel'

func (*MockSdkClient_WriteAuthorizationModel_Call) Run

type MockSdkClient_WriteExecute_Call

type MockSdkClient_WriteExecute_Call struct {
	*mock.Call
}

MockSdkClient_WriteExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WriteExecute'

func (*MockSdkClient_WriteExecute_Call) Return

func (*MockSdkClient_WriteExecute_Call) Run

type MockSdkClient_WriteTuplesExecute_Call

type MockSdkClient_WriteTuplesExecute_Call struct {
	*mock.Call
}

MockSdkClient_WriteTuplesExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WriteTuplesExecute'

func (*MockSdkClient_WriteTuplesExecute_Call) Return

func (*MockSdkClient_WriteTuplesExecute_Call) Run

type MockSdkClient_WriteTuples_Call

type MockSdkClient_WriteTuples_Call struct {
	*mock.Call
}

MockSdkClient_WriteTuples_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WriteTuples'

func (*MockSdkClient_WriteTuples_Call) Run

type MockSdkClient_Write_Call

type MockSdkClient_Write_Call struct {
	*mock.Call
}

MockSdkClient_Write_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Write'

func (*MockSdkClient_Write_Call) Return

func (*MockSdkClient_Write_Call) Run

func (*MockSdkClient_Write_Call) RunAndReturn

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL