apps

package
v0.56.1 Latest Latest
Warning

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

Go to latest
Published: Jan 23, 2025 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MockAppsInterface

type MockAppsInterface struct {
	mock.Mock
}

MockAppsInterface is an autogenerated mock type for the AppsInterface type

func NewMockAppsInterface

func NewMockAppsInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockAppsInterface

NewMockAppsInterface creates a new instance of MockAppsInterface. 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 (*MockAppsInterface) Create

func (_m *MockAppsInterface) Create(ctx context.Context, createAppRequest apps.CreateAppRequest) (*apps.WaitGetAppActive[apps.App], error)

Create provides a mock function with given fields: ctx, createAppRequest

func (*MockAppsInterface) CreateAndWait

func (_m *MockAppsInterface) CreateAndWait(ctx context.Context, createAppRequest apps.CreateAppRequest, options ...retries.Option[apps.App]) (*apps.App, error)

CreateAndWait provides a mock function with given fields: ctx, createAppRequest, options

func (*MockAppsInterface) Delete

func (_m *MockAppsInterface) Delete(ctx context.Context, request apps.DeleteAppRequest) (*apps.App, error)

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

func (*MockAppsInterface) DeleteByName

func (_m *MockAppsInterface) DeleteByName(ctx context.Context, name string) (*apps.App, error)

DeleteByName provides a mock function with given fields: ctx, name

func (*MockAppsInterface) Deploy

Deploy provides a mock function with given fields: ctx, createAppDeploymentRequest

func (*MockAppsInterface) DeployAndWait

func (_m *MockAppsInterface) DeployAndWait(ctx context.Context, createAppDeploymentRequest apps.CreateAppDeploymentRequest, options ...retries.Option[apps.AppDeployment]) (*apps.AppDeployment, error)

DeployAndWait provides a mock function with given fields: ctx, createAppDeploymentRequest, options

func (*MockAppsInterface) EXPECT

func (*MockAppsInterface) Get

func (_m *MockAppsInterface) Get(ctx context.Context, request apps.GetAppRequest) (*apps.App, error)

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

func (*MockAppsInterface) GetByName

func (_m *MockAppsInterface) GetByName(ctx context.Context, name string) (*apps.App, error)

GetByName provides a mock function with given fields: ctx, name

func (*MockAppsInterface) GetDeployment

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

func (*MockAppsInterface) GetDeploymentByAppNameAndDeploymentId

func (_m *MockAppsInterface) GetDeploymentByAppNameAndDeploymentId(ctx context.Context, appName string, deploymentId string) (*apps.AppDeployment, error)

GetDeploymentByAppNameAndDeploymentId provides a mock function with given fields: ctx, appName, deploymentId

func (*MockAppsInterface) GetPermissionLevels

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

func (*MockAppsInterface) GetPermissionLevelsByAppName

func (_m *MockAppsInterface) GetPermissionLevelsByAppName(ctx context.Context, appName string) (*apps.GetAppPermissionLevelsResponse, error)

GetPermissionLevelsByAppName provides a mock function with given fields: ctx, appName

func (*MockAppsInterface) GetPermissions

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

func (*MockAppsInterface) GetPermissionsByAppName

func (_m *MockAppsInterface) GetPermissionsByAppName(ctx context.Context, appName string) (*apps.AppPermissions, error)

GetPermissionsByAppName provides a mock function with given fields: ctx, appName

func (*MockAppsInterface) List

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

func (*MockAppsInterface) ListAll

func (_m *MockAppsInterface) ListAll(ctx context.Context, request apps.ListAppsRequest) ([]apps.App, error)

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

func (*MockAppsInterface) ListDeployments

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

func (*MockAppsInterface) ListDeploymentsAll

func (_m *MockAppsInterface) ListDeploymentsAll(ctx context.Context, request apps.ListAppDeploymentsRequest) ([]apps.AppDeployment, error)

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

func (*MockAppsInterface) ListDeploymentsByAppName

func (_m *MockAppsInterface) ListDeploymentsByAppName(ctx context.Context, appName string) (*apps.ListAppDeploymentsResponse, error)

ListDeploymentsByAppName provides a mock function with given fields: ctx, appName

func (*MockAppsInterface) SetPermissions

func (_m *MockAppsInterface) SetPermissions(ctx context.Context, request apps.AppPermissionsRequest) (*apps.AppPermissions, error)

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

func (*MockAppsInterface) Start

func (_m *MockAppsInterface) Start(ctx context.Context, startAppRequest apps.StartAppRequest) (*apps.WaitGetAppActive[apps.App], error)

Start provides a mock function with given fields: ctx, startAppRequest

func (*MockAppsInterface) StartAndWait

func (_m *MockAppsInterface) StartAndWait(ctx context.Context, startAppRequest apps.StartAppRequest, options ...retries.Option[apps.App]) (*apps.App, error)

StartAndWait provides a mock function with given fields: ctx, startAppRequest, options

func (*MockAppsInterface) Stop

Stop provides a mock function with given fields: ctx, stopAppRequest

func (*MockAppsInterface) StopAndWait added in v0.47.0

func (_m *MockAppsInterface) StopAndWait(ctx context.Context, stopAppRequest apps.StopAppRequest, options ...retries.Option[apps.App]) (*apps.App, error)

StopAndWait provides a mock function with given fields: ctx, stopAppRequest, options

func (*MockAppsInterface) Update

func (_m *MockAppsInterface) Update(ctx context.Context, request apps.UpdateAppRequest) (*apps.App, error)

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

func (*MockAppsInterface) UpdatePermissions

func (_m *MockAppsInterface) UpdatePermissions(ctx context.Context, request apps.AppPermissionsRequest) (*apps.AppPermissions, error)

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

func (*MockAppsInterface) WaitGetAppActive added in v0.47.0

func (_m *MockAppsInterface) WaitGetAppActive(ctx context.Context, name string, timeout time.Duration, callback func(*apps.App)) (*apps.App, error)

WaitGetAppActive provides a mock function with given fields: ctx, name, timeout, callback

func (*MockAppsInterface) WaitGetAppStopped added in v0.47.0

func (_m *MockAppsInterface) WaitGetAppStopped(ctx context.Context, name string, timeout time.Duration, callback func(*apps.App)) (*apps.App, error)

WaitGetAppStopped provides a mock function with given fields: ctx, name, timeout, callback

func (*MockAppsInterface) WaitGetDeploymentAppSucceeded

func (_m *MockAppsInterface) WaitGetDeploymentAppSucceeded(ctx context.Context, appName string, deploymentId string, timeout time.Duration, callback func(*apps.AppDeployment)) (*apps.AppDeployment, error)

WaitGetDeploymentAppSucceeded provides a mock function with given fields: ctx, appName, deploymentId, timeout, callback

type MockAppsInterface_CreateAndWait_Call

type MockAppsInterface_CreateAndWait_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_CreateAndWait_Call) Return

func (*MockAppsInterface_CreateAndWait_Call) Run

func (*MockAppsInterface_CreateAndWait_Call) RunAndReturn

type MockAppsInterface_Create_Call

type MockAppsInterface_Create_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_Create_Call) Return

func (*MockAppsInterface_Create_Call) Run

func (*MockAppsInterface_Create_Call) RunAndReturn

type MockAppsInterface_DeleteByName_Call

type MockAppsInterface_DeleteByName_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_DeleteByName_Call) Return

func (*MockAppsInterface_DeleteByName_Call) Run

func (*MockAppsInterface_DeleteByName_Call) RunAndReturn

type MockAppsInterface_Delete_Call

type MockAppsInterface_Delete_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_Delete_Call) Return

func (*MockAppsInterface_Delete_Call) Run

func (*MockAppsInterface_Delete_Call) RunAndReturn

type MockAppsInterface_DeployAndWait_Call

type MockAppsInterface_DeployAndWait_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_DeployAndWait_Call) Return

func (*MockAppsInterface_DeployAndWait_Call) Run

type MockAppsInterface_Deploy_Call

type MockAppsInterface_Deploy_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_Deploy_Call) Run

type MockAppsInterface_Expecter

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

func (*MockAppsInterface_Expecter) Create

func (_e *MockAppsInterface_Expecter) Create(ctx interface{}, createAppRequest interface{}) *MockAppsInterface_Create_Call

Create is a helper method to define mock.On call

  • ctx context.Context
  • createAppRequest apps.CreateAppRequest

func (*MockAppsInterface_Expecter) CreateAndWait

func (_e *MockAppsInterface_Expecter) CreateAndWait(ctx interface{}, createAppRequest interface{}, options ...interface{}) *MockAppsInterface_CreateAndWait_Call

CreateAndWait is a helper method to define mock.On call

  • ctx context.Context
  • createAppRequest apps.CreateAppRequest
  • options ...retries.Option[apps.App]

func (*MockAppsInterface_Expecter) Delete

func (_e *MockAppsInterface_Expecter) Delete(ctx interface{}, request interface{}) *MockAppsInterface_Delete_Call

Delete is a helper method to define mock.On call

  • ctx context.Context
  • request apps.DeleteAppRequest

func (*MockAppsInterface_Expecter) DeleteByName

func (_e *MockAppsInterface_Expecter) DeleteByName(ctx interface{}, name interface{}) *MockAppsInterface_DeleteByName_Call

DeleteByName is a helper method to define mock.On call

  • ctx context.Context
  • name string

func (*MockAppsInterface_Expecter) Deploy

func (_e *MockAppsInterface_Expecter) Deploy(ctx interface{}, createAppDeploymentRequest interface{}) *MockAppsInterface_Deploy_Call

Deploy is a helper method to define mock.On call

  • ctx context.Context
  • createAppDeploymentRequest apps.CreateAppDeploymentRequest

func (*MockAppsInterface_Expecter) DeployAndWait

func (_e *MockAppsInterface_Expecter) DeployAndWait(ctx interface{}, createAppDeploymentRequest interface{}, options ...interface{}) *MockAppsInterface_DeployAndWait_Call

DeployAndWait is a helper method to define mock.On call

  • ctx context.Context
  • createAppDeploymentRequest apps.CreateAppDeploymentRequest
  • options ...retries.Option[apps.AppDeployment]

func (*MockAppsInterface_Expecter) Get

func (_e *MockAppsInterface_Expecter) Get(ctx interface{}, request interface{}) *MockAppsInterface_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • request apps.GetAppRequest

func (*MockAppsInterface_Expecter) GetByName

func (_e *MockAppsInterface_Expecter) GetByName(ctx interface{}, name interface{}) *MockAppsInterface_GetByName_Call

GetByName is a helper method to define mock.On call

  • ctx context.Context
  • name string

func (*MockAppsInterface_Expecter) GetDeployment

func (_e *MockAppsInterface_Expecter) GetDeployment(ctx interface{}, request interface{}) *MockAppsInterface_GetDeployment_Call

GetDeployment is a helper method to define mock.On call

  • ctx context.Context
  • request apps.GetAppDeploymentRequest

func (*MockAppsInterface_Expecter) GetDeploymentByAppNameAndDeploymentId

func (_e *MockAppsInterface_Expecter) GetDeploymentByAppNameAndDeploymentId(ctx interface{}, appName interface{}, deploymentId interface{}) *MockAppsInterface_GetDeploymentByAppNameAndDeploymentId_Call

GetDeploymentByAppNameAndDeploymentId is a helper method to define mock.On call

  • ctx context.Context
  • appName string
  • deploymentId string

func (*MockAppsInterface_Expecter) GetPermissionLevels

func (_e *MockAppsInterface_Expecter) GetPermissionLevels(ctx interface{}, request interface{}) *MockAppsInterface_GetPermissionLevels_Call

GetPermissionLevels is a helper method to define mock.On call

  • ctx context.Context
  • request apps.GetAppPermissionLevelsRequest

func (*MockAppsInterface_Expecter) GetPermissionLevelsByAppName

func (_e *MockAppsInterface_Expecter) GetPermissionLevelsByAppName(ctx interface{}, appName interface{}) *MockAppsInterface_GetPermissionLevelsByAppName_Call

GetPermissionLevelsByAppName is a helper method to define mock.On call

  • ctx context.Context
  • appName string

func (*MockAppsInterface_Expecter) GetPermissions

func (_e *MockAppsInterface_Expecter) GetPermissions(ctx interface{}, request interface{}) *MockAppsInterface_GetPermissions_Call

GetPermissions is a helper method to define mock.On call

  • ctx context.Context
  • request apps.GetAppPermissionsRequest

func (*MockAppsInterface_Expecter) GetPermissionsByAppName

func (_e *MockAppsInterface_Expecter) GetPermissionsByAppName(ctx interface{}, appName interface{}) *MockAppsInterface_GetPermissionsByAppName_Call

GetPermissionsByAppName is a helper method to define mock.On call

  • ctx context.Context
  • appName string

func (*MockAppsInterface_Expecter) List

func (_e *MockAppsInterface_Expecter) List(ctx interface{}, request interface{}) *MockAppsInterface_List_Call

List is a helper method to define mock.On call

  • ctx context.Context
  • request apps.ListAppsRequest

func (*MockAppsInterface_Expecter) ListAll

func (_e *MockAppsInterface_Expecter) ListAll(ctx interface{}, request interface{}) *MockAppsInterface_ListAll_Call

ListAll is a helper method to define mock.On call

  • ctx context.Context
  • request apps.ListAppsRequest

func (*MockAppsInterface_Expecter) ListDeployments

func (_e *MockAppsInterface_Expecter) ListDeployments(ctx interface{}, request interface{}) *MockAppsInterface_ListDeployments_Call

ListDeployments is a helper method to define mock.On call

  • ctx context.Context
  • request apps.ListAppDeploymentsRequest

func (*MockAppsInterface_Expecter) ListDeploymentsAll

func (_e *MockAppsInterface_Expecter) ListDeploymentsAll(ctx interface{}, request interface{}) *MockAppsInterface_ListDeploymentsAll_Call

ListDeploymentsAll is a helper method to define mock.On call

  • ctx context.Context
  • request apps.ListAppDeploymentsRequest

func (*MockAppsInterface_Expecter) ListDeploymentsByAppName

func (_e *MockAppsInterface_Expecter) ListDeploymentsByAppName(ctx interface{}, appName interface{}) *MockAppsInterface_ListDeploymentsByAppName_Call

ListDeploymentsByAppName is a helper method to define mock.On call

  • ctx context.Context
  • appName string

func (*MockAppsInterface_Expecter) SetPermissions

func (_e *MockAppsInterface_Expecter) SetPermissions(ctx interface{}, request interface{}) *MockAppsInterface_SetPermissions_Call

SetPermissions is a helper method to define mock.On call

  • ctx context.Context
  • request apps.AppPermissionsRequest

func (*MockAppsInterface_Expecter) Start

func (_e *MockAppsInterface_Expecter) Start(ctx interface{}, startAppRequest interface{}) *MockAppsInterface_Start_Call

Start is a helper method to define mock.On call

  • ctx context.Context
  • startAppRequest apps.StartAppRequest

func (*MockAppsInterface_Expecter) StartAndWait

func (_e *MockAppsInterface_Expecter) StartAndWait(ctx interface{}, startAppRequest interface{}, options ...interface{}) *MockAppsInterface_StartAndWait_Call

StartAndWait is a helper method to define mock.On call

  • ctx context.Context
  • startAppRequest apps.StartAppRequest
  • options ...retries.Option[apps.App]

func (*MockAppsInterface_Expecter) Stop

func (_e *MockAppsInterface_Expecter) Stop(ctx interface{}, stopAppRequest interface{}) *MockAppsInterface_Stop_Call

Stop is a helper method to define mock.On call

  • ctx context.Context
  • stopAppRequest apps.StopAppRequest

func (*MockAppsInterface_Expecter) StopAndWait added in v0.47.0

func (_e *MockAppsInterface_Expecter) StopAndWait(ctx interface{}, stopAppRequest interface{}, options ...interface{}) *MockAppsInterface_StopAndWait_Call

StopAndWait is a helper method to define mock.On call

  • ctx context.Context
  • stopAppRequest apps.StopAppRequest
  • options ...retries.Option[apps.App]

func (*MockAppsInterface_Expecter) Update

func (_e *MockAppsInterface_Expecter) Update(ctx interface{}, request interface{}) *MockAppsInterface_Update_Call

Update is a helper method to define mock.On call

  • ctx context.Context
  • request apps.UpdateAppRequest

func (*MockAppsInterface_Expecter) UpdatePermissions

func (_e *MockAppsInterface_Expecter) UpdatePermissions(ctx interface{}, request interface{}) *MockAppsInterface_UpdatePermissions_Call

UpdatePermissions is a helper method to define mock.On call

  • ctx context.Context
  • request apps.AppPermissionsRequest

func (*MockAppsInterface_Expecter) WaitGetAppActive added in v0.47.0

func (_e *MockAppsInterface_Expecter) WaitGetAppActive(ctx interface{}, name interface{}, timeout interface{}, callback interface{}) *MockAppsInterface_WaitGetAppActive_Call

WaitGetAppActive is a helper method to define mock.On call

  • ctx context.Context
  • name string
  • timeout time.Duration
  • callback func(*apps.App)

func (*MockAppsInterface_Expecter) WaitGetAppStopped added in v0.47.0

func (_e *MockAppsInterface_Expecter) WaitGetAppStopped(ctx interface{}, name interface{}, timeout interface{}, callback interface{}) *MockAppsInterface_WaitGetAppStopped_Call

WaitGetAppStopped is a helper method to define mock.On call

  • ctx context.Context
  • name string
  • timeout time.Duration
  • callback func(*apps.App)

func (*MockAppsInterface_Expecter) WaitGetDeploymentAppSucceeded

func (_e *MockAppsInterface_Expecter) WaitGetDeploymentAppSucceeded(ctx interface{}, appName interface{}, deploymentId interface{}, timeout interface{}, callback interface{}) *MockAppsInterface_WaitGetDeploymentAppSucceeded_Call

WaitGetDeploymentAppSucceeded is a helper method to define mock.On call

  • ctx context.Context
  • appName string
  • deploymentId string
  • timeout time.Duration
  • callback func(*apps.AppDeployment)

type MockAppsInterface_GetByName_Call

type MockAppsInterface_GetByName_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_GetByName_Call) Return

func (*MockAppsInterface_GetByName_Call) Run

func (*MockAppsInterface_GetByName_Call) RunAndReturn

type MockAppsInterface_GetDeploymentByAppNameAndDeploymentId_Call

type MockAppsInterface_GetDeploymentByAppNameAndDeploymentId_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_GetDeploymentByAppNameAndDeploymentId_Call) Return

func (*MockAppsInterface_GetDeploymentByAppNameAndDeploymentId_Call) Run

func (*MockAppsInterface_GetDeploymentByAppNameAndDeploymentId_Call) RunAndReturn

type MockAppsInterface_GetDeployment_Call

type MockAppsInterface_GetDeployment_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_GetDeployment_Call) Return

func (*MockAppsInterface_GetDeployment_Call) Run

type MockAppsInterface_GetPermissionLevelsByAppName_Call

type MockAppsInterface_GetPermissionLevelsByAppName_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_GetPermissionLevelsByAppName_Call) Run

type MockAppsInterface_GetPermissionLevels_Call

type MockAppsInterface_GetPermissionLevels_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_GetPermissionLevels_Call) Return

func (*MockAppsInterface_GetPermissionLevels_Call) Run

type MockAppsInterface_GetPermissionsByAppName_Call

type MockAppsInterface_GetPermissionsByAppName_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_GetPermissionsByAppName_Call) Return

func (*MockAppsInterface_GetPermissionsByAppName_Call) Run

func (*MockAppsInterface_GetPermissionsByAppName_Call) RunAndReturn

type MockAppsInterface_GetPermissions_Call

type MockAppsInterface_GetPermissions_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_GetPermissions_Call) Return

func (*MockAppsInterface_GetPermissions_Call) Run

type MockAppsInterface_Get_Call

type MockAppsInterface_Get_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_Get_Call) Return

func (*MockAppsInterface_Get_Call) Run

func (*MockAppsInterface_Get_Call) RunAndReturn

type MockAppsInterface_ListAll_Call

type MockAppsInterface_ListAll_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_ListAll_Call) Return

func (*MockAppsInterface_ListAll_Call) Run

func (*MockAppsInterface_ListAll_Call) RunAndReturn

type MockAppsInterface_ListDeploymentsAll_Call

type MockAppsInterface_ListDeploymentsAll_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_ListDeploymentsAll_Call) Return

func (*MockAppsInterface_ListDeploymentsAll_Call) Run

type MockAppsInterface_ListDeploymentsByAppName_Call

type MockAppsInterface_ListDeploymentsByAppName_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_ListDeploymentsByAppName_Call) Return

func (*MockAppsInterface_ListDeploymentsByAppName_Call) Run

type MockAppsInterface_ListDeployments_Call

type MockAppsInterface_ListDeployments_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_ListDeployments_Call) Return

func (*MockAppsInterface_ListDeployments_Call) Run

type MockAppsInterface_List_Call

type MockAppsInterface_List_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_List_Call) Return

func (*MockAppsInterface_List_Call) Run

func (*MockAppsInterface_List_Call) RunAndReturn

type MockAppsInterface_SetPermissions_Call

type MockAppsInterface_SetPermissions_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_SetPermissions_Call) Return

func (*MockAppsInterface_SetPermissions_Call) Run

type MockAppsInterface_StartAndWait_Call

type MockAppsInterface_StartAndWait_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_StartAndWait_Call) Return

func (*MockAppsInterface_StartAndWait_Call) Run

func (*MockAppsInterface_StartAndWait_Call) RunAndReturn

type MockAppsInterface_Start_Call

type MockAppsInterface_Start_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_Start_Call) Return

func (*MockAppsInterface_Start_Call) Run

func (*MockAppsInterface_Start_Call) RunAndReturn

type MockAppsInterface_StopAndWait_Call added in v0.47.0

type MockAppsInterface_StopAndWait_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_StopAndWait_Call) Return added in v0.47.0

func (*MockAppsInterface_StopAndWait_Call) Run added in v0.47.0

func (*MockAppsInterface_StopAndWait_Call) RunAndReturn added in v0.47.0

type MockAppsInterface_Stop_Call

type MockAppsInterface_Stop_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_Stop_Call) Return

func (*MockAppsInterface_Stop_Call) Run

func (*MockAppsInterface_Stop_Call) RunAndReturn

type MockAppsInterface_UpdatePermissions_Call

type MockAppsInterface_UpdatePermissions_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_UpdatePermissions_Call) Return

func (*MockAppsInterface_UpdatePermissions_Call) Run

type MockAppsInterface_Update_Call

type MockAppsInterface_Update_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_Update_Call) Return

func (*MockAppsInterface_Update_Call) Run

func (*MockAppsInterface_Update_Call) RunAndReturn

type MockAppsInterface_WaitGetAppActive_Call added in v0.47.0

type MockAppsInterface_WaitGetAppActive_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_WaitGetAppActive_Call) Return added in v0.47.0

func (*MockAppsInterface_WaitGetAppActive_Call) Run added in v0.47.0

func (*MockAppsInterface_WaitGetAppActive_Call) RunAndReturn added in v0.47.0

type MockAppsInterface_WaitGetAppStopped_Call added in v0.47.0

type MockAppsInterface_WaitGetAppStopped_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_WaitGetAppStopped_Call) Return added in v0.47.0

func (*MockAppsInterface_WaitGetAppStopped_Call) Run added in v0.47.0

func (*MockAppsInterface_WaitGetAppStopped_Call) RunAndReturn added in v0.47.0

type MockAppsInterface_WaitGetDeploymentAppSucceeded_Call

type MockAppsInterface_WaitGetDeploymentAppSucceeded_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_WaitGetDeploymentAppSucceeded_Call) Return

func (*MockAppsInterface_WaitGetDeploymentAppSucceeded_Call) Run

Jump to

Keyboard shortcuts

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