mocks

package
v1.15.2 Latest Latest
Warning

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

Go to latest
Published: Apr 17, 2025 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ExecutionInterface added in v1.15.0

type ExecutionInterface struct {
	mock.Mock
}

ExecutionInterface is an autogenerated mock type for the ExecutionInterface type

func NewExecutionInterface added in v1.15.0

func NewExecutionInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *ExecutionInterface

NewExecutionInterface creates a new instance of ExecutionInterface. 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 (*ExecutionInterface) CreateExecution added in v1.15.0

func (_m *ExecutionInterface) CreateExecution(ctx context.Context, request *admin.ExecutionCreateRequest, requestedAt time.Time) (*admin.ExecutionCreateResponse, error)

CreateExecution provides a mock function with given fields: ctx, request, requestedAt

func (*ExecutionInterface) CreateWorkflowEvent added in v1.15.0

CreateWorkflowEvent provides a mock function with given fields: ctx, request

func (*ExecutionInterface) EXPECT added in v1.15.0

func (*ExecutionInterface) GetExecution added in v1.15.0

GetExecution provides a mock function with given fields: ctx, request

func (*ExecutionInterface) GetExecutionData added in v1.15.0

GetExecutionData provides a mock function with given fields: ctx, request

func (*ExecutionInterface) ListExecutions added in v1.15.0

func (_m *ExecutionInterface) ListExecutions(ctx context.Context, request *admin.ResourceListRequest) (*admin.ExecutionList, error)

ListExecutions provides a mock function with given fields: ctx, request

func (*ExecutionInterface) RecoverExecution added in v1.15.0

func (_m *ExecutionInterface) RecoverExecution(ctx context.Context, request *admin.ExecutionRecoverRequest, requestedAt time.Time) (*admin.ExecutionCreateResponse, error)

RecoverExecution provides a mock function with given fields: ctx, request, requestedAt

func (*ExecutionInterface) RelaunchExecution added in v1.15.0

func (_m *ExecutionInterface) RelaunchExecution(ctx context.Context, request *admin.ExecutionRelaunchRequest, requestedAt time.Time) (*admin.ExecutionCreateResponse, error)

RelaunchExecution provides a mock function with given fields: ctx, request, requestedAt

func (*ExecutionInterface) TerminateExecution added in v1.15.0

TerminateExecution provides a mock function with given fields: ctx, request

func (*ExecutionInterface) UpdateExecution added in v1.15.0

func (_m *ExecutionInterface) UpdateExecution(ctx context.Context, request *admin.ExecutionUpdateRequest, requestedAt time.Time) (*admin.ExecutionUpdateResponse, error)

UpdateExecution provides a mock function with given fields: ctx, request, requestedAt

type ExecutionInterface_CreateExecution_Call added in v1.15.0

type ExecutionInterface_CreateExecution_Call struct {
	*mock.Call
}

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

func (*ExecutionInterface_CreateExecution_Call) Return added in v1.15.0

func (*ExecutionInterface_CreateExecution_Call) Run added in v1.15.0

func (*ExecutionInterface_CreateExecution_Call) RunAndReturn added in v1.15.0

type ExecutionInterface_CreateWorkflowEvent_Call added in v1.15.0

type ExecutionInterface_CreateWorkflowEvent_Call struct {
	*mock.Call
}

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

func (*ExecutionInterface_CreateWorkflowEvent_Call) Return added in v1.15.0

func (*ExecutionInterface_CreateWorkflowEvent_Call) Run added in v1.15.0

type ExecutionInterface_Expecter added in v1.15.0

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

func (*ExecutionInterface_Expecter) CreateExecution added in v1.15.0

func (_e *ExecutionInterface_Expecter) CreateExecution(ctx interface{}, request interface{}, requestedAt interface{}) *ExecutionInterface_CreateExecution_Call

CreateExecution is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ExecutionCreateRequest
  • requestedAt time.Time

func (*ExecutionInterface_Expecter) CreateWorkflowEvent added in v1.15.0

func (_e *ExecutionInterface_Expecter) CreateWorkflowEvent(ctx interface{}, request interface{}) *ExecutionInterface_CreateWorkflowEvent_Call

CreateWorkflowEvent is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.WorkflowExecutionEventRequest

func (*ExecutionInterface_Expecter) GetExecution added in v1.15.0

func (_e *ExecutionInterface_Expecter) GetExecution(ctx interface{}, request interface{}) *ExecutionInterface_GetExecution_Call

GetExecution is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.WorkflowExecutionGetRequest

func (*ExecutionInterface_Expecter) GetExecutionData added in v1.15.0

func (_e *ExecutionInterface_Expecter) GetExecutionData(ctx interface{}, request interface{}) *ExecutionInterface_GetExecutionData_Call

GetExecutionData is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.WorkflowExecutionGetDataRequest

func (*ExecutionInterface_Expecter) ListExecutions added in v1.15.0

func (_e *ExecutionInterface_Expecter) ListExecutions(ctx interface{}, request interface{}) *ExecutionInterface_ListExecutions_Call

ListExecutions is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ResourceListRequest

func (*ExecutionInterface_Expecter) RecoverExecution added in v1.15.0

func (_e *ExecutionInterface_Expecter) RecoverExecution(ctx interface{}, request interface{}, requestedAt interface{}) *ExecutionInterface_RecoverExecution_Call

RecoverExecution is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ExecutionRecoverRequest
  • requestedAt time.Time

func (*ExecutionInterface_Expecter) RelaunchExecution added in v1.15.0

func (_e *ExecutionInterface_Expecter) RelaunchExecution(ctx interface{}, request interface{}, requestedAt interface{}) *ExecutionInterface_RelaunchExecution_Call

RelaunchExecution is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ExecutionRelaunchRequest
  • requestedAt time.Time

func (*ExecutionInterface_Expecter) TerminateExecution added in v1.15.0

func (_e *ExecutionInterface_Expecter) TerminateExecution(ctx interface{}, request interface{}) *ExecutionInterface_TerminateExecution_Call

TerminateExecution is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ExecutionTerminateRequest

func (*ExecutionInterface_Expecter) UpdateExecution added in v1.15.0

func (_e *ExecutionInterface_Expecter) UpdateExecution(ctx interface{}, request interface{}, requestedAt interface{}) *ExecutionInterface_UpdateExecution_Call

UpdateExecution is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ExecutionUpdateRequest
  • requestedAt time.Time

type ExecutionInterface_GetExecutionData_Call added in v1.15.0

type ExecutionInterface_GetExecutionData_Call struct {
	*mock.Call
}

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

func (*ExecutionInterface_GetExecutionData_Call) Return added in v1.15.0

func (*ExecutionInterface_GetExecutionData_Call) Run added in v1.15.0

type ExecutionInterface_GetExecution_Call added in v1.15.0

type ExecutionInterface_GetExecution_Call struct {
	*mock.Call
}

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

func (*ExecutionInterface_GetExecution_Call) Return added in v1.15.0

func (*ExecutionInterface_GetExecution_Call) Run added in v1.15.0

func (*ExecutionInterface_GetExecution_Call) RunAndReturn added in v1.15.0

type ExecutionInterface_ListExecutions_Call added in v1.15.0

type ExecutionInterface_ListExecutions_Call struct {
	*mock.Call
}

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

func (*ExecutionInterface_ListExecutions_Call) Return added in v1.15.0

func (*ExecutionInterface_ListExecutions_Call) Run added in v1.15.0

func (*ExecutionInterface_ListExecutions_Call) RunAndReturn added in v1.15.0

type ExecutionInterface_RecoverExecution_Call added in v1.15.0

type ExecutionInterface_RecoverExecution_Call struct {
	*mock.Call
}

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

func (*ExecutionInterface_RecoverExecution_Call) Return added in v1.15.0

func (*ExecutionInterface_RecoverExecution_Call) Run added in v1.15.0

func (*ExecutionInterface_RecoverExecution_Call) RunAndReturn added in v1.15.0

type ExecutionInterface_RelaunchExecution_Call added in v1.15.0

type ExecutionInterface_RelaunchExecution_Call struct {
	*mock.Call
}

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

func (*ExecutionInterface_RelaunchExecution_Call) Return added in v1.15.0

func (*ExecutionInterface_RelaunchExecution_Call) Run added in v1.15.0

func (*ExecutionInterface_RelaunchExecution_Call) RunAndReturn added in v1.15.0

type ExecutionInterface_TerminateExecution_Call added in v1.15.0

type ExecutionInterface_TerminateExecution_Call struct {
	*mock.Call
}

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

func (*ExecutionInterface_TerminateExecution_Call) Return added in v1.15.0

func (*ExecutionInterface_TerminateExecution_Call) Run added in v1.15.0

func (*ExecutionInterface_TerminateExecution_Call) RunAndReturn added in v1.15.0

type ExecutionInterface_UpdateExecution_Call added in v1.15.0

type ExecutionInterface_UpdateExecution_Call struct {
	*mock.Call
}

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

func (*ExecutionInterface_UpdateExecution_Call) Return added in v1.15.0

func (*ExecutionInterface_UpdateExecution_Call) Run added in v1.15.0

func (*ExecutionInterface_UpdateExecution_Call) RunAndReturn added in v1.15.0

type LaunchPlanInterface added in v1.15.0

type LaunchPlanInterface struct {
	mock.Mock
}

LaunchPlanInterface is an autogenerated mock type for the LaunchPlanInterface type

func NewLaunchPlanInterface added in v1.15.0

func NewLaunchPlanInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *LaunchPlanInterface

NewLaunchPlanInterface creates a new instance of LaunchPlanInterface. 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 (*LaunchPlanInterface) CreateLaunchPlan added in v1.15.0

CreateLaunchPlan provides a mock function with given fields: ctx, request

func (*LaunchPlanInterface) EXPECT added in v1.15.0

func (*LaunchPlanInterface) GetActiveLaunchPlan added in v1.15.0

func (_m *LaunchPlanInterface) GetActiveLaunchPlan(ctx context.Context, request *admin.ActiveLaunchPlanRequest) (*admin.LaunchPlan, error)

GetActiveLaunchPlan provides a mock function with given fields: ctx, request

func (*LaunchPlanInterface) GetLaunchPlan added in v1.15.0

func (_m *LaunchPlanInterface) GetLaunchPlan(ctx context.Context, request *admin.ObjectGetRequest) (*admin.LaunchPlan, error)

GetLaunchPlan provides a mock function with given fields: ctx, request

func (*LaunchPlanInterface) ListActiveLaunchPlans added in v1.15.0

func (_m *LaunchPlanInterface) ListActiveLaunchPlans(ctx context.Context, request *admin.ActiveLaunchPlanListRequest) (*admin.LaunchPlanList, error)

ListActiveLaunchPlans provides a mock function with given fields: ctx, request

func (*LaunchPlanInterface) ListLaunchPlanIds added in v1.15.0

ListLaunchPlanIds provides a mock function with given fields: ctx, request

func (*LaunchPlanInterface) ListLaunchPlans added in v1.15.0

func (_m *LaunchPlanInterface) ListLaunchPlans(ctx context.Context, request *admin.ResourceListRequest) (*admin.LaunchPlanList, error)

ListLaunchPlans provides a mock function with given fields: ctx, request

func (*LaunchPlanInterface) UpdateLaunchPlan added in v1.15.0

UpdateLaunchPlan provides a mock function with given fields: ctx, request

type LaunchPlanInterface_CreateLaunchPlan_Call added in v1.15.0

type LaunchPlanInterface_CreateLaunchPlan_Call struct {
	*mock.Call
}

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

func (*LaunchPlanInterface_CreateLaunchPlan_Call) Return added in v1.15.0

func (*LaunchPlanInterface_CreateLaunchPlan_Call) Run added in v1.15.0

func (*LaunchPlanInterface_CreateLaunchPlan_Call) RunAndReturn added in v1.15.0

type LaunchPlanInterface_Expecter added in v1.15.0

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

func (*LaunchPlanInterface_Expecter) CreateLaunchPlan added in v1.15.0

func (_e *LaunchPlanInterface_Expecter) CreateLaunchPlan(ctx interface{}, request interface{}) *LaunchPlanInterface_CreateLaunchPlan_Call

CreateLaunchPlan is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.LaunchPlanCreateRequest

func (*LaunchPlanInterface_Expecter) GetActiveLaunchPlan added in v1.15.0

func (_e *LaunchPlanInterface_Expecter) GetActiveLaunchPlan(ctx interface{}, request interface{}) *LaunchPlanInterface_GetActiveLaunchPlan_Call

GetActiveLaunchPlan is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ActiveLaunchPlanRequest

func (*LaunchPlanInterface_Expecter) GetLaunchPlan added in v1.15.0

func (_e *LaunchPlanInterface_Expecter) GetLaunchPlan(ctx interface{}, request interface{}) *LaunchPlanInterface_GetLaunchPlan_Call

GetLaunchPlan is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ObjectGetRequest

func (*LaunchPlanInterface_Expecter) ListActiveLaunchPlans added in v1.15.0

func (_e *LaunchPlanInterface_Expecter) ListActiveLaunchPlans(ctx interface{}, request interface{}) *LaunchPlanInterface_ListActiveLaunchPlans_Call

ListActiveLaunchPlans is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ActiveLaunchPlanListRequest

func (*LaunchPlanInterface_Expecter) ListLaunchPlanIds added in v1.15.0

func (_e *LaunchPlanInterface_Expecter) ListLaunchPlanIds(ctx interface{}, request interface{}) *LaunchPlanInterface_ListLaunchPlanIds_Call

ListLaunchPlanIds is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.NamedEntityIdentifierListRequest

func (*LaunchPlanInterface_Expecter) ListLaunchPlans added in v1.15.0

func (_e *LaunchPlanInterface_Expecter) ListLaunchPlans(ctx interface{}, request interface{}) *LaunchPlanInterface_ListLaunchPlans_Call

ListLaunchPlans is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ResourceListRequest

func (*LaunchPlanInterface_Expecter) UpdateLaunchPlan added in v1.15.0

func (_e *LaunchPlanInterface_Expecter) UpdateLaunchPlan(ctx interface{}, request interface{}) *LaunchPlanInterface_UpdateLaunchPlan_Call

UpdateLaunchPlan is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.LaunchPlanUpdateRequest

type LaunchPlanInterface_GetActiveLaunchPlan_Call added in v1.15.0

type LaunchPlanInterface_GetActiveLaunchPlan_Call struct {
	*mock.Call
}

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

func (*LaunchPlanInterface_GetActiveLaunchPlan_Call) Return added in v1.15.0

func (*LaunchPlanInterface_GetActiveLaunchPlan_Call) Run added in v1.15.0

func (*LaunchPlanInterface_GetActiveLaunchPlan_Call) RunAndReturn added in v1.15.0

type LaunchPlanInterface_GetLaunchPlan_Call added in v1.15.0

type LaunchPlanInterface_GetLaunchPlan_Call struct {
	*mock.Call
}

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

func (*LaunchPlanInterface_GetLaunchPlan_Call) Return added in v1.15.0

func (*LaunchPlanInterface_GetLaunchPlan_Call) Run added in v1.15.0

func (*LaunchPlanInterface_GetLaunchPlan_Call) RunAndReturn added in v1.15.0

type LaunchPlanInterface_ListActiveLaunchPlans_Call added in v1.15.0

type LaunchPlanInterface_ListActiveLaunchPlans_Call struct {
	*mock.Call
}

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

func (*LaunchPlanInterface_ListActiveLaunchPlans_Call) Return added in v1.15.0

func (*LaunchPlanInterface_ListActiveLaunchPlans_Call) Run added in v1.15.0

func (*LaunchPlanInterface_ListActiveLaunchPlans_Call) RunAndReturn added in v1.15.0

type LaunchPlanInterface_ListLaunchPlanIds_Call added in v1.15.0

type LaunchPlanInterface_ListLaunchPlanIds_Call struct {
	*mock.Call
}

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

func (*LaunchPlanInterface_ListLaunchPlanIds_Call) Return added in v1.15.0

func (*LaunchPlanInterface_ListLaunchPlanIds_Call) Run added in v1.15.0

type LaunchPlanInterface_ListLaunchPlans_Call added in v1.15.0

type LaunchPlanInterface_ListLaunchPlans_Call struct {
	*mock.Call
}

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

func (*LaunchPlanInterface_ListLaunchPlans_Call) Return added in v1.15.0

func (*LaunchPlanInterface_ListLaunchPlans_Call) Run added in v1.15.0

func (*LaunchPlanInterface_ListLaunchPlans_Call) RunAndReturn added in v1.15.0

type LaunchPlanInterface_UpdateLaunchPlan_Call added in v1.15.0

type LaunchPlanInterface_UpdateLaunchPlan_Call struct {
	*mock.Call
}

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

func (*LaunchPlanInterface_UpdateLaunchPlan_Call) Return added in v1.15.0

func (*LaunchPlanInterface_UpdateLaunchPlan_Call) Run added in v1.15.0

func (*LaunchPlanInterface_UpdateLaunchPlan_Call) RunAndReturn added in v1.15.0

type MetricsInterface

type MetricsInterface struct {
	mock.Mock
}

MetricsInterface is an autogenerated mock type for the MetricsInterface type

func NewMetricsInterface added in v1.15.1

func NewMetricsInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MetricsInterface

NewMetricsInterface creates a new instance of MetricsInterface. 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 (*MetricsInterface) EXPECT added in v1.15.1

func (*MetricsInterface) GetExecutionMetrics

GetExecutionMetrics provides a mock function with given fields: ctx, request

type MetricsInterface_Expecter added in v1.15.1

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

func (*MetricsInterface_Expecter) GetExecutionMetrics added in v1.15.1

func (_e *MetricsInterface_Expecter) GetExecutionMetrics(ctx interface{}, request interface{}) *MetricsInterface_GetExecutionMetrics_Call

GetExecutionMetrics is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.WorkflowExecutionGetMetricsRequest

type MetricsInterface_GetExecutionMetrics_Call added in v1.15.1

type MetricsInterface_GetExecutionMetrics_Call struct {
	*mock.Call
}

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

func (*MetricsInterface_GetExecutionMetrics_Call) Return added in v1.15.1

func (*MetricsInterface_GetExecutionMetrics_Call) Run added in v1.15.1

type NamedEntityInterface added in v1.15.0

type NamedEntityInterface struct {
	mock.Mock
}

NamedEntityInterface is an autogenerated mock type for the NamedEntityInterface type

func NewNamedEntityInterface added in v1.15.0

func NewNamedEntityInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *NamedEntityInterface

NewNamedEntityInterface creates a new instance of NamedEntityInterface. 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 (*NamedEntityInterface) EXPECT added in v1.15.0

func (*NamedEntityInterface) GetNamedEntity added in v1.15.0

func (_m *NamedEntityInterface) GetNamedEntity(ctx context.Context, request *admin.NamedEntityGetRequest) (*admin.NamedEntity, error)

GetNamedEntity provides a mock function with given fields: ctx, request

func (*NamedEntityInterface) ListNamedEntities added in v1.15.0

ListNamedEntities provides a mock function with given fields: ctx, request

func (*NamedEntityInterface) UpdateNamedEntity added in v1.15.0

UpdateNamedEntity provides a mock function with given fields: ctx, request

type NamedEntityInterface_Expecter added in v1.15.0

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

func (*NamedEntityInterface_Expecter) GetNamedEntity added in v1.15.0

func (_e *NamedEntityInterface_Expecter) GetNamedEntity(ctx interface{}, request interface{}) *NamedEntityInterface_GetNamedEntity_Call

GetNamedEntity is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.NamedEntityGetRequest

func (*NamedEntityInterface_Expecter) ListNamedEntities added in v1.15.0

func (_e *NamedEntityInterface_Expecter) ListNamedEntities(ctx interface{}, request interface{}) *NamedEntityInterface_ListNamedEntities_Call

ListNamedEntities is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.NamedEntityListRequest

func (*NamedEntityInterface_Expecter) UpdateNamedEntity added in v1.15.0

func (_e *NamedEntityInterface_Expecter) UpdateNamedEntity(ctx interface{}, request interface{}) *NamedEntityInterface_UpdateNamedEntity_Call

UpdateNamedEntity is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.NamedEntityUpdateRequest

type NamedEntityInterface_GetNamedEntity_Call added in v1.15.0

type NamedEntityInterface_GetNamedEntity_Call struct {
	*mock.Call
}

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

func (*NamedEntityInterface_GetNamedEntity_Call) Return added in v1.15.0

func (*NamedEntityInterface_GetNamedEntity_Call) Run added in v1.15.0

func (*NamedEntityInterface_GetNamedEntity_Call) RunAndReturn added in v1.15.0

type NamedEntityInterface_ListNamedEntities_Call added in v1.15.0

type NamedEntityInterface_ListNamedEntities_Call struct {
	*mock.Call
}

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

func (*NamedEntityInterface_ListNamedEntities_Call) Return added in v1.15.0

func (*NamedEntityInterface_ListNamedEntities_Call) Run added in v1.15.0

func (*NamedEntityInterface_ListNamedEntities_Call) RunAndReturn added in v1.15.0

type NamedEntityInterface_UpdateNamedEntity_Call added in v1.15.0

type NamedEntityInterface_UpdateNamedEntity_Call struct {
	*mock.Call
}

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

func (*NamedEntityInterface_UpdateNamedEntity_Call) Return added in v1.15.0

func (*NamedEntityInterface_UpdateNamedEntity_Call) Run added in v1.15.0

func (*NamedEntityInterface_UpdateNamedEntity_Call) RunAndReturn added in v1.15.0

type NodeExecutionInterface added in v1.15.0

type NodeExecutionInterface struct {
	mock.Mock
}

NodeExecutionInterface is an autogenerated mock type for the NodeExecutionInterface type

func NewNodeExecutionInterface added in v1.15.0

func NewNodeExecutionInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *NodeExecutionInterface

NewNodeExecutionInterface creates a new instance of NodeExecutionInterface. 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 (*NodeExecutionInterface) CreateNodeEvent added in v1.15.0

CreateNodeEvent provides a mock function with given fields: ctx, request

func (*NodeExecutionInterface) EXPECT added in v1.15.0

func (*NodeExecutionInterface) GetDynamicNodeWorkflow added in v1.15.0

GetDynamicNodeWorkflow provides a mock function with given fields: ctx, request

func (*NodeExecutionInterface) GetNodeExecution added in v1.15.0

GetNodeExecution provides a mock function with given fields: ctx, request

func (*NodeExecutionInterface) GetNodeExecutionData added in v1.15.0

GetNodeExecutionData provides a mock function with given fields: ctx, request

func (*NodeExecutionInterface) ListNodeExecutions added in v1.15.0

ListNodeExecutions provides a mock function with given fields: ctx, request

func (*NodeExecutionInterface) ListNodeExecutionsForTask added in v1.15.0

ListNodeExecutionsForTask provides a mock function with given fields: ctx, request

type NodeExecutionInterface_CreateNodeEvent_Call added in v1.15.0

type NodeExecutionInterface_CreateNodeEvent_Call struct {
	*mock.Call
}

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

func (*NodeExecutionInterface_CreateNodeEvent_Call) Return added in v1.15.0

func (*NodeExecutionInterface_CreateNodeEvent_Call) Run added in v1.15.0

func (*NodeExecutionInterface_CreateNodeEvent_Call) RunAndReturn added in v1.15.0

type NodeExecutionInterface_Expecter added in v1.15.0

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

func (*NodeExecutionInterface_Expecter) CreateNodeEvent added in v1.15.0

func (_e *NodeExecutionInterface_Expecter) CreateNodeEvent(ctx interface{}, request interface{}) *NodeExecutionInterface_CreateNodeEvent_Call

CreateNodeEvent is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.NodeExecutionEventRequest

func (*NodeExecutionInterface_Expecter) GetDynamicNodeWorkflow added in v1.15.0

func (_e *NodeExecutionInterface_Expecter) GetDynamicNodeWorkflow(ctx interface{}, request interface{}) *NodeExecutionInterface_GetDynamicNodeWorkflow_Call

GetDynamicNodeWorkflow is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.GetDynamicNodeWorkflowRequest

func (*NodeExecutionInterface_Expecter) GetNodeExecution added in v1.15.0

func (_e *NodeExecutionInterface_Expecter) GetNodeExecution(ctx interface{}, request interface{}) *NodeExecutionInterface_GetNodeExecution_Call

GetNodeExecution is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.NodeExecutionGetRequest

func (*NodeExecutionInterface_Expecter) GetNodeExecutionData added in v1.15.0

func (_e *NodeExecutionInterface_Expecter) GetNodeExecutionData(ctx interface{}, request interface{}) *NodeExecutionInterface_GetNodeExecutionData_Call

GetNodeExecutionData is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.NodeExecutionGetDataRequest

func (*NodeExecutionInterface_Expecter) ListNodeExecutions added in v1.15.0

func (_e *NodeExecutionInterface_Expecter) ListNodeExecutions(ctx interface{}, request interface{}) *NodeExecutionInterface_ListNodeExecutions_Call

ListNodeExecutions is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.NodeExecutionListRequest

func (*NodeExecutionInterface_Expecter) ListNodeExecutionsForTask added in v1.15.0

func (_e *NodeExecutionInterface_Expecter) ListNodeExecutionsForTask(ctx interface{}, request interface{}) *NodeExecutionInterface_ListNodeExecutionsForTask_Call

ListNodeExecutionsForTask is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.NodeExecutionForTaskListRequest

type NodeExecutionInterface_GetDynamicNodeWorkflow_Call added in v1.15.0

type NodeExecutionInterface_GetDynamicNodeWorkflow_Call struct {
	*mock.Call
}

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

func (*NodeExecutionInterface_GetDynamicNodeWorkflow_Call) Return added in v1.15.0

func (*NodeExecutionInterface_GetDynamicNodeWorkflow_Call) Run added in v1.15.0

type NodeExecutionInterface_GetNodeExecutionData_Call added in v1.15.0

type NodeExecutionInterface_GetNodeExecutionData_Call struct {
	*mock.Call
}

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

func (*NodeExecutionInterface_GetNodeExecutionData_Call) Return added in v1.15.0

func (*NodeExecutionInterface_GetNodeExecutionData_Call) Run added in v1.15.0

type NodeExecutionInterface_GetNodeExecution_Call added in v1.15.0

type NodeExecutionInterface_GetNodeExecution_Call struct {
	*mock.Call
}

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

func (*NodeExecutionInterface_GetNodeExecution_Call) Return added in v1.15.0

func (*NodeExecutionInterface_GetNodeExecution_Call) Run added in v1.15.0

func (*NodeExecutionInterface_GetNodeExecution_Call) RunAndReturn added in v1.15.0

type NodeExecutionInterface_ListNodeExecutionsForTask_Call added in v1.15.0

type NodeExecutionInterface_ListNodeExecutionsForTask_Call struct {
	*mock.Call
}

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

func (*NodeExecutionInterface_ListNodeExecutionsForTask_Call) Return added in v1.15.0

func (*NodeExecutionInterface_ListNodeExecutionsForTask_Call) Run added in v1.15.0

func (*NodeExecutionInterface_ListNodeExecutionsForTask_Call) RunAndReturn added in v1.15.0

type NodeExecutionInterface_ListNodeExecutions_Call added in v1.15.0

type NodeExecutionInterface_ListNodeExecutions_Call struct {
	*mock.Call
}

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

func (*NodeExecutionInterface_ListNodeExecutions_Call) Return added in v1.15.0

func (*NodeExecutionInterface_ListNodeExecutions_Call) Run added in v1.15.0

func (*NodeExecutionInterface_ListNodeExecutions_Call) RunAndReturn added in v1.15.0

type ProjectInterface added in v1.15.0

type ProjectInterface struct {
	mock.Mock
}

ProjectInterface is an autogenerated mock type for the ProjectInterface type

func NewProjectInterface added in v1.15.0

func NewProjectInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *ProjectInterface

NewProjectInterface creates a new instance of ProjectInterface. 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 (*ProjectInterface) CreateProject added in v1.15.0

CreateProject provides a mock function with given fields: ctx, request

func (*ProjectInterface) EXPECT added in v1.15.0

func (*ProjectInterface) GetDomains added in v1.15.0

GetDomains provides a mock function with given fields: ctx, request

func (*ProjectInterface) GetProject added in v1.15.0

func (_m *ProjectInterface) GetProject(ctx context.Context, request *admin.ProjectGetRequest) (*admin.Project, error)

GetProject provides a mock function with given fields: ctx, request

func (*ProjectInterface) ListProjects added in v1.15.0

func (_m *ProjectInterface) ListProjects(ctx context.Context, request *admin.ProjectListRequest) (*admin.Projects, error)

ListProjects provides a mock function with given fields: ctx, request

func (*ProjectInterface) UpdateProject added in v1.15.0

func (_m *ProjectInterface) UpdateProject(ctx context.Context, request *admin.Project) (*admin.ProjectUpdateResponse, error)

UpdateProject provides a mock function with given fields: ctx, request

type ProjectInterface_CreateProject_Call added in v1.15.0

type ProjectInterface_CreateProject_Call struct {
	*mock.Call
}

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

func (*ProjectInterface_CreateProject_Call) Return added in v1.15.0

func (*ProjectInterface_CreateProject_Call) Run added in v1.15.0

func (*ProjectInterface_CreateProject_Call) RunAndReturn added in v1.15.0

type ProjectInterface_Expecter added in v1.15.0

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

func (*ProjectInterface_Expecter) CreateProject added in v1.15.0

func (_e *ProjectInterface_Expecter) CreateProject(ctx interface{}, request interface{}) *ProjectInterface_CreateProject_Call

CreateProject is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ProjectRegisterRequest

func (*ProjectInterface_Expecter) GetDomains added in v1.15.0

func (_e *ProjectInterface_Expecter) GetDomains(ctx interface{}, request interface{}) *ProjectInterface_GetDomains_Call

GetDomains is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.GetDomainRequest

func (*ProjectInterface_Expecter) GetProject added in v1.15.0

func (_e *ProjectInterface_Expecter) GetProject(ctx interface{}, request interface{}) *ProjectInterface_GetProject_Call

GetProject is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ProjectGetRequest

func (*ProjectInterface_Expecter) ListProjects added in v1.15.0

func (_e *ProjectInterface_Expecter) ListProjects(ctx interface{}, request interface{}) *ProjectInterface_ListProjects_Call

ListProjects is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ProjectListRequest

func (*ProjectInterface_Expecter) UpdateProject added in v1.15.0

func (_e *ProjectInterface_Expecter) UpdateProject(ctx interface{}, request interface{}) *ProjectInterface_UpdateProject_Call

UpdateProject is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.Project

type ProjectInterface_GetDomains_Call added in v1.15.0

type ProjectInterface_GetDomains_Call struct {
	*mock.Call
}

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

func (*ProjectInterface_GetDomains_Call) Return added in v1.15.0

func (*ProjectInterface_GetDomains_Call) Run added in v1.15.0

func (*ProjectInterface_GetDomains_Call) RunAndReturn added in v1.15.0

type ProjectInterface_GetProject_Call added in v1.15.0

type ProjectInterface_GetProject_Call struct {
	*mock.Call
}

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

func (*ProjectInterface_GetProject_Call) Return added in v1.15.0

func (*ProjectInterface_GetProject_Call) Run added in v1.15.0

func (*ProjectInterface_GetProject_Call) RunAndReturn added in v1.15.0

type ProjectInterface_ListProjects_Call added in v1.15.0

type ProjectInterface_ListProjects_Call struct {
	*mock.Call
}

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

func (*ProjectInterface_ListProjects_Call) Return added in v1.15.0

func (*ProjectInterface_ListProjects_Call) Run added in v1.15.0

func (*ProjectInterface_ListProjects_Call) RunAndReturn added in v1.15.0

type ProjectInterface_UpdateProject_Call added in v1.15.0

type ProjectInterface_UpdateProject_Call struct {
	*mock.Call
}

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

func (*ProjectInterface_UpdateProject_Call) Return added in v1.15.0

func (*ProjectInterface_UpdateProject_Call) Run added in v1.15.0

func (*ProjectInterface_UpdateProject_Call) RunAndReturn added in v1.15.0

type ResourceInterface added in v1.13.3

type ResourceInterface struct {
	mock.Mock
}

ResourceInterface is an autogenerated mock type for the ResourceInterface type

func NewResourceInterface added in v1.15.0

func NewResourceInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *ResourceInterface

NewResourceInterface creates a new instance of ResourceInterface. 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 (*ResourceInterface) DeleteProjectAttributes added in v1.13.3

DeleteProjectAttributes provides a mock function with given fields: ctx, request

func (*ResourceInterface) DeleteProjectDomainAttributes added in v1.13.3

DeleteProjectDomainAttributes provides a mock function with given fields: ctx, request

func (*ResourceInterface) DeleteWorkflowAttributes added in v1.13.3

DeleteWorkflowAttributes provides a mock function with given fields: ctx, request

func (*ResourceInterface) EXPECT added in v1.15.0

func (*ResourceInterface) GetProjectAttributes added in v1.13.3

GetProjectAttributes provides a mock function with given fields: ctx, request

func (*ResourceInterface) GetProjectDomainAttributes added in v1.13.3

GetProjectDomainAttributes provides a mock function with given fields: ctx, request

func (*ResourceInterface) GetResource added in v1.13.3

GetResource provides a mock function with given fields: ctx, request

func (*ResourceInterface) GetWorkflowAttributes added in v1.13.3

GetWorkflowAttributes provides a mock function with given fields: ctx, request

func (*ResourceInterface) ListAll added in v1.13.3

ListAll provides a mock function with given fields: ctx, request

func (*ResourceInterface) UpdateProjectAttributes added in v1.13.3

UpdateProjectAttributes provides a mock function with given fields: ctx, request

func (*ResourceInterface) UpdateProjectDomainAttributes added in v1.13.3

UpdateProjectDomainAttributes provides a mock function with given fields: ctx, request

func (*ResourceInterface) UpdateWorkflowAttributes added in v1.13.3

UpdateWorkflowAttributes provides a mock function with given fields: ctx, request

type ResourceInterface_DeleteProjectAttributes_Call added in v1.15.0

type ResourceInterface_DeleteProjectAttributes_Call struct {
	*mock.Call
}

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

func (*ResourceInterface_DeleteProjectAttributes_Call) Return added in v1.15.0

func (*ResourceInterface_DeleteProjectAttributes_Call) Run added in v1.15.0

type ResourceInterface_DeleteProjectDomainAttributes_Call added in v1.15.0

type ResourceInterface_DeleteProjectDomainAttributes_Call struct {
	*mock.Call
}

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

func (*ResourceInterface_DeleteProjectDomainAttributes_Call) Return added in v1.15.0

func (*ResourceInterface_DeleteProjectDomainAttributes_Call) Run added in v1.15.0

type ResourceInterface_DeleteWorkflowAttributes_Call added in v1.15.0

type ResourceInterface_DeleteWorkflowAttributes_Call struct {
	*mock.Call
}

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

func (*ResourceInterface_DeleteWorkflowAttributes_Call) Return added in v1.15.0

func (*ResourceInterface_DeleteWorkflowAttributes_Call) Run added in v1.15.0

type ResourceInterface_Expecter added in v1.15.0

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

func (*ResourceInterface_Expecter) DeleteProjectAttributes added in v1.15.0

func (_e *ResourceInterface_Expecter) DeleteProjectAttributes(ctx interface{}, request interface{}) *ResourceInterface_DeleteProjectAttributes_Call

DeleteProjectAttributes is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ProjectAttributesDeleteRequest

func (*ResourceInterface_Expecter) DeleteProjectDomainAttributes added in v1.15.0

func (_e *ResourceInterface_Expecter) DeleteProjectDomainAttributes(ctx interface{}, request interface{}) *ResourceInterface_DeleteProjectDomainAttributes_Call

DeleteProjectDomainAttributes is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ProjectDomainAttributesDeleteRequest

func (*ResourceInterface_Expecter) DeleteWorkflowAttributes added in v1.15.0

func (_e *ResourceInterface_Expecter) DeleteWorkflowAttributes(ctx interface{}, request interface{}) *ResourceInterface_DeleteWorkflowAttributes_Call

DeleteWorkflowAttributes is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.WorkflowAttributesDeleteRequest

func (*ResourceInterface_Expecter) GetProjectAttributes added in v1.15.0

func (_e *ResourceInterface_Expecter) GetProjectAttributes(ctx interface{}, request interface{}) *ResourceInterface_GetProjectAttributes_Call

GetProjectAttributes is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ProjectAttributesGetRequest

func (*ResourceInterface_Expecter) GetProjectDomainAttributes added in v1.15.0

func (_e *ResourceInterface_Expecter) GetProjectDomainAttributes(ctx interface{}, request interface{}) *ResourceInterface_GetProjectDomainAttributes_Call

GetProjectDomainAttributes is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ProjectDomainAttributesGetRequest

func (*ResourceInterface_Expecter) GetResource added in v1.15.0

func (_e *ResourceInterface_Expecter) GetResource(ctx interface{}, request interface{}) *ResourceInterface_GetResource_Call

GetResource is a helper method to define mock.On call

  • ctx context.Context
  • request interfaces.ResourceRequest

func (*ResourceInterface_Expecter) GetWorkflowAttributes added in v1.15.0

func (_e *ResourceInterface_Expecter) GetWorkflowAttributes(ctx interface{}, request interface{}) *ResourceInterface_GetWorkflowAttributes_Call

GetWorkflowAttributes is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.WorkflowAttributesGetRequest

func (*ResourceInterface_Expecter) ListAll added in v1.15.0

func (_e *ResourceInterface_Expecter) ListAll(ctx interface{}, request interface{}) *ResourceInterface_ListAll_Call

ListAll is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ListMatchableAttributesRequest

func (*ResourceInterface_Expecter) UpdateProjectAttributes added in v1.15.0

func (_e *ResourceInterface_Expecter) UpdateProjectAttributes(ctx interface{}, request interface{}) *ResourceInterface_UpdateProjectAttributes_Call

UpdateProjectAttributes is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ProjectAttributesUpdateRequest

func (*ResourceInterface_Expecter) UpdateProjectDomainAttributes added in v1.15.0

func (_e *ResourceInterface_Expecter) UpdateProjectDomainAttributes(ctx interface{}, request interface{}) *ResourceInterface_UpdateProjectDomainAttributes_Call

UpdateProjectDomainAttributes is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ProjectDomainAttributesUpdateRequest

func (*ResourceInterface_Expecter) UpdateWorkflowAttributes added in v1.15.0

func (_e *ResourceInterface_Expecter) UpdateWorkflowAttributes(ctx interface{}, request interface{}) *ResourceInterface_UpdateWorkflowAttributes_Call

UpdateWorkflowAttributes is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.WorkflowAttributesUpdateRequest

type ResourceInterface_GetProjectAttributes_Call added in v1.15.0

type ResourceInterface_GetProjectAttributes_Call struct {
	*mock.Call
}

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

func (*ResourceInterface_GetProjectAttributes_Call) Return added in v1.15.0

func (*ResourceInterface_GetProjectAttributes_Call) Run added in v1.15.0

func (*ResourceInterface_GetProjectAttributes_Call) RunAndReturn added in v1.15.0

type ResourceInterface_GetProjectDomainAttributes_Call added in v1.15.0

type ResourceInterface_GetProjectDomainAttributes_Call struct {
	*mock.Call
}

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

func (*ResourceInterface_GetProjectDomainAttributes_Call) Return added in v1.15.0

func (*ResourceInterface_GetProjectDomainAttributes_Call) Run added in v1.15.0

type ResourceInterface_GetResource_Call added in v1.15.0

type ResourceInterface_GetResource_Call struct {
	*mock.Call
}

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

func (*ResourceInterface_GetResource_Call) Return added in v1.15.0

func (*ResourceInterface_GetResource_Call) Run added in v1.15.0

func (*ResourceInterface_GetResource_Call) RunAndReturn added in v1.15.0

type ResourceInterface_GetWorkflowAttributes_Call added in v1.15.0

type ResourceInterface_GetWorkflowAttributes_Call struct {
	*mock.Call
}

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

func (*ResourceInterface_GetWorkflowAttributes_Call) Return added in v1.15.0

func (*ResourceInterface_GetWorkflowAttributes_Call) Run added in v1.15.0

type ResourceInterface_ListAll_Call added in v1.15.0

type ResourceInterface_ListAll_Call struct {
	*mock.Call
}

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

func (*ResourceInterface_ListAll_Call) Return added in v1.15.0

func (*ResourceInterface_ListAll_Call) Run added in v1.15.0

func (*ResourceInterface_ListAll_Call) RunAndReturn added in v1.15.0

type ResourceInterface_UpdateProjectAttributes_Call added in v1.15.0

type ResourceInterface_UpdateProjectAttributes_Call struct {
	*mock.Call
}

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

func (*ResourceInterface_UpdateProjectAttributes_Call) Return added in v1.15.0

func (*ResourceInterface_UpdateProjectAttributes_Call) Run added in v1.15.0

type ResourceInterface_UpdateProjectDomainAttributes_Call added in v1.15.0

type ResourceInterface_UpdateProjectDomainAttributes_Call struct {
	*mock.Call
}

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

func (*ResourceInterface_UpdateProjectDomainAttributes_Call) Return added in v1.15.0

func (*ResourceInterface_UpdateProjectDomainAttributes_Call) Run added in v1.15.0

type ResourceInterface_UpdateWorkflowAttributes_Call added in v1.15.0

type ResourceInterface_UpdateWorkflowAttributes_Call struct {
	*mock.Call
}

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

func (*ResourceInterface_UpdateWorkflowAttributes_Call) Return added in v1.15.0

func (*ResourceInterface_UpdateWorkflowAttributes_Call) Run added in v1.15.0

type SignalInterface

type SignalInterface struct {
	mock.Mock
}

SignalInterface is an autogenerated mock type for the SignalInterface type

func NewSignalInterface added in v1.13.0

func NewSignalInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *SignalInterface

NewSignalInterface creates a new instance of SignalInterface. 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 (*SignalInterface) EXPECT added in v1.13.0

func (*SignalInterface) GetOrCreateSignal

func (_m *SignalInterface) GetOrCreateSignal(ctx context.Context, request *admin.SignalGetOrCreateRequest) (*admin.Signal, error)

GetOrCreateSignal provides a mock function with given fields: ctx, request

func (*SignalInterface) ListSignals

func (_m *SignalInterface) ListSignals(ctx context.Context, request *admin.SignalListRequest) (*admin.SignalList, error)

ListSignals provides a mock function with given fields: ctx, request

func (*SignalInterface) SetSignal

SetSignal provides a mock function with given fields: ctx, request

type SignalInterface_Expecter added in v1.13.0

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

func (*SignalInterface_Expecter) GetOrCreateSignal added in v1.13.0

func (_e *SignalInterface_Expecter) GetOrCreateSignal(ctx interface{}, request interface{}) *SignalInterface_GetOrCreateSignal_Call

GetOrCreateSignal is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.SignalGetOrCreateRequest

func (*SignalInterface_Expecter) ListSignals added in v1.13.0

func (_e *SignalInterface_Expecter) ListSignals(ctx interface{}, request interface{}) *SignalInterface_ListSignals_Call

ListSignals is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.SignalListRequest

func (*SignalInterface_Expecter) SetSignal added in v1.13.0

func (_e *SignalInterface_Expecter) SetSignal(ctx interface{}, request interface{}) *SignalInterface_SetSignal_Call

SetSignal is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.SignalSetRequest

type SignalInterface_GetOrCreateSignal_Call added in v1.13.0

type SignalInterface_GetOrCreateSignal_Call struct {
	*mock.Call
}

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

func (*SignalInterface_GetOrCreateSignal_Call) Return added in v1.13.0

func (*SignalInterface_GetOrCreateSignal_Call) Run added in v1.13.0

func (*SignalInterface_GetOrCreateSignal_Call) RunAndReturn added in v1.13.0

type SignalInterface_ListSignals_Call added in v1.13.0

type SignalInterface_ListSignals_Call struct {
	*mock.Call
}

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

func (*SignalInterface_ListSignals_Call) Return added in v1.13.0

func (*SignalInterface_ListSignals_Call) Run added in v1.13.0

func (*SignalInterface_ListSignals_Call) RunAndReturn added in v1.13.0

type SignalInterface_SetSignal_Call added in v1.13.0

type SignalInterface_SetSignal_Call struct {
	*mock.Call
}

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

func (*SignalInterface_SetSignal_Call) Return added in v1.13.0

func (*SignalInterface_SetSignal_Call) Run added in v1.13.0

func (*SignalInterface_SetSignal_Call) RunAndReturn added in v1.13.0

type TaskExecutionInterface added in v1.15.0

type TaskExecutionInterface struct {
	mock.Mock
}

TaskExecutionInterface is an autogenerated mock type for the TaskExecutionInterface type

func NewTaskExecutionInterface added in v1.15.0

func NewTaskExecutionInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *TaskExecutionInterface

NewTaskExecutionInterface creates a new instance of TaskExecutionInterface. 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 (*TaskExecutionInterface) CreateTaskExecutionEvent added in v1.15.0

CreateTaskExecutionEvent provides a mock function with given fields: ctx, request

func (*TaskExecutionInterface) EXPECT added in v1.15.0

func (*TaskExecutionInterface) GetTaskExecution added in v1.15.0

GetTaskExecution provides a mock function with given fields: ctx, request

func (*TaskExecutionInterface) GetTaskExecutionData added in v1.15.0

GetTaskExecutionData provides a mock function with given fields: ctx, request

func (*TaskExecutionInterface) ListTaskExecutions added in v1.15.0

ListTaskExecutions provides a mock function with given fields: ctx, request

type TaskExecutionInterface_CreateTaskExecutionEvent_Call added in v1.15.0

type TaskExecutionInterface_CreateTaskExecutionEvent_Call struct {
	*mock.Call
}

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

func (*TaskExecutionInterface_CreateTaskExecutionEvent_Call) Return added in v1.15.0

func (*TaskExecutionInterface_CreateTaskExecutionEvent_Call) Run added in v1.15.0

func (*TaskExecutionInterface_CreateTaskExecutionEvent_Call) RunAndReturn added in v1.15.0

type TaskExecutionInterface_Expecter added in v1.15.0

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

func (*TaskExecutionInterface_Expecter) CreateTaskExecutionEvent added in v1.15.0

func (_e *TaskExecutionInterface_Expecter) CreateTaskExecutionEvent(ctx interface{}, request interface{}) *TaskExecutionInterface_CreateTaskExecutionEvent_Call

CreateTaskExecutionEvent is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.TaskExecutionEventRequest

func (*TaskExecutionInterface_Expecter) GetTaskExecution added in v1.15.0

func (_e *TaskExecutionInterface_Expecter) GetTaskExecution(ctx interface{}, request interface{}) *TaskExecutionInterface_GetTaskExecution_Call

GetTaskExecution is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.TaskExecutionGetRequest

func (*TaskExecutionInterface_Expecter) GetTaskExecutionData added in v1.15.0

func (_e *TaskExecutionInterface_Expecter) GetTaskExecutionData(ctx interface{}, request interface{}) *TaskExecutionInterface_GetTaskExecutionData_Call

GetTaskExecutionData is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.TaskExecutionGetDataRequest

func (*TaskExecutionInterface_Expecter) ListTaskExecutions added in v1.15.0

func (_e *TaskExecutionInterface_Expecter) ListTaskExecutions(ctx interface{}, request interface{}) *TaskExecutionInterface_ListTaskExecutions_Call

ListTaskExecutions is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.TaskExecutionListRequest

type TaskExecutionInterface_GetTaskExecutionData_Call added in v1.15.0

type TaskExecutionInterface_GetTaskExecutionData_Call struct {
	*mock.Call
}

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

func (*TaskExecutionInterface_GetTaskExecutionData_Call) Return added in v1.15.0

func (*TaskExecutionInterface_GetTaskExecutionData_Call) Run added in v1.15.0

type TaskExecutionInterface_GetTaskExecution_Call added in v1.15.0

type TaskExecutionInterface_GetTaskExecution_Call struct {
	*mock.Call
}

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

func (*TaskExecutionInterface_GetTaskExecution_Call) Return added in v1.15.0

func (*TaskExecutionInterface_GetTaskExecution_Call) Run added in v1.15.0

func (*TaskExecutionInterface_GetTaskExecution_Call) RunAndReturn added in v1.15.0

type TaskExecutionInterface_ListTaskExecutions_Call added in v1.15.0

type TaskExecutionInterface_ListTaskExecutions_Call struct {
	*mock.Call
}

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

func (*TaskExecutionInterface_ListTaskExecutions_Call) Return added in v1.15.0

func (*TaskExecutionInterface_ListTaskExecutions_Call) Run added in v1.15.0

func (*TaskExecutionInterface_ListTaskExecutions_Call) RunAndReturn added in v1.15.0

type TaskInterface added in v1.15.0

type TaskInterface struct {
	mock.Mock
}

TaskInterface is an autogenerated mock type for the TaskInterface type

func NewTaskInterface added in v1.15.0

func NewTaskInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *TaskInterface

NewTaskInterface creates a new instance of TaskInterface. 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 (*TaskInterface) CreateTask added in v1.15.0

CreateTask provides a mock function with given fields: ctx, request

func (*TaskInterface) EXPECT added in v1.15.0

func (_m *TaskInterface) EXPECT() *TaskInterface_Expecter

func (*TaskInterface) GetTask added in v1.15.0

func (_m *TaskInterface) GetTask(ctx context.Context, request *admin.ObjectGetRequest) (*admin.Task, error)

GetTask provides a mock function with given fields: ctx, request

func (*TaskInterface) ListTasks added in v1.15.0

func (_m *TaskInterface) ListTasks(ctx context.Context, request *admin.ResourceListRequest) (*admin.TaskList, error)

ListTasks provides a mock function with given fields: ctx, request

func (*TaskInterface) ListUniqueTaskIdentifiers added in v1.15.0

ListUniqueTaskIdentifiers provides a mock function with given fields: ctx, request

type TaskInterface_CreateTask_Call added in v1.15.0

type TaskInterface_CreateTask_Call struct {
	*mock.Call
}

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

func (*TaskInterface_CreateTask_Call) Return added in v1.15.0

func (*TaskInterface_CreateTask_Call) Run added in v1.15.0

func (*TaskInterface_CreateTask_Call) RunAndReturn added in v1.15.0

type TaskInterface_Expecter added in v1.15.0

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

func (*TaskInterface_Expecter) CreateTask added in v1.15.0

func (_e *TaskInterface_Expecter) CreateTask(ctx interface{}, request interface{}) *TaskInterface_CreateTask_Call

CreateTask is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.TaskCreateRequest

func (*TaskInterface_Expecter) GetTask added in v1.15.0

func (_e *TaskInterface_Expecter) GetTask(ctx interface{}, request interface{}) *TaskInterface_GetTask_Call

GetTask is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ObjectGetRequest

func (*TaskInterface_Expecter) ListTasks added in v1.15.0

func (_e *TaskInterface_Expecter) ListTasks(ctx interface{}, request interface{}) *TaskInterface_ListTasks_Call

ListTasks is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ResourceListRequest

func (*TaskInterface_Expecter) ListUniqueTaskIdentifiers added in v1.15.0

func (_e *TaskInterface_Expecter) ListUniqueTaskIdentifiers(ctx interface{}, request interface{}) *TaskInterface_ListUniqueTaskIdentifiers_Call

ListUniqueTaskIdentifiers is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.NamedEntityIdentifierListRequest

type TaskInterface_GetTask_Call added in v1.15.0

type TaskInterface_GetTask_Call struct {
	*mock.Call
}

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

func (*TaskInterface_GetTask_Call) Return added in v1.15.0

func (*TaskInterface_GetTask_Call) Run added in v1.15.0

func (*TaskInterface_GetTask_Call) RunAndReturn added in v1.15.0

type TaskInterface_ListTasks_Call added in v1.15.0

type TaskInterface_ListTasks_Call struct {
	*mock.Call
}

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

func (*TaskInterface_ListTasks_Call) Return added in v1.15.0

func (*TaskInterface_ListTasks_Call) Run added in v1.15.0

func (*TaskInterface_ListTasks_Call) RunAndReturn added in v1.15.0

type TaskInterface_ListUniqueTaskIdentifiers_Call added in v1.15.0

type TaskInterface_ListUniqueTaskIdentifiers_Call struct {
	*mock.Call
}

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

func (*TaskInterface_ListUniqueTaskIdentifiers_Call) Return added in v1.15.0

func (*TaskInterface_ListUniqueTaskIdentifiers_Call) Run added in v1.15.0

type VersionInterface

type VersionInterface struct {
	mock.Mock
}

VersionInterface is an autogenerated mock type for the VersionInterface type

func NewVersionInterface added in v1.15.0

func NewVersionInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *VersionInterface

NewVersionInterface creates a new instance of VersionInterface. 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 (*VersionInterface) EXPECT added in v1.15.0

func (*VersionInterface) GetVersion

GetVersion provides a mock function with given fields: ctx, r

type VersionInterface_Expecter added in v1.15.0

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

func (*VersionInterface_Expecter) GetVersion added in v1.15.0

func (_e *VersionInterface_Expecter) GetVersion(ctx interface{}, r interface{}) *VersionInterface_GetVersion_Call

GetVersion is a helper method to define mock.On call

  • ctx context.Context
  • r *admin.GetVersionRequest

type VersionInterface_GetVersion_Call added in v1.15.0

type VersionInterface_GetVersion_Call struct {
	*mock.Call
}

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

func (*VersionInterface_GetVersion_Call) Return added in v1.15.0

func (*VersionInterface_GetVersion_Call) Run added in v1.15.0

func (*VersionInterface_GetVersion_Call) RunAndReturn added in v1.15.0

type WorkflowInterface added in v1.15.0

type WorkflowInterface struct {
	mock.Mock
}

WorkflowInterface is an autogenerated mock type for the WorkflowInterface type

func NewWorkflowInterface added in v1.15.0

func NewWorkflowInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *WorkflowInterface

NewWorkflowInterface creates a new instance of WorkflowInterface. 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 (*WorkflowInterface) CreateWorkflow added in v1.15.0

CreateWorkflow provides a mock function with given fields: ctx, request

func (*WorkflowInterface) EXPECT added in v1.15.0

func (*WorkflowInterface) GetWorkflow added in v1.15.0

func (_m *WorkflowInterface) GetWorkflow(ctx context.Context, request *admin.ObjectGetRequest) (*admin.Workflow, error)

GetWorkflow provides a mock function with given fields: ctx, request

func (*WorkflowInterface) ListWorkflowIdentifiers added in v1.15.0

ListWorkflowIdentifiers provides a mock function with given fields: ctx, request

func (*WorkflowInterface) ListWorkflows added in v1.15.0

func (_m *WorkflowInterface) ListWorkflows(ctx context.Context, request *admin.ResourceListRequest) (*admin.WorkflowList, error)

ListWorkflows provides a mock function with given fields: ctx, request

type WorkflowInterface_CreateWorkflow_Call added in v1.15.0

type WorkflowInterface_CreateWorkflow_Call struct {
	*mock.Call
}

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

func (*WorkflowInterface_CreateWorkflow_Call) Return added in v1.15.0

func (*WorkflowInterface_CreateWorkflow_Call) Run added in v1.15.0

func (*WorkflowInterface_CreateWorkflow_Call) RunAndReturn added in v1.15.0

type WorkflowInterface_Expecter added in v1.15.0

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

func (*WorkflowInterface_Expecter) CreateWorkflow added in v1.15.0

func (_e *WorkflowInterface_Expecter) CreateWorkflow(ctx interface{}, request interface{}) *WorkflowInterface_CreateWorkflow_Call

CreateWorkflow is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.WorkflowCreateRequest

func (*WorkflowInterface_Expecter) GetWorkflow added in v1.15.0

func (_e *WorkflowInterface_Expecter) GetWorkflow(ctx interface{}, request interface{}) *WorkflowInterface_GetWorkflow_Call

GetWorkflow is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ObjectGetRequest

func (*WorkflowInterface_Expecter) ListWorkflowIdentifiers added in v1.15.0

func (_e *WorkflowInterface_Expecter) ListWorkflowIdentifiers(ctx interface{}, request interface{}) *WorkflowInterface_ListWorkflowIdentifiers_Call

ListWorkflowIdentifiers is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.NamedEntityIdentifierListRequest

func (*WorkflowInterface_Expecter) ListWorkflows added in v1.15.0

func (_e *WorkflowInterface_Expecter) ListWorkflows(ctx interface{}, request interface{}) *WorkflowInterface_ListWorkflows_Call

ListWorkflows is a helper method to define mock.On call

  • ctx context.Context
  • request *admin.ResourceListRequest

type WorkflowInterface_GetWorkflow_Call added in v1.15.0

type WorkflowInterface_GetWorkflow_Call struct {
	*mock.Call
}

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

func (*WorkflowInterface_GetWorkflow_Call) Return added in v1.15.0

func (*WorkflowInterface_GetWorkflow_Call) Run added in v1.15.0

func (*WorkflowInterface_GetWorkflow_Call) RunAndReturn added in v1.15.0

type WorkflowInterface_ListWorkflowIdentifiers_Call added in v1.15.0

type WorkflowInterface_ListWorkflowIdentifiers_Call struct {
	*mock.Call
}

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

func (*WorkflowInterface_ListWorkflowIdentifiers_Call) Return added in v1.15.0

func (*WorkflowInterface_ListWorkflowIdentifiers_Call) Run added in v1.15.0

type WorkflowInterface_ListWorkflows_Call added in v1.15.0

type WorkflowInterface_ListWorkflows_Call struct {
	*mock.Call
}

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

func (*WorkflowInterface_ListWorkflows_Call) Return added in v1.15.0

func (*WorkflowInterface_ListWorkflows_Call) Run added in v1.15.0

func (*WorkflowInterface_ListWorkflows_Call) RunAndReturn added in v1.15.0

Jump to

Keyboard shortcuts

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