serving

package
v0.41.0 Latest Latest
Warning

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

Go to latest
Published: May 21, 2024 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

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

func (*MockAppsInterface) CreateAndWait added in v0.40.0

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

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

func (*MockAppsInterface) CreateDeployment added in v0.40.0

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

func (*MockAppsInterface) CreateDeploymentAndWait added in v0.40.0

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

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

func (*MockAppsInterface) Delete added in v0.40.0

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

func (*MockAppsInterface) DeleteByName added in v0.40.0

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

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

func (*MockAppsInterface) EXPECT

func (*MockAppsInterface) Get added in v0.40.0

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

func (*MockAppsInterface) GetByName added in v0.40.0

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

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

func (*MockAppsInterface) GetDeployment added in v0.40.0

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

func (*MockAppsInterface) GetDeploymentByAppNameAndDeploymentId added in v0.40.0

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

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

func (*MockAppsInterface) GetEnvironment added in v0.40.0

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

func (*MockAppsInterface) GetEnvironmentByName added in v0.40.0

func (_m *MockAppsInterface) GetEnvironmentByName(ctx context.Context, name string) (*serving.AppEnvironment, error)

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

func (*MockAppsInterface) Impl

Impl provides a mock function with given fields:

func (*MockAppsInterface) List added in v0.40.0

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

func (*MockAppsInterface) ListAll added in v0.40.0

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

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

func (*MockAppsInterface) ListDeployments added in v0.40.0

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

func (*MockAppsInterface) ListDeploymentsAll added in v0.40.0

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

func (*MockAppsInterface) ListDeploymentsByAppName added in v0.40.0

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

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

func (*MockAppsInterface) Stop added in v0.40.0

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

func (*MockAppsInterface) Update added in v0.40.0

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

func (*MockAppsInterface) WaitGetAppIdle added in v0.40.0

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

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

func (*MockAppsInterface) WaitGetDeploymentAppSucceeded added in v0.40.0

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

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

func (*MockAppsInterface) WithImpl

WithImpl provides a mock function with given fields: impl

type MockAppsInterface_CreateAndWait_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_CreateAndWait_Call) Run added in v0.40.0

func (*MockAppsInterface_CreateAndWait_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_CreateDeploymentAndWait_Call added in v0.40.0

type MockAppsInterface_CreateDeploymentAndWait_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_CreateDeploymentAndWait_Call) Return added in v0.40.0

func (*MockAppsInterface_CreateDeploymentAndWait_Call) Run added in v0.40.0

type MockAppsInterface_CreateDeployment_Call added in v0.40.0

type MockAppsInterface_CreateDeployment_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_CreateDeployment_Call) Return added in v0.40.0

func (*MockAppsInterface_CreateDeployment_Call) Run added in v0.40.0

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

type MockAppsInterface_DeleteByName_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_DeleteByName_Call) Run added in v0.40.0

func (*MockAppsInterface_DeleteByName_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_Delete_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_Delete_Call) Run added in v0.40.0

func (*MockAppsInterface_Delete_Call) RunAndReturn added in v0.40.0

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 serving.CreateAppRequest

func (*MockAppsInterface_Expecter) CreateAndWait added in v0.40.0

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 serving.CreateAppRequest
  • options ...retries.Option[serving.App]

func (*MockAppsInterface_Expecter) CreateDeployment added in v0.40.0

func (_e *MockAppsInterface_Expecter) CreateDeployment(ctx interface{}, createAppDeploymentRequest interface{}) *MockAppsInterface_CreateDeployment_Call

CreateDeployment is a helper method to define mock.On call

  • ctx context.Context
  • createAppDeploymentRequest serving.CreateAppDeploymentRequest

func (*MockAppsInterface_Expecter) CreateDeploymentAndWait added in v0.40.0

func (_e *MockAppsInterface_Expecter) CreateDeploymentAndWait(ctx interface{}, createAppDeploymentRequest interface{}, options ...interface{}) *MockAppsInterface_CreateDeploymentAndWait_Call

CreateDeploymentAndWait is a helper method to define mock.On call

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

func (*MockAppsInterface_Expecter) Delete added in v0.40.0

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 serving.DeleteAppRequest

func (*MockAppsInterface_Expecter) DeleteByName added in v0.40.0

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) Get added in v0.40.0

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 serving.GetAppRequest

func (*MockAppsInterface_Expecter) GetByName added in v0.40.0

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 added in v0.40.0

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 serving.GetAppDeploymentRequest

func (*MockAppsInterface_Expecter) GetDeploymentByAppNameAndDeploymentId added in v0.40.0

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) GetEnvironment added in v0.40.0

func (_e *MockAppsInterface_Expecter) GetEnvironment(ctx interface{}, request interface{}) *MockAppsInterface_GetEnvironment_Call

GetEnvironment is a helper method to define mock.On call

  • ctx context.Context
  • request serving.GetAppEnvironmentRequest

func (*MockAppsInterface_Expecter) GetEnvironmentByName added in v0.40.0

func (_e *MockAppsInterface_Expecter) GetEnvironmentByName(ctx interface{}, name interface{}) *MockAppsInterface_GetEnvironmentByName_Call

GetEnvironmentByName is a helper method to define mock.On call

  • ctx context.Context
  • name string

func (*MockAppsInterface_Expecter) Impl

Impl is a helper method to define mock.On call

func (*MockAppsInterface_Expecter) List added in v0.40.0

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 serving.ListAppsRequest

func (*MockAppsInterface_Expecter) ListAll added in v0.40.0

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 serving.ListAppsRequest

func (*MockAppsInterface_Expecter) ListDeployments added in v0.40.0

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 serving.ListAppDeploymentsRequest

func (*MockAppsInterface_Expecter) ListDeploymentsAll added in v0.40.0

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 serving.ListAppDeploymentsRequest

func (*MockAppsInterface_Expecter) ListDeploymentsByAppName added in v0.40.0

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) Stop added in v0.40.0

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

Stop is a helper method to define mock.On call

  • ctx context.Context
  • request serving.StopAppRequest

func (*MockAppsInterface_Expecter) Update added in v0.40.0

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 serving.UpdateAppRequest

func (*MockAppsInterface_Expecter) WaitGetAppIdle added in v0.40.0

func (_e *MockAppsInterface_Expecter) WaitGetAppIdle(ctx interface{}, name interface{}, timeout interface{}, callback interface{}) *MockAppsInterface_WaitGetAppIdle_Call

WaitGetAppIdle is a helper method to define mock.On call

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

func (*MockAppsInterface_Expecter) WaitGetDeploymentAppSucceeded added in v0.40.0

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(*serving.AppDeployment)

func (*MockAppsInterface_Expecter) WithImpl

func (_e *MockAppsInterface_Expecter) WithImpl(impl interface{}) *MockAppsInterface_WithImpl_Call

WithImpl is a helper method to define mock.On call

  • impl serving.AppsService

type MockAppsInterface_GetByName_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_GetByName_Call) Run added in v0.40.0

func (*MockAppsInterface_GetByName_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_GetDeploymentByAppNameAndDeploymentId_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_GetDeploymentByAppNameAndDeploymentId_Call) Run added in v0.40.0

func (*MockAppsInterface_GetDeploymentByAppNameAndDeploymentId_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_GetDeployment_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_GetDeployment_Call) Run added in v0.40.0

func (*MockAppsInterface_GetDeployment_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_GetEnvironmentByName_Call added in v0.40.0

type MockAppsInterface_GetEnvironmentByName_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_GetEnvironmentByName_Call) Return added in v0.40.0

func (*MockAppsInterface_GetEnvironmentByName_Call) Run added in v0.40.0

func (*MockAppsInterface_GetEnvironmentByName_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_GetEnvironment_Call added in v0.40.0

type MockAppsInterface_GetEnvironment_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_GetEnvironment_Call) Return added in v0.40.0

func (*MockAppsInterface_GetEnvironment_Call) Run added in v0.40.0

func (*MockAppsInterface_GetEnvironment_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_Get_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_Get_Call) Run added in v0.40.0

func (*MockAppsInterface_Get_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_Impl_Call

type MockAppsInterface_Impl_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_Impl_Call) Return

func (*MockAppsInterface_Impl_Call) Run

func (*MockAppsInterface_Impl_Call) RunAndReturn

type MockAppsInterface_ListAll_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_ListAll_Call) Run added in v0.40.0

func (*MockAppsInterface_ListAll_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_ListDeploymentsAll_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_ListDeploymentsAll_Call) Run added in v0.40.0

func (*MockAppsInterface_ListDeploymentsAll_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_ListDeploymentsByAppName_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_ListDeploymentsByAppName_Call) Run added in v0.40.0

func (*MockAppsInterface_ListDeploymentsByAppName_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_ListDeployments_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_ListDeployments_Call) Run added in v0.40.0

func (*MockAppsInterface_ListDeployments_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_List_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_List_Call) Run added in v0.40.0

func (*MockAppsInterface_List_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_Stop_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_Stop_Call) Run added in v0.40.0

func (*MockAppsInterface_Stop_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_Update_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_Update_Call) Run added in v0.40.0

func (*MockAppsInterface_Update_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_WaitGetAppIdle_Call added in v0.40.0

type MockAppsInterface_WaitGetAppIdle_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_WaitGetAppIdle_Call) Return added in v0.40.0

func (*MockAppsInterface_WaitGetAppIdle_Call) Run added in v0.40.0

func (*MockAppsInterface_WaitGetAppIdle_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_WaitGetDeploymentAppSucceeded_Call added in v0.40.0

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 added in v0.40.0

func (*MockAppsInterface_WaitGetDeploymentAppSucceeded_Call) Run added in v0.40.0

func (*MockAppsInterface_WaitGetDeploymentAppSucceeded_Call) RunAndReturn added in v0.40.0

type MockAppsInterface_WithImpl_Call

type MockAppsInterface_WithImpl_Call struct {
	*mock.Call
}

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

func (*MockAppsInterface_WithImpl_Call) Return

func (*MockAppsInterface_WithImpl_Call) Run

func (*MockAppsInterface_WithImpl_Call) RunAndReturn

type MockServingEndpointsInterface

type MockServingEndpointsInterface struct {
	mock.Mock
}

MockServingEndpointsInterface is an autogenerated mock type for the ServingEndpointsInterface type

func NewMockServingEndpointsInterface

func NewMockServingEndpointsInterface(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockServingEndpointsInterface

NewMockServingEndpointsInterface creates a new instance of MockServingEndpointsInterface. 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 (*MockServingEndpointsInterface) BuildLogs

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

func (*MockServingEndpointsInterface) BuildLogsByNameAndServedModelName

func (_m *MockServingEndpointsInterface) BuildLogsByNameAndServedModelName(ctx context.Context, name string, servedModelName string) (*serving.BuildLogsResponse, error)

BuildLogsByNameAndServedModelName provides a mock function with given fields: ctx, name, servedModelName

func (*MockServingEndpointsInterface) Create

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

func (*MockServingEndpointsInterface) CreateAndWait

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

func (*MockServingEndpointsInterface) Delete

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

func (*MockServingEndpointsInterface) DeleteByName

func (_m *MockServingEndpointsInterface) DeleteByName(ctx context.Context, name string) error

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

func (*MockServingEndpointsInterface) EXPECT

func (*MockServingEndpointsInterface) ExportMetrics

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

func (*MockServingEndpointsInterface) ExportMetricsByName

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

func (*MockServingEndpointsInterface) Get

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

func (*MockServingEndpointsInterface) GetByName

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

func (*MockServingEndpointsInterface) GetOpenApi added in v0.39.0

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

func (*MockServingEndpointsInterface) GetOpenApiByName added in v0.39.0

func (_m *MockServingEndpointsInterface) GetOpenApiByName(ctx context.Context, name string) error

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

func (*MockServingEndpointsInterface) GetPermissionLevels

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

func (*MockServingEndpointsInterface) GetPermissionLevelsByServingEndpointId

func (_m *MockServingEndpointsInterface) GetPermissionLevelsByServingEndpointId(ctx context.Context, servingEndpointId string) (*serving.GetServingEndpointPermissionLevelsResponse, error)

GetPermissionLevelsByServingEndpointId provides a mock function with given fields: ctx, servingEndpointId

func (*MockServingEndpointsInterface) GetPermissions

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

func (*MockServingEndpointsInterface) GetPermissionsByServingEndpointId

func (_m *MockServingEndpointsInterface) GetPermissionsByServingEndpointId(ctx context.Context, servingEndpointId string) (*serving.ServingEndpointPermissions, error)

GetPermissionsByServingEndpointId provides a mock function with given fields: ctx, servingEndpointId

func (*MockServingEndpointsInterface) Impl

Impl provides a mock function with given fields:

func (*MockServingEndpointsInterface) List

List provides a mock function with given fields: ctx

func (*MockServingEndpointsInterface) ListAll

ListAll provides a mock function with given fields: ctx

func (*MockServingEndpointsInterface) Logs

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

func (*MockServingEndpointsInterface) LogsByNameAndServedModelName

func (_m *MockServingEndpointsInterface) LogsByNameAndServedModelName(ctx context.Context, name string, servedModelName string) (*serving.ServerLogsResponse, error)

LogsByNameAndServedModelName provides a mock function with given fields: ctx, name, servedModelName

func (*MockServingEndpointsInterface) Patch

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

func (*MockServingEndpointsInterface) Put

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

func (*MockServingEndpointsInterface) Query

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

func (*MockServingEndpointsInterface) SetPermissions

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

func (*MockServingEndpointsInterface) UpdateConfig

UpdateConfig provides a mock function with given fields: ctx, endpointCoreConfigInput

func (*MockServingEndpointsInterface) UpdateConfigAndWait

UpdateConfigAndWait provides a mock function with given fields: ctx, endpointCoreConfigInput, options

func (*MockServingEndpointsInterface) UpdatePermissions

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

func (*MockServingEndpointsInterface) WaitGetServingEndpointNotUpdating

func (_m *MockServingEndpointsInterface) WaitGetServingEndpointNotUpdating(ctx context.Context, name string, timeout time.Duration, callback func(*serving.ServingEndpointDetailed)) (*serving.ServingEndpointDetailed, error)

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

func (*MockServingEndpointsInterface) WithImpl

WithImpl provides a mock function with given fields: impl

type MockServingEndpointsInterface_BuildLogsByNameAndServedModelName_Call

type MockServingEndpointsInterface_BuildLogsByNameAndServedModelName_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_BuildLogsByNameAndServedModelName_Call) Run

type MockServingEndpointsInterface_BuildLogs_Call

type MockServingEndpointsInterface_BuildLogs_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_BuildLogs_Call) Return

func (*MockServingEndpointsInterface_BuildLogs_Call) Run

type MockServingEndpointsInterface_CreateAndWait_Call

type MockServingEndpointsInterface_CreateAndWait_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_CreateAndWait_Call) Return

func (*MockServingEndpointsInterface_CreateAndWait_Call) Run

type MockServingEndpointsInterface_Create_Call

type MockServingEndpointsInterface_Create_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_Create_Call) Run

type MockServingEndpointsInterface_DeleteByName_Call

type MockServingEndpointsInterface_DeleteByName_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_DeleteByName_Call) Return

func (*MockServingEndpointsInterface_DeleteByName_Call) Run

func (*MockServingEndpointsInterface_DeleteByName_Call) RunAndReturn

type MockServingEndpointsInterface_Delete_Call

type MockServingEndpointsInterface_Delete_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_Delete_Call) Return

func (*MockServingEndpointsInterface_Delete_Call) Run

type MockServingEndpointsInterface_Expecter

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

func (*MockServingEndpointsInterface_Expecter) BuildLogs

func (_e *MockServingEndpointsInterface_Expecter) BuildLogs(ctx interface{}, request interface{}) *MockServingEndpointsInterface_BuildLogs_Call

BuildLogs is a helper method to define mock.On call

  • ctx context.Context
  • request serving.BuildLogsRequest

func (*MockServingEndpointsInterface_Expecter) BuildLogsByNameAndServedModelName

func (_e *MockServingEndpointsInterface_Expecter) BuildLogsByNameAndServedModelName(ctx interface{}, name interface{}, servedModelName interface{}) *MockServingEndpointsInterface_BuildLogsByNameAndServedModelName_Call

BuildLogsByNameAndServedModelName is a helper method to define mock.On call

  • ctx context.Context
  • name string
  • servedModelName string

func (*MockServingEndpointsInterface_Expecter) Create

func (_e *MockServingEndpointsInterface_Expecter) Create(ctx interface{}, createServingEndpoint interface{}) *MockServingEndpointsInterface_Create_Call

Create is a helper method to define mock.On call

  • ctx context.Context
  • createServingEndpoint serving.CreateServingEndpoint

func (*MockServingEndpointsInterface_Expecter) CreateAndWait

func (_e *MockServingEndpointsInterface_Expecter) CreateAndWait(ctx interface{}, createServingEndpoint interface{}, options ...interface{}) *MockServingEndpointsInterface_CreateAndWait_Call

CreateAndWait is a helper method to define mock.On call

  • ctx context.Context
  • createServingEndpoint serving.CreateServingEndpoint
  • options ...retries.Option[serving.ServingEndpointDetailed]

func (*MockServingEndpointsInterface_Expecter) Delete

func (_e *MockServingEndpointsInterface_Expecter) Delete(ctx interface{}, request interface{}) *MockServingEndpointsInterface_Delete_Call

Delete is a helper method to define mock.On call

  • ctx context.Context
  • request serving.DeleteServingEndpointRequest

func (*MockServingEndpointsInterface_Expecter) DeleteByName

func (_e *MockServingEndpointsInterface_Expecter) DeleteByName(ctx interface{}, name interface{}) *MockServingEndpointsInterface_DeleteByName_Call

DeleteByName is a helper method to define mock.On call

  • ctx context.Context
  • name string

func (*MockServingEndpointsInterface_Expecter) ExportMetrics

func (_e *MockServingEndpointsInterface_Expecter) ExportMetrics(ctx interface{}, request interface{}) *MockServingEndpointsInterface_ExportMetrics_Call

ExportMetrics is a helper method to define mock.On call

  • ctx context.Context
  • request serving.ExportMetricsRequest

func (*MockServingEndpointsInterface_Expecter) ExportMetricsByName

func (_e *MockServingEndpointsInterface_Expecter) ExportMetricsByName(ctx interface{}, name interface{}) *MockServingEndpointsInterface_ExportMetricsByName_Call

ExportMetricsByName is a helper method to define mock.On call

  • ctx context.Context
  • name string

func (*MockServingEndpointsInterface_Expecter) Get

func (_e *MockServingEndpointsInterface_Expecter) Get(ctx interface{}, request interface{}) *MockServingEndpointsInterface_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • request serving.GetServingEndpointRequest

func (*MockServingEndpointsInterface_Expecter) GetByName

func (_e *MockServingEndpointsInterface_Expecter) GetByName(ctx interface{}, name interface{}) *MockServingEndpointsInterface_GetByName_Call

GetByName is a helper method to define mock.On call

  • ctx context.Context
  • name string

func (*MockServingEndpointsInterface_Expecter) GetOpenApi added in v0.39.0

func (_e *MockServingEndpointsInterface_Expecter) GetOpenApi(ctx interface{}, request interface{}) *MockServingEndpointsInterface_GetOpenApi_Call

GetOpenApi is a helper method to define mock.On call

  • ctx context.Context
  • request serving.GetOpenApiRequest

func (*MockServingEndpointsInterface_Expecter) GetOpenApiByName added in v0.39.0

func (_e *MockServingEndpointsInterface_Expecter) GetOpenApiByName(ctx interface{}, name interface{}) *MockServingEndpointsInterface_GetOpenApiByName_Call

GetOpenApiByName is a helper method to define mock.On call

  • ctx context.Context
  • name string

func (*MockServingEndpointsInterface_Expecter) GetPermissionLevels

func (_e *MockServingEndpointsInterface_Expecter) GetPermissionLevels(ctx interface{}, request interface{}) *MockServingEndpointsInterface_GetPermissionLevels_Call

GetPermissionLevels is a helper method to define mock.On call

  • ctx context.Context
  • request serving.GetServingEndpointPermissionLevelsRequest

func (*MockServingEndpointsInterface_Expecter) GetPermissionLevelsByServingEndpointId

func (_e *MockServingEndpointsInterface_Expecter) GetPermissionLevelsByServingEndpointId(ctx interface{}, servingEndpointId interface{}) *MockServingEndpointsInterface_GetPermissionLevelsByServingEndpointId_Call

GetPermissionLevelsByServingEndpointId is a helper method to define mock.On call

  • ctx context.Context
  • servingEndpointId string

func (*MockServingEndpointsInterface_Expecter) GetPermissions

func (_e *MockServingEndpointsInterface_Expecter) GetPermissions(ctx interface{}, request interface{}) *MockServingEndpointsInterface_GetPermissions_Call

GetPermissions is a helper method to define mock.On call

  • ctx context.Context
  • request serving.GetServingEndpointPermissionsRequest

func (*MockServingEndpointsInterface_Expecter) GetPermissionsByServingEndpointId

func (_e *MockServingEndpointsInterface_Expecter) GetPermissionsByServingEndpointId(ctx interface{}, servingEndpointId interface{}) *MockServingEndpointsInterface_GetPermissionsByServingEndpointId_Call

GetPermissionsByServingEndpointId is a helper method to define mock.On call

  • ctx context.Context
  • servingEndpointId string

func (*MockServingEndpointsInterface_Expecter) Impl

Impl is a helper method to define mock.On call

func (*MockServingEndpointsInterface_Expecter) List

List is a helper method to define mock.On call

  • ctx context.Context

func (*MockServingEndpointsInterface_Expecter) ListAll

ListAll is a helper method to define mock.On call

  • ctx context.Context

func (*MockServingEndpointsInterface_Expecter) Logs

func (_e *MockServingEndpointsInterface_Expecter) Logs(ctx interface{}, request interface{}) *MockServingEndpointsInterface_Logs_Call

Logs is a helper method to define mock.On call

  • ctx context.Context
  • request serving.LogsRequest

func (*MockServingEndpointsInterface_Expecter) LogsByNameAndServedModelName

func (_e *MockServingEndpointsInterface_Expecter) LogsByNameAndServedModelName(ctx interface{}, name interface{}, servedModelName interface{}) *MockServingEndpointsInterface_LogsByNameAndServedModelName_Call

LogsByNameAndServedModelName is a helper method to define mock.On call

  • ctx context.Context
  • name string
  • servedModelName string

func (*MockServingEndpointsInterface_Expecter) Patch

func (_e *MockServingEndpointsInterface_Expecter) Patch(ctx interface{}, request interface{}) *MockServingEndpointsInterface_Patch_Call

Patch is a helper method to define mock.On call

  • ctx context.Context
  • request serving.PatchServingEndpointTags

func (*MockServingEndpointsInterface_Expecter) Put

func (_e *MockServingEndpointsInterface_Expecter) Put(ctx interface{}, request interface{}) *MockServingEndpointsInterface_Put_Call

Put is a helper method to define mock.On call

  • ctx context.Context
  • request serving.PutRequest

func (*MockServingEndpointsInterface_Expecter) Query

func (_e *MockServingEndpointsInterface_Expecter) Query(ctx interface{}, request interface{}) *MockServingEndpointsInterface_Query_Call

Query is a helper method to define mock.On call

  • ctx context.Context
  • request serving.QueryEndpointInput

func (*MockServingEndpointsInterface_Expecter) SetPermissions

func (_e *MockServingEndpointsInterface_Expecter) SetPermissions(ctx interface{}, request interface{}) *MockServingEndpointsInterface_SetPermissions_Call

SetPermissions is a helper method to define mock.On call

  • ctx context.Context
  • request serving.ServingEndpointPermissionsRequest

func (*MockServingEndpointsInterface_Expecter) UpdateConfig

func (_e *MockServingEndpointsInterface_Expecter) UpdateConfig(ctx interface{}, endpointCoreConfigInput interface{}) *MockServingEndpointsInterface_UpdateConfig_Call

UpdateConfig is a helper method to define mock.On call

  • ctx context.Context
  • endpointCoreConfigInput serving.EndpointCoreConfigInput

func (*MockServingEndpointsInterface_Expecter) UpdateConfigAndWait

func (_e *MockServingEndpointsInterface_Expecter) UpdateConfigAndWait(ctx interface{}, endpointCoreConfigInput interface{}, options ...interface{}) *MockServingEndpointsInterface_UpdateConfigAndWait_Call

UpdateConfigAndWait is a helper method to define mock.On call

  • ctx context.Context
  • endpointCoreConfigInput serving.EndpointCoreConfigInput
  • options ...retries.Option[serving.ServingEndpointDetailed]

func (*MockServingEndpointsInterface_Expecter) UpdatePermissions

func (_e *MockServingEndpointsInterface_Expecter) UpdatePermissions(ctx interface{}, request interface{}) *MockServingEndpointsInterface_UpdatePermissions_Call

UpdatePermissions is a helper method to define mock.On call

  • ctx context.Context
  • request serving.ServingEndpointPermissionsRequest

func (*MockServingEndpointsInterface_Expecter) WaitGetServingEndpointNotUpdating

func (_e *MockServingEndpointsInterface_Expecter) WaitGetServingEndpointNotUpdating(ctx interface{}, name interface{}, timeout interface{}, callback interface{}) *MockServingEndpointsInterface_WaitGetServingEndpointNotUpdating_Call

WaitGetServingEndpointNotUpdating is a helper method to define mock.On call

  • ctx context.Context
  • name string
  • timeout time.Duration
  • callback func(*serving.ServingEndpointDetailed)

func (*MockServingEndpointsInterface_Expecter) WithImpl

WithImpl is a helper method to define mock.On call

  • impl serving.ServingEndpointsService

type MockServingEndpointsInterface_ExportMetricsByName_Call

type MockServingEndpointsInterface_ExportMetricsByName_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_ExportMetricsByName_Call) Return

func (*MockServingEndpointsInterface_ExportMetricsByName_Call) Run

type MockServingEndpointsInterface_ExportMetrics_Call

type MockServingEndpointsInterface_ExportMetrics_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_ExportMetrics_Call) Return

func (*MockServingEndpointsInterface_ExportMetrics_Call) Run

type MockServingEndpointsInterface_GetByName_Call

type MockServingEndpointsInterface_GetByName_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_GetByName_Call) Return

func (*MockServingEndpointsInterface_GetByName_Call) Run

func (*MockServingEndpointsInterface_GetByName_Call) RunAndReturn

type MockServingEndpointsInterface_GetOpenApiByName_Call added in v0.39.0

type MockServingEndpointsInterface_GetOpenApiByName_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_GetOpenApiByName_Call) Return added in v0.39.0

func (*MockServingEndpointsInterface_GetOpenApiByName_Call) Run added in v0.39.0

func (*MockServingEndpointsInterface_GetOpenApiByName_Call) RunAndReturn added in v0.39.0

type MockServingEndpointsInterface_GetOpenApi_Call added in v0.39.0

type MockServingEndpointsInterface_GetOpenApi_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_GetOpenApi_Call) Return added in v0.39.0

func (*MockServingEndpointsInterface_GetOpenApi_Call) Run added in v0.39.0

func (*MockServingEndpointsInterface_GetOpenApi_Call) RunAndReturn added in v0.39.0

type MockServingEndpointsInterface_GetPermissionLevelsByServingEndpointId_Call

type MockServingEndpointsInterface_GetPermissionLevelsByServingEndpointId_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_GetPermissionLevelsByServingEndpointId_Call) Run

type MockServingEndpointsInterface_GetPermissionLevels_Call

type MockServingEndpointsInterface_GetPermissionLevels_Call struct {
	*mock.Call
}

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

type MockServingEndpointsInterface_GetPermissionsByServingEndpointId_Call

type MockServingEndpointsInterface_GetPermissionsByServingEndpointId_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_GetPermissionsByServingEndpointId_Call) Run

type MockServingEndpointsInterface_GetPermissions_Call

type MockServingEndpointsInterface_GetPermissions_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_GetPermissions_Call) Return

func (*MockServingEndpointsInterface_GetPermissions_Call) Run

type MockServingEndpointsInterface_Get_Call

type MockServingEndpointsInterface_Get_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_Get_Call) Return

func (*MockServingEndpointsInterface_Get_Call) Run

type MockServingEndpointsInterface_Impl_Call

type MockServingEndpointsInterface_Impl_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_Impl_Call) Return

func (*MockServingEndpointsInterface_Impl_Call) Run

func (*MockServingEndpointsInterface_Impl_Call) RunAndReturn

type MockServingEndpointsInterface_ListAll_Call

type MockServingEndpointsInterface_ListAll_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_ListAll_Call) Return

func (*MockServingEndpointsInterface_ListAll_Call) Run

func (*MockServingEndpointsInterface_ListAll_Call) RunAndReturn

type MockServingEndpointsInterface_List_Call

type MockServingEndpointsInterface_List_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_List_Call) Return

func (*MockServingEndpointsInterface_List_Call) Run

func (*MockServingEndpointsInterface_List_Call) RunAndReturn

type MockServingEndpointsInterface_LogsByNameAndServedModelName_Call

type MockServingEndpointsInterface_LogsByNameAndServedModelName_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_LogsByNameAndServedModelName_Call) Return

func (*MockServingEndpointsInterface_LogsByNameAndServedModelName_Call) Run

type MockServingEndpointsInterface_Logs_Call

type MockServingEndpointsInterface_Logs_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_Logs_Call) Return

func (*MockServingEndpointsInterface_Logs_Call) Run

type MockServingEndpointsInterface_Patch_Call

type MockServingEndpointsInterface_Patch_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_Patch_Call) Return

func (*MockServingEndpointsInterface_Patch_Call) Run

type MockServingEndpointsInterface_Put_Call

type MockServingEndpointsInterface_Put_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_Put_Call) Return

func (*MockServingEndpointsInterface_Put_Call) Run

func (*MockServingEndpointsInterface_Put_Call) RunAndReturn

type MockServingEndpointsInterface_Query_Call

type MockServingEndpointsInterface_Query_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_Query_Call) Return

func (*MockServingEndpointsInterface_Query_Call) Run

type MockServingEndpointsInterface_SetPermissions_Call

type MockServingEndpointsInterface_SetPermissions_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_SetPermissions_Call) Return

func (*MockServingEndpointsInterface_SetPermissions_Call) Run

type MockServingEndpointsInterface_UpdateConfigAndWait_Call

type MockServingEndpointsInterface_UpdateConfigAndWait_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_UpdateConfigAndWait_Call) Return

func (*MockServingEndpointsInterface_UpdateConfigAndWait_Call) Run

type MockServingEndpointsInterface_UpdateConfig_Call

type MockServingEndpointsInterface_UpdateConfig_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_UpdateConfig_Call) Run

type MockServingEndpointsInterface_UpdatePermissions_Call

type MockServingEndpointsInterface_UpdatePermissions_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_UpdatePermissions_Call) Run

type MockServingEndpointsInterface_WaitGetServingEndpointNotUpdating_Call

type MockServingEndpointsInterface_WaitGetServingEndpointNotUpdating_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_WaitGetServingEndpointNotUpdating_Call) Run

type MockServingEndpointsInterface_WithImpl_Call

type MockServingEndpointsInterface_WithImpl_Call struct {
	*mock.Call
}

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

func (*MockServingEndpointsInterface_WithImpl_Call) Run

Jump to

Keyboard shortcuts

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