dbmock

package
v0.24.0 Latest Latest
Warning

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

Go to latest
Published: Jun 9, 2023 License: AGPL-3.0 Imports: 8 Imported by: 0

Documentation

Overview

package dbmock contains a mocked implementation of the database.Store interface for use in tests

Package dbmock is a generated GoMock package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MockStore

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

MockStore is a mock of Store interface.

func NewMockStore

func NewMockStore(ctrl *gomock.Controller) *MockStore

NewMockStore creates a new mock instance.

func (*MockStore) AcquireLock

func (m *MockStore) AcquireLock(arg0 context.Context, arg1 int64) error

AcquireLock mocks base method.

func (*MockStore) AcquireProvisionerJob

AcquireProvisionerJob mocks base method.

func (*MockStore) DeleteAPIKeyByID

func (m *MockStore) DeleteAPIKeyByID(arg0 context.Context, arg1 string) error

DeleteAPIKeyByID mocks base method.

func (*MockStore) DeleteAPIKeysByUserID

func (m *MockStore) DeleteAPIKeysByUserID(arg0 context.Context, arg1 uuid.UUID) error

DeleteAPIKeysByUserID mocks base method.

func (*MockStore) DeleteApplicationConnectAPIKeysByUserID

func (m *MockStore) DeleteApplicationConnectAPIKeysByUserID(arg0 context.Context, arg1 uuid.UUID) error

DeleteApplicationConnectAPIKeysByUserID mocks base method.

func (*MockStore) DeleteGitSSHKey

func (m *MockStore) DeleteGitSSHKey(arg0 context.Context, arg1 uuid.UUID) error

DeleteGitSSHKey mocks base method.

func (*MockStore) DeleteGroupByID

func (m *MockStore) DeleteGroupByID(arg0 context.Context, arg1 uuid.UUID) error

DeleteGroupByID mocks base method.

func (*MockStore) DeleteGroupMemberFromGroup

func (m *MockStore) DeleteGroupMemberFromGroup(arg0 context.Context, arg1 database.DeleteGroupMemberFromGroupParams) error

DeleteGroupMemberFromGroup mocks base method.

func (*MockStore) DeleteGroupMembersByOrgAndUser

func (m *MockStore) DeleteGroupMembersByOrgAndUser(arg0 context.Context, arg1 database.DeleteGroupMembersByOrgAndUserParams) error

DeleteGroupMembersByOrgAndUser mocks base method.

func (*MockStore) DeleteLicense

func (m *MockStore) DeleteLicense(arg0 context.Context, arg1 int32) (int32, error)

DeleteLicense mocks base method.

func (*MockStore) DeleteOldWorkspaceAgentStartupLogs

func (m *MockStore) DeleteOldWorkspaceAgentStartupLogs(arg0 context.Context) error

DeleteOldWorkspaceAgentStartupLogs mocks base method.

func (*MockStore) DeleteOldWorkspaceAgentStats

func (m *MockStore) DeleteOldWorkspaceAgentStats(arg0 context.Context) error

DeleteOldWorkspaceAgentStats mocks base method.

func (*MockStore) DeleteReplicasUpdatedBefore

func (m *MockStore) DeleteReplicasUpdatedBefore(arg0 context.Context, arg1 time.Time) error

DeleteReplicasUpdatedBefore mocks base method.

func (*MockStore) EXPECT

func (m *MockStore) EXPECT() *MockStoreMockRecorder

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockStore) GetAPIKeyByID

func (m *MockStore) GetAPIKeyByID(arg0 context.Context, arg1 string) (database.APIKey, error)

GetAPIKeyByID mocks base method.

func (*MockStore) GetAPIKeyByName

func (m *MockStore) GetAPIKeyByName(arg0 context.Context, arg1 database.GetAPIKeyByNameParams) (database.APIKey, error)

GetAPIKeyByName mocks base method.

func (*MockStore) GetAPIKeysByLoginType

func (m *MockStore) GetAPIKeysByLoginType(arg0 context.Context, arg1 database.LoginType) ([]database.APIKey, error)

GetAPIKeysByLoginType mocks base method.

func (*MockStore) GetAPIKeysByUserID

func (m *MockStore) GetAPIKeysByUserID(arg0 context.Context, arg1 database.GetAPIKeysByUserIDParams) ([]database.APIKey, error)

GetAPIKeysByUserID mocks base method.

func (*MockStore) GetAPIKeysLastUsedAfter

func (m *MockStore) GetAPIKeysLastUsedAfter(arg0 context.Context, arg1 time.Time) ([]database.APIKey, error)

GetAPIKeysLastUsedAfter mocks base method.

func (*MockStore) GetActiveUserCount

func (m *MockStore) GetActiveUserCount(arg0 context.Context) (int64, error)

GetActiveUserCount mocks base method.

func (*MockStore) GetAppSecurityKey

func (m *MockStore) GetAppSecurityKey(arg0 context.Context) (string, error)

GetAppSecurityKey mocks base method.

func (*MockStore) GetAuditLogsOffset

GetAuditLogsOffset mocks base method.

func (*MockStore) GetAuthorizationUserRoles

func (m *MockStore) GetAuthorizationUserRoles(arg0 context.Context, arg1 uuid.UUID) (database.GetAuthorizationUserRolesRow, error)

GetAuthorizationUserRoles mocks base method.

func (*MockStore) GetAuthorizedTemplates

GetAuthorizedTemplates mocks base method.

func (*MockStore) GetAuthorizedUserCount

func (m *MockStore) GetAuthorizedUserCount(arg0 context.Context, arg1 database.GetFilteredUserCountParams, arg2 rbac.PreparedAuthorized) (int64, error)

GetAuthorizedUserCount mocks base method.

func (*MockStore) GetAuthorizedWorkspaces

func (m *MockStore) GetAuthorizedWorkspaces(arg0 context.Context, arg1 database.GetWorkspacesParams, arg2 rbac.PreparedAuthorized) ([]database.GetWorkspacesRow, error)

GetAuthorizedWorkspaces mocks base method.

func (*MockStore) GetDERPMeshKey

func (m *MockStore) GetDERPMeshKey(arg0 context.Context) (string, error)

GetDERPMeshKey mocks base method.

func (*MockStore) GetDefaultProxyConfig added in v0.24.0

func (m *MockStore) GetDefaultProxyConfig(arg0 context.Context) (database.GetDefaultProxyConfigRow, error)

GetDefaultProxyConfig mocks base method.

func (*MockStore) GetDeploymentDAUs

func (m *MockStore) GetDeploymentDAUs(arg0 context.Context, arg1 int32) ([]database.GetDeploymentDAUsRow, error)

GetDeploymentDAUs mocks base method.

func (*MockStore) GetDeploymentID

func (m *MockStore) GetDeploymentID(arg0 context.Context) (string, error)

GetDeploymentID mocks base method.

func (*MockStore) GetDeploymentWorkspaceAgentStats

func (m *MockStore) GetDeploymentWorkspaceAgentStats(arg0 context.Context, arg1 time.Time) (database.GetDeploymentWorkspaceAgentStatsRow, error)

GetDeploymentWorkspaceAgentStats mocks base method.

func (*MockStore) GetDeploymentWorkspaceStats

func (m *MockStore) GetDeploymentWorkspaceStats(arg0 context.Context) (database.GetDeploymentWorkspaceStatsRow, error)

GetDeploymentWorkspaceStats mocks base method.

func (*MockStore) GetFileByHashAndCreator

func (m *MockStore) GetFileByHashAndCreator(arg0 context.Context, arg1 database.GetFileByHashAndCreatorParams) (database.File, error)

GetFileByHashAndCreator mocks base method.

func (*MockStore) GetFileByID

func (m *MockStore) GetFileByID(arg0 context.Context, arg1 uuid.UUID) (database.File, error)

GetFileByID mocks base method.

func (*MockStore) GetFileTemplates

func (m *MockStore) GetFileTemplates(arg0 context.Context, arg1 uuid.UUID) ([]database.GetFileTemplatesRow, error)

GetFileTemplates mocks base method.

func (*MockStore) GetFilteredUserCount

func (m *MockStore) GetFilteredUserCount(arg0 context.Context, arg1 database.GetFilteredUserCountParams) (int64, error)

GetFilteredUserCount mocks base method.

GetGitAuthLink mocks base method.

func (*MockStore) GetGitSSHKey

func (m *MockStore) GetGitSSHKey(arg0 context.Context, arg1 uuid.UUID) (database.GitSSHKey, error)

GetGitSSHKey mocks base method.

func (*MockStore) GetGroupByID

func (m *MockStore) GetGroupByID(arg0 context.Context, arg1 uuid.UUID) (database.Group, error)

GetGroupByID mocks base method.

func (*MockStore) GetGroupByOrgAndName

func (m *MockStore) GetGroupByOrgAndName(arg0 context.Context, arg1 database.GetGroupByOrgAndNameParams) (database.Group, error)

GetGroupByOrgAndName mocks base method.

func (*MockStore) GetGroupMembers

func (m *MockStore) GetGroupMembers(arg0 context.Context, arg1 uuid.UUID) ([]database.User, error)

GetGroupMembers mocks base method.

func (*MockStore) GetGroupsByOrganizationID

func (m *MockStore) GetGroupsByOrganizationID(arg0 context.Context, arg1 uuid.UUID) ([]database.Group, error)

GetGroupsByOrganizationID mocks base method.

func (*MockStore) GetLastUpdateCheck

func (m *MockStore) GetLastUpdateCheck(arg0 context.Context) (string, error)

GetLastUpdateCheck mocks base method.

func (*MockStore) GetLatestWorkspaceBuildByWorkspaceID

func (m *MockStore) GetLatestWorkspaceBuildByWorkspaceID(arg0 context.Context, arg1 uuid.UUID) (database.WorkspaceBuild, error)

GetLatestWorkspaceBuildByWorkspaceID mocks base method.

func (*MockStore) GetLatestWorkspaceBuilds

func (m *MockStore) GetLatestWorkspaceBuilds(arg0 context.Context) ([]database.WorkspaceBuild, error)

GetLatestWorkspaceBuilds mocks base method.

func (*MockStore) GetLatestWorkspaceBuildsByWorkspaceIDs

func (m *MockStore) GetLatestWorkspaceBuildsByWorkspaceIDs(arg0 context.Context, arg1 []uuid.UUID) ([]database.WorkspaceBuild, error)

GetLatestWorkspaceBuildsByWorkspaceIDs mocks base method.

func (*MockStore) GetLicenseByID

func (m *MockStore) GetLicenseByID(arg0 context.Context, arg1 int32) (database.License, error)

GetLicenseByID mocks base method.

func (*MockStore) GetLicenses

func (m *MockStore) GetLicenses(arg0 context.Context) ([]database.License, error)

GetLicenses mocks base method.

func (*MockStore) GetLogoURL

func (m *MockStore) GetLogoURL(arg0 context.Context) (string, error)

GetLogoURL mocks base method.

func (*MockStore) GetOrganizationByID

func (m *MockStore) GetOrganizationByID(arg0 context.Context, arg1 uuid.UUID) (database.Organization, error)

GetOrganizationByID mocks base method.

func (*MockStore) GetOrganizationByName

func (m *MockStore) GetOrganizationByName(arg0 context.Context, arg1 string) (database.Organization, error)

GetOrganizationByName mocks base method.

func (*MockStore) GetOrganizationIDsByMemberIDs

func (m *MockStore) GetOrganizationIDsByMemberIDs(arg0 context.Context, arg1 []uuid.UUID) ([]database.GetOrganizationIDsByMemberIDsRow, error)

GetOrganizationIDsByMemberIDs mocks base method.

func (*MockStore) GetOrganizationMemberByUserID

GetOrganizationMemberByUserID mocks base method.

func (*MockStore) GetOrganizationMembershipsByUserID

func (m *MockStore) GetOrganizationMembershipsByUserID(arg0 context.Context, arg1 uuid.UUID) ([]database.OrganizationMember, error)

GetOrganizationMembershipsByUserID mocks base method.

func (*MockStore) GetOrganizations

func (m *MockStore) GetOrganizations(arg0 context.Context) ([]database.Organization, error)

GetOrganizations mocks base method.

func (*MockStore) GetOrganizationsByUserID

func (m *MockStore) GetOrganizationsByUserID(arg0 context.Context, arg1 uuid.UUID) ([]database.Organization, error)

GetOrganizationsByUserID mocks base method.

func (*MockStore) GetParameterSchemasByJobID

func (m *MockStore) GetParameterSchemasByJobID(arg0 context.Context, arg1 uuid.UUID) ([]database.ParameterSchema, error)

GetParameterSchemasByJobID mocks base method.

func (*MockStore) GetPreviousTemplateVersion

func (m *MockStore) GetPreviousTemplateVersion(arg0 context.Context, arg1 database.GetPreviousTemplateVersionParams) (database.TemplateVersion, error)

GetPreviousTemplateVersion mocks base method.

func (*MockStore) GetProvisionerDaemons

func (m *MockStore) GetProvisionerDaemons(arg0 context.Context) ([]database.ProvisionerDaemon, error)

GetProvisionerDaemons mocks base method.

func (*MockStore) GetProvisionerJobByID

func (m *MockStore) GetProvisionerJobByID(arg0 context.Context, arg1 uuid.UUID) (database.ProvisionerJob, error)

GetProvisionerJobByID mocks base method.

func (*MockStore) GetProvisionerJobsByIDs

func (m *MockStore) GetProvisionerJobsByIDs(arg0 context.Context, arg1 []uuid.UUID) ([]database.ProvisionerJob, error)

GetProvisionerJobsByIDs mocks base method.

func (*MockStore) GetProvisionerJobsCreatedAfter

func (m *MockStore) GetProvisionerJobsCreatedAfter(arg0 context.Context, arg1 time.Time) ([]database.ProvisionerJob, error)

GetProvisionerJobsCreatedAfter mocks base method.

func (*MockStore) GetProvisionerLogsAfterID

func (m *MockStore) GetProvisionerLogsAfterID(arg0 context.Context, arg1 database.GetProvisionerLogsAfterIDParams) ([]database.ProvisionerJobLog, error)

GetProvisionerLogsAfterID mocks base method.

func (*MockStore) GetQuotaAllowanceForUser

func (m *MockStore) GetQuotaAllowanceForUser(arg0 context.Context, arg1 uuid.UUID) (int64, error)

GetQuotaAllowanceForUser mocks base method.

func (*MockStore) GetQuotaConsumedForUser

func (m *MockStore) GetQuotaConsumedForUser(arg0 context.Context, arg1 uuid.UUID) (int64, error)

GetQuotaConsumedForUser mocks base method.

func (*MockStore) GetReplicasUpdatedAfter

func (m *MockStore) GetReplicasUpdatedAfter(arg0 context.Context, arg1 time.Time) ([]database.Replica, error)

GetReplicasUpdatedAfter mocks base method.

func (*MockStore) GetServiceBanner

func (m *MockStore) GetServiceBanner(arg0 context.Context) (string, error)

GetServiceBanner mocks base method.

func (*MockStore) GetTemplateAverageBuildTime

GetTemplateAverageBuildTime mocks base method.

func (*MockStore) GetTemplateByID

func (m *MockStore) GetTemplateByID(arg0 context.Context, arg1 uuid.UUID) (database.Template, error)

GetTemplateByID mocks base method.

func (*MockStore) GetTemplateByOrganizationAndName

func (m *MockStore) GetTemplateByOrganizationAndName(arg0 context.Context, arg1 database.GetTemplateByOrganizationAndNameParams) (database.Template, error)

GetTemplateByOrganizationAndName mocks base method.

func (*MockStore) GetTemplateDAUs

GetTemplateDAUs mocks base method.

func (*MockStore) GetTemplateGroupRoles

func (m *MockStore) GetTemplateGroupRoles(arg0 context.Context, arg1 uuid.UUID) ([]database.TemplateGroup, error)

GetTemplateGroupRoles mocks base method.

func (*MockStore) GetTemplateUserRoles

func (m *MockStore) GetTemplateUserRoles(arg0 context.Context, arg1 uuid.UUID) ([]database.TemplateUser, error)

GetTemplateUserRoles mocks base method.

func (*MockStore) GetTemplateVersionByID

func (m *MockStore) GetTemplateVersionByID(arg0 context.Context, arg1 uuid.UUID) (database.TemplateVersion, error)

GetTemplateVersionByID mocks base method.

func (*MockStore) GetTemplateVersionByJobID

func (m *MockStore) GetTemplateVersionByJobID(arg0 context.Context, arg1 uuid.UUID) (database.TemplateVersion, error)

GetTemplateVersionByJobID mocks base method.

func (*MockStore) GetTemplateVersionByTemplateIDAndName

func (m *MockStore) GetTemplateVersionByTemplateIDAndName(arg0 context.Context, arg1 database.GetTemplateVersionByTemplateIDAndNameParams) (database.TemplateVersion, error)

GetTemplateVersionByTemplateIDAndName mocks base method.

func (*MockStore) GetTemplateVersionParameters

func (m *MockStore) GetTemplateVersionParameters(arg0 context.Context, arg1 uuid.UUID) ([]database.TemplateVersionParameter, error)

GetTemplateVersionParameters mocks base method.

func (*MockStore) GetTemplateVersionVariables

func (m *MockStore) GetTemplateVersionVariables(arg0 context.Context, arg1 uuid.UUID) ([]database.TemplateVersionVariable, error)

GetTemplateVersionVariables mocks base method.

func (*MockStore) GetTemplateVersionsByIDs

func (m *MockStore) GetTemplateVersionsByIDs(arg0 context.Context, arg1 []uuid.UUID) ([]database.TemplateVersion, error)

GetTemplateVersionsByIDs mocks base method.

func (*MockStore) GetTemplateVersionsByTemplateID

func (m *MockStore) GetTemplateVersionsByTemplateID(arg0 context.Context, arg1 database.GetTemplateVersionsByTemplateIDParams) ([]database.TemplateVersion, error)

GetTemplateVersionsByTemplateID mocks base method.

func (*MockStore) GetTemplateVersionsCreatedAfter

func (m *MockStore) GetTemplateVersionsCreatedAfter(arg0 context.Context, arg1 time.Time) ([]database.TemplateVersion, error)

GetTemplateVersionsCreatedAfter mocks base method.

func (*MockStore) GetTemplates

func (m *MockStore) GetTemplates(arg0 context.Context) ([]database.Template, error)

GetTemplates mocks base method.

func (*MockStore) GetTemplatesWithFilter

func (m *MockStore) GetTemplatesWithFilter(arg0 context.Context, arg1 database.GetTemplatesWithFilterParams) ([]database.Template, error)

GetTemplatesWithFilter mocks base method.

func (*MockStore) GetUnexpiredLicenses

func (m *MockStore) GetUnexpiredLicenses(arg0 context.Context) ([]database.License, error)

GetUnexpiredLicenses mocks base method.

func (*MockStore) GetUserByEmailOrUsername

func (m *MockStore) GetUserByEmailOrUsername(arg0 context.Context, arg1 database.GetUserByEmailOrUsernameParams) (database.User, error)

GetUserByEmailOrUsername mocks base method.

func (*MockStore) GetUserByID

func (m *MockStore) GetUserByID(arg0 context.Context, arg1 uuid.UUID) (database.User, error)

GetUserByID mocks base method.

func (*MockStore) GetUserCount

func (m *MockStore) GetUserCount(arg0 context.Context) (int64, error)

GetUserCount mocks base method.

func (*MockStore) GetUserLinkByLinkedID

func (m *MockStore) GetUserLinkByLinkedID(arg0 context.Context, arg1 string) (database.UserLink, error)

GetUserLinkByLinkedID mocks base method.

func (*MockStore) GetUserLinkByUserIDLoginType

func (m *MockStore) GetUserLinkByUserIDLoginType(arg0 context.Context, arg1 database.GetUserLinkByUserIDLoginTypeParams) (database.UserLink, error)

GetUserLinkByUserIDLoginType mocks base method.

func (*MockStore) GetUsers

GetUsers mocks base method.

func (*MockStore) GetUsersByIDs

func (m *MockStore) GetUsersByIDs(arg0 context.Context, arg1 []uuid.UUID) ([]database.User, error)

GetUsersByIDs mocks base method.

func (*MockStore) GetWorkspaceAgentByAuthToken

func (m *MockStore) GetWorkspaceAgentByAuthToken(arg0 context.Context, arg1 uuid.UUID) (database.WorkspaceAgent, error)

GetWorkspaceAgentByAuthToken mocks base method.

func (*MockStore) GetWorkspaceAgentByID

func (m *MockStore) GetWorkspaceAgentByID(arg0 context.Context, arg1 uuid.UUID) (database.WorkspaceAgent, error)

GetWorkspaceAgentByID mocks base method.

func (*MockStore) GetWorkspaceAgentByInstanceID

func (m *MockStore) GetWorkspaceAgentByInstanceID(arg0 context.Context, arg1 string) (database.WorkspaceAgent, error)

GetWorkspaceAgentByInstanceID mocks base method.

func (*MockStore) GetWorkspaceAgentMetadata

func (m *MockStore) GetWorkspaceAgentMetadata(arg0 context.Context, arg1 uuid.UUID) ([]database.WorkspaceAgentMetadatum, error)

GetWorkspaceAgentMetadata mocks base method.

func (*MockStore) GetWorkspaceAgentStartupLogsAfter

GetWorkspaceAgentStartupLogsAfter mocks base method.

func (*MockStore) GetWorkspaceAgentStats

func (m *MockStore) GetWorkspaceAgentStats(arg0 context.Context, arg1 time.Time) ([]database.GetWorkspaceAgentStatsRow, error)

GetWorkspaceAgentStats mocks base method.

func (*MockStore) GetWorkspaceAgentStatsAndLabels

func (m *MockStore) GetWorkspaceAgentStatsAndLabels(arg0 context.Context, arg1 time.Time) ([]database.GetWorkspaceAgentStatsAndLabelsRow, error)

GetWorkspaceAgentStatsAndLabels mocks base method.

func (*MockStore) GetWorkspaceAgentsByResourceIDs

func (m *MockStore) GetWorkspaceAgentsByResourceIDs(arg0 context.Context, arg1 []uuid.UUID) ([]database.WorkspaceAgent, error)

GetWorkspaceAgentsByResourceIDs mocks base method.

func (*MockStore) GetWorkspaceAgentsCreatedAfter

func (m *MockStore) GetWorkspaceAgentsCreatedAfter(arg0 context.Context, arg1 time.Time) ([]database.WorkspaceAgent, error)

GetWorkspaceAgentsCreatedAfter mocks base method.

func (*MockStore) GetWorkspaceAgentsInLatestBuildByWorkspaceID

func (m *MockStore) GetWorkspaceAgentsInLatestBuildByWorkspaceID(arg0 context.Context, arg1 uuid.UUID) ([]database.WorkspaceAgent, error)

GetWorkspaceAgentsInLatestBuildByWorkspaceID mocks base method.

func (*MockStore) GetWorkspaceAppByAgentIDAndSlug

func (m *MockStore) GetWorkspaceAppByAgentIDAndSlug(arg0 context.Context, arg1 database.GetWorkspaceAppByAgentIDAndSlugParams) (database.WorkspaceApp, error)

GetWorkspaceAppByAgentIDAndSlug mocks base method.

func (*MockStore) GetWorkspaceAppsByAgentID

func (m *MockStore) GetWorkspaceAppsByAgentID(arg0 context.Context, arg1 uuid.UUID) ([]database.WorkspaceApp, error)

GetWorkspaceAppsByAgentID mocks base method.

func (*MockStore) GetWorkspaceAppsByAgentIDs

func (m *MockStore) GetWorkspaceAppsByAgentIDs(arg0 context.Context, arg1 []uuid.UUID) ([]database.WorkspaceApp, error)

GetWorkspaceAppsByAgentIDs mocks base method.

func (*MockStore) GetWorkspaceAppsCreatedAfter

func (m *MockStore) GetWorkspaceAppsCreatedAfter(arg0 context.Context, arg1 time.Time) ([]database.WorkspaceApp, error)

GetWorkspaceAppsCreatedAfter mocks base method.

func (*MockStore) GetWorkspaceBuildByID

func (m *MockStore) GetWorkspaceBuildByID(arg0 context.Context, arg1 uuid.UUID) (database.WorkspaceBuild, error)

GetWorkspaceBuildByID mocks base method.

func (*MockStore) GetWorkspaceBuildByJobID

func (m *MockStore) GetWorkspaceBuildByJobID(arg0 context.Context, arg1 uuid.UUID) (database.WorkspaceBuild, error)

GetWorkspaceBuildByJobID mocks base method.

func (*MockStore) GetWorkspaceBuildByWorkspaceIDAndBuildNumber

func (m *MockStore) GetWorkspaceBuildByWorkspaceIDAndBuildNumber(arg0 context.Context, arg1 database.GetWorkspaceBuildByWorkspaceIDAndBuildNumberParams) (database.WorkspaceBuild, error)

GetWorkspaceBuildByWorkspaceIDAndBuildNumber mocks base method.

func (*MockStore) GetWorkspaceBuildParameters

func (m *MockStore) GetWorkspaceBuildParameters(arg0 context.Context, arg1 uuid.UUID) ([]database.WorkspaceBuildParameter, error)

GetWorkspaceBuildParameters mocks base method.

func (*MockStore) GetWorkspaceBuildsByWorkspaceID

func (m *MockStore) GetWorkspaceBuildsByWorkspaceID(arg0 context.Context, arg1 database.GetWorkspaceBuildsByWorkspaceIDParams) ([]database.WorkspaceBuild, error)

GetWorkspaceBuildsByWorkspaceID mocks base method.

func (*MockStore) GetWorkspaceBuildsCreatedAfter

func (m *MockStore) GetWorkspaceBuildsCreatedAfter(arg0 context.Context, arg1 time.Time) ([]database.WorkspaceBuild, error)

GetWorkspaceBuildsCreatedAfter mocks base method.

func (*MockStore) GetWorkspaceByAgentID

func (m *MockStore) GetWorkspaceByAgentID(arg0 context.Context, arg1 uuid.UUID) (database.Workspace, error)

GetWorkspaceByAgentID mocks base method.

func (*MockStore) GetWorkspaceByID

func (m *MockStore) GetWorkspaceByID(arg0 context.Context, arg1 uuid.UUID) (database.Workspace, error)

GetWorkspaceByID mocks base method.

func (*MockStore) GetWorkspaceByOwnerIDAndName

func (m *MockStore) GetWorkspaceByOwnerIDAndName(arg0 context.Context, arg1 database.GetWorkspaceByOwnerIDAndNameParams) (database.Workspace, error)

GetWorkspaceByOwnerIDAndName mocks base method.

func (*MockStore) GetWorkspaceByWorkspaceAppID

func (m *MockStore) GetWorkspaceByWorkspaceAppID(arg0 context.Context, arg1 uuid.UUID) (database.Workspace, error)

GetWorkspaceByWorkspaceAppID mocks base method.

func (*MockStore) GetWorkspaceProxies

func (m *MockStore) GetWorkspaceProxies(arg0 context.Context) ([]database.WorkspaceProxy, error)

GetWorkspaceProxies mocks base method.

func (*MockStore) GetWorkspaceProxyByHostname

func (m *MockStore) GetWorkspaceProxyByHostname(arg0 context.Context, arg1 database.GetWorkspaceProxyByHostnameParams) (database.WorkspaceProxy, error)

GetWorkspaceProxyByHostname mocks base method.

func (*MockStore) GetWorkspaceProxyByID

func (m *MockStore) GetWorkspaceProxyByID(arg0 context.Context, arg1 uuid.UUID) (database.WorkspaceProxy, error)

GetWorkspaceProxyByID mocks base method.

func (*MockStore) GetWorkspaceProxyByName

func (m *MockStore) GetWorkspaceProxyByName(arg0 context.Context, arg1 string) (database.WorkspaceProxy, error)

GetWorkspaceProxyByName mocks base method.

func (*MockStore) GetWorkspaceResourceByID

func (m *MockStore) GetWorkspaceResourceByID(arg0 context.Context, arg1 uuid.UUID) (database.WorkspaceResource, error)

GetWorkspaceResourceByID mocks base method.

func (*MockStore) GetWorkspaceResourceMetadataByResourceIDs

func (m *MockStore) GetWorkspaceResourceMetadataByResourceIDs(arg0 context.Context, arg1 []uuid.UUID) ([]database.WorkspaceResourceMetadatum, error)

GetWorkspaceResourceMetadataByResourceIDs mocks base method.

func (*MockStore) GetWorkspaceResourceMetadataCreatedAfter

func (m *MockStore) GetWorkspaceResourceMetadataCreatedAfter(arg0 context.Context, arg1 time.Time) ([]database.WorkspaceResourceMetadatum, error)

GetWorkspaceResourceMetadataCreatedAfter mocks base method.

func (*MockStore) GetWorkspaceResourcesByJobID

func (m *MockStore) GetWorkspaceResourcesByJobID(arg0 context.Context, arg1 uuid.UUID) ([]database.WorkspaceResource, error)

GetWorkspaceResourcesByJobID mocks base method.

func (*MockStore) GetWorkspaceResourcesByJobIDs

func (m *MockStore) GetWorkspaceResourcesByJobIDs(arg0 context.Context, arg1 []uuid.UUID) ([]database.WorkspaceResource, error)

GetWorkspaceResourcesByJobIDs mocks base method.

func (*MockStore) GetWorkspaceResourcesCreatedAfter

func (m *MockStore) GetWorkspaceResourcesCreatedAfter(arg0 context.Context, arg1 time.Time) ([]database.WorkspaceResource, error)

GetWorkspaceResourcesCreatedAfter mocks base method.

func (*MockStore) GetWorkspaces

GetWorkspaces mocks base method.

func (*MockStore) GetWorkspacesEligibleForAutoStartStop

func (m *MockStore) GetWorkspacesEligibleForAutoStartStop(arg0 context.Context, arg1 time.Time) ([]database.Workspace, error)

GetWorkspacesEligibleForAutoStartStop mocks base method.

func (*MockStore) InTx

func (m *MockStore) InTx(arg0 func(database.Store) error, arg1 *sql.TxOptions) error

InTx mocks base method.

func (*MockStore) InsertAPIKey

func (m *MockStore) InsertAPIKey(arg0 context.Context, arg1 database.InsertAPIKeyParams) (database.APIKey, error)

InsertAPIKey mocks base method.

func (*MockStore) InsertAllUsersGroup

func (m *MockStore) InsertAllUsersGroup(arg0 context.Context, arg1 uuid.UUID) (database.Group, error)

InsertAllUsersGroup mocks base method.

func (*MockStore) InsertAuditLog

func (m *MockStore) InsertAuditLog(arg0 context.Context, arg1 database.InsertAuditLogParams) (database.AuditLog, error)

InsertAuditLog mocks base method.

func (*MockStore) InsertDERPMeshKey

func (m *MockStore) InsertDERPMeshKey(arg0 context.Context, arg1 string) error

InsertDERPMeshKey mocks base method.

func (*MockStore) InsertDeploymentID

func (m *MockStore) InsertDeploymentID(arg0 context.Context, arg1 string) error

InsertDeploymentID mocks base method.

func (*MockStore) InsertFile

func (m *MockStore) InsertFile(arg0 context.Context, arg1 database.InsertFileParams) (database.File, error)

InsertFile mocks base method.

func (m *MockStore) InsertGitAuthLink(arg0 context.Context, arg1 database.InsertGitAuthLinkParams) (database.GitAuthLink, error)

InsertGitAuthLink mocks base method.

func (*MockStore) InsertGitSSHKey

func (m *MockStore) InsertGitSSHKey(arg0 context.Context, arg1 database.InsertGitSSHKeyParams) (database.GitSSHKey, error)

InsertGitSSHKey mocks base method.

func (*MockStore) InsertGroup

func (m *MockStore) InsertGroup(arg0 context.Context, arg1 database.InsertGroupParams) (database.Group, error)

InsertGroup mocks base method.

func (*MockStore) InsertGroupMember

func (m *MockStore) InsertGroupMember(arg0 context.Context, arg1 database.InsertGroupMemberParams) error

InsertGroupMember mocks base method.

func (*MockStore) InsertLicense

func (m *MockStore) InsertLicense(arg0 context.Context, arg1 database.InsertLicenseParams) (database.License, error)

InsertLicense mocks base method.

func (*MockStore) InsertOrganization

InsertOrganization mocks base method.

func (*MockStore) InsertOrganizationMember

InsertOrganizationMember mocks base method.

func (*MockStore) InsertProvisionerDaemon

InsertProvisionerDaemon mocks base method.

func (*MockStore) InsertProvisionerJob

InsertProvisionerJob mocks base method.

func (*MockStore) InsertProvisionerJobLogs

func (m *MockStore) InsertProvisionerJobLogs(arg0 context.Context, arg1 database.InsertProvisionerJobLogsParams) ([]database.ProvisionerJobLog, error)

InsertProvisionerJobLogs mocks base method.

func (*MockStore) InsertReplica

func (m *MockStore) InsertReplica(arg0 context.Context, arg1 database.InsertReplicaParams) (database.Replica, error)

InsertReplica mocks base method.

func (*MockStore) InsertTemplate

func (m *MockStore) InsertTemplate(arg0 context.Context, arg1 database.InsertTemplateParams) (database.Template, error)

InsertTemplate mocks base method.

func (*MockStore) InsertTemplateVersion

InsertTemplateVersion mocks base method.

func (*MockStore) InsertTemplateVersionParameter

InsertTemplateVersionParameter mocks base method.

func (*MockStore) InsertTemplateVersionVariable

InsertTemplateVersionVariable mocks base method.

func (*MockStore) InsertUser

func (m *MockStore) InsertUser(arg0 context.Context, arg1 database.InsertUserParams) (database.User, error)

InsertUser mocks base method.

func (*MockStore) InsertUserGroupsByName

func (m *MockStore) InsertUserGroupsByName(arg0 context.Context, arg1 database.InsertUserGroupsByNameParams) error

InsertUserGroupsByName mocks base method.

func (m *MockStore) InsertUserLink(arg0 context.Context, arg1 database.InsertUserLinkParams) (database.UserLink, error)

InsertUserLink mocks base method.

func (*MockStore) InsertWorkspace

func (m *MockStore) InsertWorkspace(arg0 context.Context, arg1 database.InsertWorkspaceParams) (database.Workspace, error)

InsertWorkspace mocks base method.

func (*MockStore) InsertWorkspaceAgent

InsertWorkspaceAgent mocks base method.

func (*MockStore) InsertWorkspaceAgentMetadata

func (m *MockStore) InsertWorkspaceAgentMetadata(arg0 context.Context, arg1 database.InsertWorkspaceAgentMetadataParams) error

InsertWorkspaceAgentMetadata mocks base method.

func (*MockStore) InsertWorkspaceAgentStartupLogs

InsertWorkspaceAgentStartupLogs mocks base method.

func (*MockStore) InsertWorkspaceAgentStat

InsertWorkspaceAgentStat mocks base method.

func (*MockStore) InsertWorkspaceApp

InsertWorkspaceApp mocks base method.

func (*MockStore) InsertWorkspaceBuild

InsertWorkspaceBuild mocks base method.

func (*MockStore) InsertWorkspaceBuildParameters

func (m *MockStore) InsertWorkspaceBuildParameters(arg0 context.Context, arg1 database.InsertWorkspaceBuildParametersParams) error

InsertWorkspaceBuildParameters mocks base method.

func (*MockStore) InsertWorkspaceProxy

InsertWorkspaceProxy mocks base method.

func (*MockStore) InsertWorkspaceResource

InsertWorkspaceResource mocks base method.

func (*MockStore) InsertWorkspaceResourceMetadata

InsertWorkspaceResourceMetadata mocks base method.

func (*MockStore) Ping

func (m *MockStore) Ping(arg0 context.Context) (time.Duration, error)

Ping mocks base method.

func (*MockStore) RegisterWorkspaceProxy

RegisterWorkspaceProxy mocks base method.

func (*MockStore) TryAcquireLock

func (m *MockStore) TryAcquireLock(arg0 context.Context, arg1 int64) (bool, error)

TryAcquireLock mocks base method.

func (*MockStore) UpdateAPIKeyByID

func (m *MockStore) UpdateAPIKeyByID(arg0 context.Context, arg1 database.UpdateAPIKeyByIDParams) error

UpdateAPIKeyByID mocks base method.

func (m *MockStore) UpdateGitAuthLink(arg0 context.Context, arg1 database.UpdateGitAuthLinkParams) (database.GitAuthLink, error)

UpdateGitAuthLink mocks base method.

func (*MockStore) UpdateGitSSHKey

func (m *MockStore) UpdateGitSSHKey(arg0 context.Context, arg1 database.UpdateGitSSHKeyParams) (database.GitSSHKey, error)

UpdateGitSSHKey mocks base method.

func (*MockStore) UpdateGroupByID

func (m *MockStore) UpdateGroupByID(arg0 context.Context, arg1 database.UpdateGroupByIDParams) (database.Group, error)

UpdateGroupByID mocks base method.

func (*MockStore) UpdateMemberRoles

UpdateMemberRoles mocks base method.

func (*MockStore) UpdateProvisionerJobByID

func (m *MockStore) UpdateProvisionerJobByID(arg0 context.Context, arg1 database.UpdateProvisionerJobByIDParams) error

UpdateProvisionerJobByID mocks base method.

func (*MockStore) UpdateProvisionerJobWithCancelByID

func (m *MockStore) UpdateProvisionerJobWithCancelByID(arg0 context.Context, arg1 database.UpdateProvisionerJobWithCancelByIDParams) error

UpdateProvisionerJobWithCancelByID mocks base method.

func (*MockStore) UpdateProvisionerJobWithCompleteByID

func (m *MockStore) UpdateProvisionerJobWithCompleteByID(arg0 context.Context, arg1 database.UpdateProvisionerJobWithCompleteByIDParams) error

UpdateProvisionerJobWithCompleteByID mocks base method.

func (*MockStore) UpdateReplica

func (m *MockStore) UpdateReplica(arg0 context.Context, arg1 database.UpdateReplicaParams) (database.Replica, error)

UpdateReplica mocks base method.

func (*MockStore) UpdateTemplateACLByID

func (m *MockStore) UpdateTemplateACLByID(arg0 context.Context, arg1 database.UpdateTemplateACLByIDParams) (database.Template, error)

UpdateTemplateACLByID mocks base method.

func (*MockStore) UpdateTemplateActiveVersionByID

func (m *MockStore) UpdateTemplateActiveVersionByID(arg0 context.Context, arg1 database.UpdateTemplateActiveVersionByIDParams) error

UpdateTemplateActiveVersionByID mocks base method.

func (*MockStore) UpdateTemplateDeletedByID

func (m *MockStore) UpdateTemplateDeletedByID(arg0 context.Context, arg1 database.UpdateTemplateDeletedByIDParams) error

UpdateTemplateDeletedByID mocks base method.

func (*MockStore) UpdateTemplateMetaByID

func (m *MockStore) UpdateTemplateMetaByID(arg0 context.Context, arg1 database.UpdateTemplateMetaByIDParams) (database.Template, error)

UpdateTemplateMetaByID mocks base method.

func (*MockStore) UpdateTemplateScheduleByID

func (m *MockStore) UpdateTemplateScheduleByID(arg0 context.Context, arg1 database.UpdateTemplateScheduleByIDParams) (database.Template, error)

UpdateTemplateScheduleByID mocks base method.

func (*MockStore) UpdateTemplateVersionByID

func (m *MockStore) UpdateTemplateVersionByID(arg0 context.Context, arg1 database.UpdateTemplateVersionByIDParams) (database.TemplateVersion, error)

UpdateTemplateVersionByID mocks base method.

func (*MockStore) UpdateTemplateVersionDescriptionByJobID

func (m *MockStore) UpdateTemplateVersionDescriptionByJobID(arg0 context.Context, arg1 database.UpdateTemplateVersionDescriptionByJobIDParams) error

UpdateTemplateVersionDescriptionByJobID mocks base method.

func (*MockStore) UpdateTemplateVersionGitAuthProvidersByJobID

func (m *MockStore) UpdateTemplateVersionGitAuthProvidersByJobID(arg0 context.Context, arg1 database.UpdateTemplateVersionGitAuthProvidersByJobIDParams) error

UpdateTemplateVersionGitAuthProvidersByJobID mocks base method.

func (*MockStore) UpdateUserDeletedByID

func (m *MockStore) UpdateUserDeletedByID(arg0 context.Context, arg1 database.UpdateUserDeletedByIDParams) error

UpdateUserDeletedByID mocks base method.

func (*MockStore) UpdateUserHashedPassword

func (m *MockStore) UpdateUserHashedPassword(arg0 context.Context, arg1 database.UpdateUserHashedPasswordParams) error

UpdateUserHashedPassword mocks base method.

func (*MockStore) UpdateUserLastSeenAt

func (m *MockStore) UpdateUserLastSeenAt(arg0 context.Context, arg1 database.UpdateUserLastSeenAtParams) (database.User, error)

UpdateUserLastSeenAt mocks base method.

func (m *MockStore) UpdateUserLink(arg0 context.Context, arg1 database.UpdateUserLinkParams) (database.UserLink, error)

UpdateUserLink mocks base method.

func (*MockStore) UpdateUserLinkedID

func (m *MockStore) UpdateUserLinkedID(arg0 context.Context, arg1 database.UpdateUserLinkedIDParams) (database.UserLink, error)

UpdateUserLinkedID mocks base method.

func (*MockStore) UpdateUserProfile

func (m *MockStore) UpdateUserProfile(arg0 context.Context, arg1 database.UpdateUserProfileParams) (database.User, error)

UpdateUserProfile mocks base method.

func (*MockStore) UpdateUserRoles

func (m *MockStore) UpdateUserRoles(arg0 context.Context, arg1 database.UpdateUserRolesParams) (database.User, error)

UpdateUserRoles mocks base method.

func (*MockStore) UpdateUserStatus

func (m *MockStore) UpdateUserStatus(arg0 context.Context, arg1 database.UpdateUserStatusParams) (database.User, error)

UpdateUserStatus mocks base method.

func (*MockStore) UpdateWorkspace

func (m *MockStore) UpdateWorkspace(arg0 context.Context, arg1 database.UpdateWorkspaceParams) (database.Workspace, error)

UpdateWorkspace mocks base method.

func (*MockStore) UpdateWorkspaceAgentConnectionByID

func (m *MockStore) UpdateWorkspaceAgentConnectionByID(arg0 context.Context, arg1 database.UpdateWorkspaceAgentConnectionByIDParams) error

UpdateWorkspaceAgentConnectionByID mocks base method.

func (*MockStore) UpdateWorkspaceAgentLifecycleStateByID

func (m *MockStore) UpdateWorkspaceAgentLifecycleStateByID(arg0 context.Context, arg1 database.UpdateWorkspaceAgentLifecycleStateByIDParams) error

UpdateWorkspaceAgentLifecycleStateByID mocks base method.

func (*MockStore) UpdateWorkspaceAgentMetadata

func (m *MockStore) UpdateWorkspaceAgentMetadata(arg0 context.Context, arg1 database.UpdateWorkspaceAgentMetadataParams) error

UpdateWorkspaceAgentMetadata mocks base method.

func (*MockStore) UpdateWorkspaceAgentStartupByID

func (m *MockStore) UpdateWorkspaceAgentStartupByID(arg0 context.Context, arg1 database.UpdateWorkspaceAgentStartupByIDParams) error

UpdateWorkspaceAgentStartupByID mocks base method.

func (*MockStore) UpdateWorkspaceAgentStartupLogOverflowByID

func (m *MockStore) UpdateWorkspaceAgentStartupLogOverflowByID(arg0 context.Context, arg1 database.UpdateWorkspaceAgentStartupLogOverflowByIDParams) error

UpdateWorkspaceAgentStartupLogOverflowByID mocks base method.

func (*MockStore) UpdateWorkspaceAppHealthByID

func (m *MockStore) UpdateWorkspaceAppHealthByID(arg0 context.Context, arg1 database.UpdateWorkspaceAppHealthByIDParams) error

UpdateWorkspaceAppHealthByID mocks base method.

func (*MockStore) UpdateWorkspaceAutostart

func (m *MockStore) UpdateWorkspaceAutostart(arg0 context.Context, arg1 database.UpdateWorkspaceAutostartParams) error

UpdateWorkspaceAutostart mocks base method.

func (*MockStore) UpdateWorkspaceBuildByID

func (m *MockStore) UpdateWorkspaceBuildByID(arg0 context.Context, arg1 database.UpdateWorkspaceBuildByIDParams) (database.WorkspaceBuild, error)

UpdateWorkspaceBuildByID mocks base method.

func (*MockStore) UpdateWorkspaceBuildCostByID

func (m *MockStore) UpdateWorkspaceBuildCostByID(arg0 context.Context, arg1 database.UpdateWorkspaceBuildCostByIDParams) (database.WorkspaceBuild, error)

UpdateWorkspaceBuildCostByID mocks base method.

func (*MockStore) UpdateWorkspaceDeletedByID

func (m *MockStore) UpdateWorkspaceDeletedByID(arg0 context.Context, arg1 database.UpdateWorkspaceDeletedByIDParams) error

UpdateWorkspaceDeletedByID mocks base method.

func (*MockStore) UpdateWorkspaceLastUsedAt

func (m *MockStore) UpdateWorkspaceLastUsedAt(arg0 context.Context, arg1 database.UpdateWorkspaceLastUsedAtParams) error

UpdateWorkspaceLastUsedAt mocks base method.

func (*MockStore) UpdateWorkspaceProxy

UpdateWorkspaceProxy mocks base method.

func (*MockStore) UpdateWorkspaceProxyDeleted

func (m *MockStore) UpdateWorkspaceProxyDeleted(arg0 context.Context, arg1 database.UpdateWorkspaceProxyDeletedParams) error

UpdateWorkspaceProxyDeleted mocks base method.

func (*MockStore) UpdateWorkspaceTTL

func (m *MockStore) UpdateWorkspaceTTL(arg0 context.Context, arg1 database.UpdateWorkspaceTTLParams) error

UpdateWorkspaceTTL mocks base method.

func (*MockStore) UpdateWorkspaceTTLToBeWithinTemplateMax

func (m *MockStore) UpdateWorkspaceTTLToBeWithinTemplateMax(arg0 context.Context, arg1 database.UpdateWorkspaceTTLToBeWithinTemplateMaxParams) error

UpdateWorkspaceTTLToBeWithinTemplateMax mocks base method.

func (*MockStore) UpsertAppSecurityKey

func (m *MockStore) UpsertAppSecurityKey(arg0 context.Context, arg1 string) error

UpsertAppSecurityKey mocks base method.

func (*MockStore) UpsertDefaultProxy added in v0.24.0

func (m *MockStore) UpsertDefaultProxy(arg0 context.Context, arg1 database.UpsertDefaultProxyParams) error

UpsertDefaultProxy mocks base method.

func (*MockStore) UpsertLastUpdateCheck

func (m *MockStore) UpsertLastUpdateCheck(arg0 context.Context, arg1 string) error

UpsertLastUpdateCheck mocks base method.

func (*MockStore) UpsertLogoURL

func (m *MockStore) UpsertLogoURL(arg0 context.Context, arg1 string) error

UpsertLogoURL mocks base method.

func (*MockStore) UpsertServiceBanner

func (m *MockStore) UpsertServiceBanner(arg0 context.Context, arg1 string) error

UpsertServiceBanner mocks base method.

func (*MockStore) Wrappers added in v0.24.0

func (m *MockStore) Wrappers() []string

Wrappers mocks base method.

type MockStoreMockRecorder

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

MockStoreMockRecorder is the mock recorder for MockStore.

func (*MockStoreMockRecorder) AcquireLock

func (mr *MockStoreMockRecorder) AcquireLock(arg0, arg1 interface{}) *gomock.Call

AcquireLock indicates an expected call of AcquireLock.

func (*MockStoreMockRecorder) AcquireProvisionerJob

func (mr *MockStoreMockRecorder) AcquireProvisionerJob(arg0, arg1 interface{}) *gomock.Call

AcquireProvisionerJob indicates an expected call of AcquireProvisionerJob.

func (*MockStoreMockRecorder) DeleteAPIKeyByID

func (mr *MockStoreMockRecorder) DeleteAPIKeyByID(arg0, arg1 interface{}) *gomock.Call

DeleteAPIKeyByID indicates an expected call of DeleteAPIKeyByID.

func (*MockStoreMockRecorder) DeleteAPIKeysByUserID

func (mr *MockStoreMockRecorder) DeleteAPIKeysByUserID(arg0, arg1 interface{}) *gomock.Call

DeleteAPIKeysByUserID indicates an expected call of DeleteAPIKeysByUserID.

func (*MockStoreMockRecorder) DeleteApplicationConnectAPIKeysByUserID

func (mr *MockStoreMockRecorder) DeleteApplicationConnectAPIKeysByUserID(arg0, arg1 interface{}) *gomock.Call

DeleteApplicationConnectAPIKeysByUserID indicates an expected call of DeleteApplicationConnectAPIKeysByUserID.

func (*MockStoreMockRecorder) DeleteGitSSHKey

func (mr *MockStoreMockRecorder) DeleteGitSSHKey(arg0, arg1 interface{}) *gomock.Call

DeleteGitSSHKey indicates an expected call of DeleteGitSSHKey.

func (*MockStoreMockRecorder) DeleteGroupByID

func (mr *MockStoreMockRecorder) DeleteGroupByID(arg0, arg1 interface{}) *gomock.Call

DeleteGroupByID indicates an expected call of DeleteGroupByID.

func (*MockStoreMockRecorder) DeleteGroupMemberFromGroup

func (mr *MockStoreMockRecorder) DeleteGroupMemberFromGroup(arg0, arg1 interface{}) *gomock.Call

DeleteGroupMemberFromGroup indicates an expected call of DeleteGroupMemberFromGroup.

func (*MockStoreMockRecorder) DeleteGroupMembersByOrgAndUser

func (mr *MockStoreMockRecorder) DeleteGroupMembersByOrgAndUser(arg0, arg1 interface{}) *gomock.Call

DeleteGroupMembersByOrgAndUser indicates an expected call of DeleteGroupMembersByOrgAndUser.

func (*MockStoreMockRecorder) DeleteLicense

func (mr *MockStoreMockRecorder) DeleteLicense(arg0, arg1 interface{}) *gomock.Call

DeleteLicense indicates an expected call of DeleteLicense.

func (*MockStoreMockRecorder) DeleteOldWorkspaceAgentStartupLogs

func (mr *MockStoreMockRecorder) DeleteOldWorkspaceAgentStartupLogs(arg0 interface{}) *gomock.Call

DeleteOldWorkspaceAgentStartupLogs indicates an expected call of DeleteOldWorkspaceAgentStartupLogs.

func (*MockStoreMockRecorder) DeleteOldWorkspaceAgentStats

func (mr *MockStoreMockRecorder) DeleteOldWorkspaceAgentStats(arg0 interface{}) *gomock.Call

DeleteOldWorkspaceAgentStats indicates an expected call of DeleteOldWorkspaceAgentStats.

func (*MockStoreMockRecorder) DeleteReplicasUpdatedBefore

func (mr *MockStoreMockRecorder) DeleteReplicasUpdatedBefore(arg0, arg1 interface{}) *gomock.Call

DeleteReplicasUpdatedBefore indicates an expected call of DeleteReplicasUpdatedBefore.

func (*MockStoreMockRecorder) GetAPIKeyByID

func (mr *MockStoreMockRecorder) GetAPIKeyByID(arg0, arg1 interface{}) *gomock.Call

GetAPIKeyByID indicates an expected call of GetAPIKeyByID.

func (*MockStoreMockRecorder) GetAPIKeyByName

func (mr *MockStoreMockRecorder) GetAPIKeyByName(arg0, arg1 interface{}) *gomock.Call

GetAPIKeyByName indicates an expected call of GetAPIKeyByName.

func (*MockStoreMockRecorder) GetAPIKeysByLoginType

func (mr *MockStoreMockRecorder) GetAPIKeysByLoginType(arg0, arg1 interface{}) *gomock.Call

GetAPIKeysByLoginType indicates an expected call of GetAPIKeysByLoginType.

func (*MockStoreMockRecorder) GetAPIKeysByUserID

func (mr *MockStoreMockRecorder) GetAPIKeysByUserID(arg0, arg1 interface{}) *gomock.Call

GetAPIKeysByUserID indicates an expected call of GetAPIKeysByUserID.

func (*MockStoreMockRecorder) GetAPIKeysLastUsedAfter

func (mr *MockStoreMockRecorder) GetAPIKeysLastUsedAfter(arg0, arg1 interface{}) *gomock.Call

GetAPIKeysLastUsedAfter indicates an expected call of GetAPIKeysLastUsedAfter.

func (*MockStoreMockRecorder) GetActiveUserCount

func (mr *MockStoreMockRecorder) GetActiveUserCount(arg0 interface{}) *gomock.Call

GetActiveUserCount indicates an expected call of GetActiveUserCount.

func (*MockStoreMockRecorder) GetAppSecurityKey

func (mr *MockStoreMockRecorder) GetAppSecurityKey(arg0 interface{}) *gomock.Call

GetAppSecurityKey indicates an expected call of GetAppSecurityKey.

func (*MockStoreMockRecorder) GetAuditLogsOffset

func (mr *MockStoreMockRecorder) GetAuditLogsOffset(arg0, arg1 interface{}) *gomock.Call

GetAuditLogsOffset indicates an expected call of GetAuditLogsOffset.

func (*MockStoreMockRecorder) GetAuthorizationUserRoles

func (mr *MockStoreMockRecorder) GetAuthorizationUserRoles(arg0, arg1 interface{}) *gomock.Call

GetAuthorizationUserRoles indicates an expected call of GetAuthorizationUserRoles.

func (*MockStoreMockRecorder) GetAuthorizedTemplates

func (mr *MockStoreMockRecorder) GetAuthorizedTemplates(arg0, arg1, arg2 interface{}) *gomock.Call

GetAuthorizedTemplates indicates an expected call of GetAuthorizedTemplates.

func (*MockStoreMockRecorder) GetAuthorizedUserCount

func (mr *MockStoreMockRecorder) GetAuthorizedUserCount(arg0, arg1, arg2 interface{}) *gomock.Call

GetAuthorizedUserCount indicates an expected call of GetAuthorizedUserCount.

func (*MockStoreMockRecorder) GetAuthorizedWorkspaces

func (mr *MockStoreMockRecorder) GetAuthorizedWorkspaces(arg0, arg1, arg2 interface{}) *gomock.Call

GetAuthorizedWorkspaces indicates an expected call of GetAuthorizedWorkspaces.

func (*MockStoreMockRecorder) GetDERPMeshKey

func (mr *MockStoreMockRecorder) GetDERPMeshKey(arg0 interface{}) *gomock.Call

GetDERPMeshKey indicates an expected call of GetDERPMeshKey.

func (*MockStoreMockRecorder) GetDefaultProxyConfig added in v0.24.0

func (mr *MockStoreMockRecorder) GetDefaultProxyConfig(arg0 interface{}) *gomock.Call

GetDefaultProxyConfig indicates an expected call of GetDefaultProxyConfig.

func (*MockStoreMockRecorder) GetDeploymentDAUs

func (mr *MockStoreMockRecorder) GetDeploymentDAUs(arg0, arg1 interface{}) *gomock.Call

GetDeploymentDAUs indicates an expected call of GetDeploymentDAUs.

func (*MockStoreMockRecorder) GetDeploymentID

func (mr *MockStoreMockRecorder) GetDeploymentID(arg0 interface{}) *gomock.Call

GetDeploymentID indicates an expected call of GetDeploymentID.

func (*MockStoreMockRecorder) GetDeploymentWorkspaceAgentStats

func (mr *MockStoreMockRecorder) GetDeploymentWorkspaceAgentStats(arg0, arg1 interface{}) *gomock.Call

GetDeploymentWorkspaceAgentStats indicates an expected call of GetDeploymentWorkspaceAgentStats.

func (*MockStoreMockRecorder) GetDeploymentWorkspaceStats

func (mr *MockStoreMockRecorder) GetDeploymentWorkspaceStats(arg0 interface{}) *gomock.Call

GetDeploymentWorkspaceStats indicates an expected call of GetDeploymentWorkspaceStats.

func (*MockStoreMockRecorder) GetFileByHashAndCreator

func (mr *MockStoreMockRecorder) GetFileByHashAndCreator(arg0, arg1 interface{}) *gomock.Call

GetFileByHashAndCreator indicates an expected call of GetFileByHashAndCreator.

func (*MockStoreMockRecorder) GetFileByID

func (mr *MockStoreMockRecorder) GetFileByID(arg0, arg1 interface{}) *gomock.Call

GetFileByID indicates an expected call of GetFileByID.

func (*MockStoreMockRecorder) GetFileTemplates

func (mr *MockStoreMockRecorder) GetFileTemplates(arg0, arg1 interface{}) *gomock.Call

GetFileTemplates indicates an expected call of GetFileTemplates.

func (*MockStoreMockRecorder) GetFilteredUserCount

func (mr *MockStoreMockRecorder) GetFilteredUserCount(arg0, arg1 interface{}) *gomock.Call

GetFilteredUserCount indicates an expected call of GetFilteredUserCount.

func (mr *MockStoreMockRecorder) GetGitAuthLink(arg0, arg1 interface{}) *gomock.Call

GetGitAuthLink indicates an expected call of GetGitAuthLink.

func (*MockStoreMockRecorder) GetGitSSHKey

func (mr *MockStoreMockRecorder) GetGitSSHKey(arg0, arg1 interface{}) *gomock.Call

GetGitSSHKey indicates an expected call of GetGitSSHKey.

func (*MockStoreMockRecorder) GetGroupByID

func (mr *MockStoreMockRecorder) GetGroupByID(arg0, arg1 interface{}) *gomock.Call

GetGroupByID indicates an expected call of GetGroupByID.

func (*MockStoreMockRecorder) GetGroupByOrgAndName

func (mr *MockStoreMockRecorder) GetGroupByOrgAndName(arg0, arg1 interface{}) *gomock.Call

GetGroupByOrgAndName indicates an expected call of GetGroupByOrgAndName.

func (*MockStoreMockRecorder) GetGroupMembers

func (mr *MockStoreMockRecorder) GetGroupMembers(arg0, arg1 interface{}) *gomock.Call

GetGroupMembers indicates an expected call of GetGroupMembers.

func (*MockStoreMockRecorder) GetGroupsByOrganizationID

func (mr *MockStoreMockRecorder) GetGroupsByOrganizationID(arg0, arg1 interface{}) *gomock.Call

GetGroupsByOrganizationID indicates an expected call of GetGroupsByOrganizationID.

func (*MockStoreMockRecorder) GetLastUpdateCheck

func (mr *MockStoreMockRecorder) GetLastUpdateCheck(arg0 interface{}) *gomock.Call

GetLastUpdateCheck indicates an expected call of GetLastUpdateCheck.

func (*MockStoreMockRecorder) GetLatestWorkspaceBuildByWorkspaceID

func (mr *MockStoreMockRecorder) GetLatestWorkspaceBuildByWorkspaceID(arg0, arg1 interface{}) *gomock.Call

GetLatestWorkspaceBuildByWorkspaceID indicates an expected call of GetLatestWorkspaceBuildByWorkspaceID.

func (*MockStoreMockRecorder) GetLatestWorkspaceBuilds

func (mr *MockStoreMockRecorder) GetLatestWorkspaceBuilds(arg0 interface{}) *gomock.Call

GetLatestWorkspaceBuilds indicates an expected call of GetLatestWorkspaceBuilds.

func (*MockStoreMockRecorder) GetLatestWorkspaceBuildsByWorkspaceIDs

func (mr *MockStoreMockRecorder) GetLatestWorkspaceBuildsByWorkspaceIDs(arg0, arg1 interface{}) *gomock.Call

GetLatestWorkspaceBuildsByWorkspaceIDs indicates an expected call of GetLatestWorkspaceBuildsByWorkspaceIDs.

func (*MockStoreMockRecorder) GetLicenseByID

func (mr *MockStoreMockRecorder) GetLicenseByID(arg0, arg1 interface{}) *gomock.Call

GetLicenseByID indicates an expected call of GetLicenseByID.

func (*MockStoreMockRecorder) GetLicenses

func (mr *MockStoreMockRecorder) GetLicenses(arg0 interface{}) *gomock.Call

GetLicenses indicates an expected call of GetLicenses.

func (*MockStoreMockRecorder) GetLogoURL

func (mr *MockStoreMockRecorder) GetLogoURL(arg0 interface{}) *gomock.Call

GetLogoURL indicates an expected call of GetLogoURL.

func (*MockStoreMockRecorder) GetOrganizationByID

func (mr *MockStoreMockRecorder) GetOrganizationByID(arg0, arg1 interface{}) *gomock.Call

GetOrganizationByID indicates an expected call of GetOrganizationByID.

func (*MockStoreMockRecorder) GetOrganizationByName

func (mr *MockStoreMockRecorder) GetOrganizationByName(arg0, arg1 interface{}) *gomock.Call

GetOrganizationByName indicates an expected call of GetOrganizationByName.

func (*MockStoreMockRecorder) GetOrganizationIDsByMemberIDs

func (mr *MockStoreMockRecorder) GetOrganizationIDsByMemberIDs(arg0, arg1 interface{}) *gomock.Call

GetOrganizationIDsByMemberIDs indicates an expected call of GetOrganizationIDsByMemberIDs.

func (*MockStoreMockRecorder) GetOrganizationMemberByUserID

func (mr *MockStoreMockRecorder) GetOrganizationMemberByUserID(arg0, arg1 interface{}) *gomock.Call

GetOrganizationMemberByUserID indicates an expected call of GetOrganizationMemberByUserID.

func (*MockStoreMockRecorder) GetOrganizationMembershipsByUserID

func (mr *MockStoreMockRecorder) GetOrganizationMembershipsByUserID(arg0, arg1 interface{}) *gomock.Call

GetOrganizationMembershipsByUserID indicates an expected call of GetOrganizationMembershipsByUserID.

func (*MockStoreMockRecorder) GetOrganizations

func (mr *MockStoreMockRecorder) GetOrganizations(arg0 interface{}) *gomock.Call

GetOrganizations indicates an expected call of GetOrganizations.

func (*MockStoreMockRecorder) GetOrganizationsByUserID

func (mr *MockStoreMockRecorder) GetOrganizationsByUserID(arg0, arg1 interface{}) *gomock.Call

GetOrganizationsByUserID indicates an expected call of GetOrganizationsByUserID.

func (*MockStoreMockRecorder) GetParameterSchemasByJobID

func (mr *MockStoreMockRecorder) GetParameterSchemasByJobID(arg0, arg1 interface{}) *gomock.Call

GetParameterSchemasByJobID indicates an expected call of GetParameterSchemasByJobID.

func (*MockStoreMockRecorder) GetPreviousTemplateVersion

func (mr *MockStoreMockRecorder) GetPreviousTemplateVersion(arg0, arg1 interface{}) *gomock.Call

GetPreviousTemplateVersion indicates an expected call of GetPreviousTemplateVersion.

func (*MockStoreMockRecorder) GetProvisionerDaemons

func (mr *MockStoreMockRecorder) GetProvisionerDaemons(arg0 interface{}) *gomock.Call

GetProvisionerDaemons indicates an expected call of GetProvisionerDaemons.

func (*MockStoreMockRecorder) GetProvisionerJobByID

func (mr *MockStoreMockRecorder) GetProvisionerJobByID(arg0, arg1 interface{}) *gomock.Call

GetProvisionerJobByID indicates an expected call of GetProvisionerJobByID.

func (*MockStoreMockRecorder) GetProvisionerJobsByIDs

func (mr *MockStoreMockRecorder) GetProvisionerJobsByIDs(arg0, arg1 interface{}) *gomock.Call

GetProvisionerJobsByIDs indicates an expected call of GetProvisionerJobsByIDs.

func (*MockStoreMockRecorder) GetProvisionerJobsCreatedAfter

func (mr *MockStoreMockRecorder) GetProvisionerJobsCreatedAfter(arg0, arg1 interface{}) *gomock.Call

GetProvisionerJobsCreatedAfter indicates an expected call of GetProvisionerJobsCreatedAfter.

func (*MockStoreMockRecorder) GetProvisionerLogsAfterID

func (mr *MockStoreMockRecorder) GetProvisionerLogsAfterID(arg0, arg1 interface{}) *gomock.Call

GetProvisionerLogsAfterID indicates an expected call of GetProvisionerLogsAfterID.

func (*MockStoreMockRecorder) GetQuotaAllowanceForUser

func (mr *MockStoreMockRecorder) GetQuotaAllowanceForUser(arg0, arg1 interface{}) *gomock.Call

GetQuotaAllowanceForUser indicates an expected call of GetQuotaAllowanceForUser.

func (*MockStoreMockRecorder) GetQuotaConsumedForUser

func (mr *MockStoreMockRecorder) GetQuotaConsumedForUser(arg0, arg1 interface{}) *gomock.Call

GetQuotaConsumedForUser indicates an expected call of GetQuotaConsumedForUser.

func (*MockStoreMockRecorder) GetReplicasUpdatedAfter

func (mr *MockStoreMockRecorder) GetReplicasUpdatedAfter(arg0, arg1 interface{}) *gomock.Call

GetReplicasUpdatedAfter indicates an expected call of GetReplicasUpdatedAfter.

func (*MockStoreMockRecorder) GetServiceBanner

func (mr *MockStoreMockRecorder) GetServiceBanner(arg0 interface{}) *gomock.Call

GetServiceBanner indicates an expected call of GetServiceBanner.

func (*MockStoreMockRecorder) GetTemplateAverageBuildTime

func (mr *MockStoreMockRecorder) GetTemplateAverageBuildTime(arg0, arg1 interface{}) *gomock.Call

GetTemplateAverageBuildTime indicates an expected call of GetTemplateAverageBuildTime.

func (*MockStoreMockRecorder) GetTemplateByID

func (mr *MockStoreMockRecorder) GetTemplateByID(arg0, arg1 interface{}) *gomock.Call

GetTemplateByID indicates an expected call of GetTemplateByID.

func (*MockStoreMockRecorder) GetTemplateByOrganizationAndName

func (mr *MockStoreMockRecorder) GetTemplateByOrganizationAndName(arg0, arg1 interface{}) *gomock.Call

GetTemplateByOrganizationAndName indicates an expected call of GetTemplateByOrganizationAndName.

func (*MockStoreMockRecorder) GetTemplateDAUs

func (mr *MockStoreMockRecorder) GetTemplateDAUs(arg0, arg1 interface{}) *gomock.Call

GetTemplateDAUs indicates an expected call of GetTemplateDAUs.

func (*MockStoreMockRecorder) GetTemplateGroupRoles

func (mr *MockStoreMockRecorder) GetTemplateGroupRoles(arg0, arg1 interface{}) *gomock.Call

GetTemplateGroupRoles indicates an expected call of GetTemplateGroupRoles.

func (*MockStoreMockRecorder) GetTemplateUserRoles

func (mr *MockStoreMockRecorder) GetTemplateUserRoles(arg0, arg1 interface{}) *gomock.Call

GetTemplateUserRoles indicates an expected call of GetTemplateUserRoles.

func (*MockStoreMockRecorder) GetTemplateVersionByID

func (mr *MockStoreMockRecorder) GetTemplateVersionByID(arg0, arg1 interface{}) *gomock.Call

GetTemplateVersionByID indicates an expected call of GetTemplateVersionByID.

func (*MockStoreMockRecorder) GetTemplateVersionByJobID

func (mr *MockStoreMockRecorder) GetTemplateVersionByJobID(arg0, arg1 interface{}) *gomock.Call

GetTemplateVersionByJobID indicates an expected call of GetTemplateVersionByJobID.

func (*MockStoreMockRecorder) GetTemplateVersionByTemplateIDAndName

func (mr *MockStoreMockRecorder) GetTemplateVersionByTemplateIDAndName(arg0, arg1 interface{}) *gomock.Call

GetTemplateVersionByTemplateIDAndName indicates an expected call of GetTemplateVersionByTemplateIDAndName.

func (*MockStoreMockRecorder) GetTemplateVersionParameters

func (mr *MockStoreMockRecorder) GetTemplateVersionParameters(arg0, arg1 interface{}) *gomock.Call

GetTemplateVersionParameters indicates an expected call of GetTemplateVersionParameters.

func (*MockStoreMockRecorder) GetTemplateVersionVariables

func (mr *MockStoreMockRecorder) GetTemplateVersionVariables(arg0, arg1 interface{}) *gomock.Call

GetTemplateVersionVariables indicates an expected call of GetTemplateVersionVariables.

func (*MockStoreMockRecorder) GetTemplateVersionsByIDs

func (mr *MockStoreMockRecorder) GetTemplateVersionsByIDs(arg0, arg1 interface{}) *gomock.Call

GetTemplateVersionsByIDs indicates an expected call of GetTemplateVersionsByIDs.

func (*MockStoreMockRecorder) GetTemplateVersionsByTemplateID

func (mr *MockStoreMockRecorder) GetTemplateVersionsByTemplateID(arg0, arg1 interface{}) *gomock.Call

GetTemplateVersionsByTemplateID indicates an expected call of GetTemplateVersionsByTemplateID.

func (*MockStoreMockRecorder) GetTemplateVersionsCreatedAfter

func (mr *MockStoreMockRecorder) GetTemplateVersionsCreatedAfter(arg0, arg1 interface{}) *gomock.Call

GetTemplateVersionsCreatedAfter indicates an expected call of GetTemplateVersionsCreatedAfter.

func (*MockStoreMockRecorder) GetTemplates

func (mr *MockStoreMockRecorder) GetTemplates(arg0 interface{}) *gomock.Call

GetTemplates indicates an expected call of GetTemplates.

func (*MockStoreMockRecorder) GetTemplatesWithFilter

func (mr *MockStoreMockRecorder) GetTemplatesWithFilter(arg0, arg1 interface{}) *gomock.Call

GetTemplatesWithFilter indicates an expected call of GetTemplatesWithFilter.

func (*MockStoreMockRecorder) GetUnexpiredLicenses

func (mr *MockStoreMockRecorder) GetUnexpiredLicenses(arg0 interface{}) *gomock.Call

GetUnexpiredLicenses indicates an expected call of GetUnexpiredLicenses.

func (*MockStoreMockRecorder) GetUserByEmailOrUsername

func (mr *MockStoreMockRecorder) GetUserByEmailOrUsername(arg0, arg1 interface{}) *gomock.Call

GetUserByEmailOrUsername indicates an expected call of GetUserByEmailOrUsername.

func (*MockStoreMockRecorder) GetUserByID

func (mr *MockStoreMockRecorder) GetUserByID(arg0, arg1 interface{}) *gomock.Call

GetUserByID indicates an expected call of GetUserByID.

func (*MockStoreMockRecorder) GetUserCount

func (mr *MockStoreMockRecorder) GetUserCount(arg0 interface{}) *gomock.Call

GetUserCount indicates an expected call of GetUserCount.

func (*MockStoreMockRecorder) GetUserLinkByLinkedID

func (mr *MockStoreMockRecorder) GetUserLinkByLinkedID(arg0, arg1 interface{}) *gomock.Call

GetUserLinkByLinkedID indicates an expected call of GetUserLinkByLinkedID.

func (*MockStoreMockRecorder) GetUserLinkByUserIDLoginType

func (mr *MockStoreMockRecorder) GetUserLinkByUserIDLoginType(arg0, arg1 interface{}) *gomock.Call

GetUserLinkByUserIDLoginType indicates an expected call of GetUserLinkByUserIDLoginType.

func (*MockStoreMockRecorder) GetUsers

func (mr *MockStoreMockRecorder) GetUsers(arg0, arg1 interface{}) *gomock.Call

GetUsers indicates an expected call of GetUsers.

func (*MockStoreMockRecorder) GetUsersByIDs

func (mr *MockStoreMockRecorder) GetUsersByIDs(arg0, arg1 interface{}) *gomock.Call

GetUsersByIDs indicates an expected call of GetUsersByIDs.

func (*MockStoreMockRecorder) GetWorkspaceAgentByAuthToken

func (mr *MockStoreMockRecorder) GetWorkspaceAgentByAuthToken(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAgentByAuthToken indicates an expected call of GetWorkspaceAgentByAuthToken.

func (*MockStoreMockRecorder) GetWorkspaceAgentByID

func (mr *MockStoreMockRecorder) GetWorkspaceAgentByID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAgentByID indicates an expected call of GetWorkspaceAgentByID.

func (*MockStoreMockRecorder) GetWorkspaceAgentByInstanceID

func (mr *MockStoreMockRecorder) GetWorkspaceAgentByInstanceID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAgentByInstanceID indicates an expected call of GetWorkspaceAgentByInstanceID.

func (*MockStoreMockRecorder) GetWorkspaceAgentMetadata

func (mr *MockStoreMockRecorder) GetWorkspaceAgentMetadata(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAgentMetadata indicates an expected call of GetWorkspaceAgentMetadata.

func (*MockStoreMockRecorder) GetWorkspaceAgentStartupLogsAfter

func (mr *MockStoreMockRecorder) GetWorkspaceAgentStartupLogsAfter(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAgentStartupLogsAfter indicates an expected call of GetWorkspaceAgentStartupLogsAfter.

func (*MockStoreMockRecorder) GetWorkspaceAgentStats

func (mr *MockStoreMockRecorder) GetWorkspaceAgentStats(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAgentStats indicates an expected call of GetWorkspaceAgentStats.

func (*MockStoreMockRecorder) GetWorkspaceAgentStatsAndLabels

func (mr *MockStoreMockRecorder) GetWorkspaceAgentStatsAndLabels(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAgentStatsAndLabels indicates an expected call of GetWorkspaceAgentStatsAndLabels.

func (*MockStoreMockRecorder) GetWorkspaceAgentsByResourceIDs

func (mr *MockStoreMockRecorder) GetWorkspaceAgentsByResourceIDs(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAgentsByResourceIDs indicates an expected call of GetWorkspaceAgentsByResourceIDs.

func (*MockStoreMockRecorder) GetWorkspaceAgentsCreatedAfter

func (mr *MockStoreMockRecorder) GetWorkspaceAgentsCreatedAfter(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAgentsCreatedAfter indicates an expected call of GetWorkspaceAgentsCreatedAfter.

func (*MockStoreMockRecorder) GetWorkspaceAgentsInLatestBuildByWorkspaceID

func (mr *MockStoreMockRecorder) GetWorkspaceAgentsInLatestBuildByWorkspaceID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAgentsInLatestBuildByWorkspaceID indicates an expected call of GetWorkspaceAgentsInLatestBuildByWorkspaceID.

func (*MockStoreMockRecorder) GetWorkspaceAppByAgentIDAndSlug

func (mr *MockStoreMockRecorder) GetWorkspaceAppByAgentIDAndSlug(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAppByAgentIDAndSlug indicates an expected call of GetWorkspaceAppByAgentIDAndSlug.

func (*MockStoreMockRecorder) GetWorkspaceAppsByAgentID

func (mr *MockStoreMockRecorder) GetWorkspaceAppsByAgentID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAppsByAgentID indicates an expected call of GetWorkspaceAppsByAgentID.

func (*MockStoreMockRecorder) GetWorkspaceAppsByAgentIDs

func (mr *MockStoreMockRecorder) GetWorkspaceAppsByAgentIDs(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAppsByAgentIDs indicates an expected call of GetWorkspaceAppsByAgentIDs.

func (*MockStoreMockRecorder) GetWorkspaceAppsCreatedAfter

func (mr *MockStoreMockRecorder) GetWorkspaceAppsCreatedAfter(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceAppsCreatedAfter indicates an expected call of GetWorkspaceAppsCreatedAfter.

func (*MockStoreMockRecorder) GetWorkspaceBuildByID

func (mr *MockStoreMockRecorder) GetWorkspaceBuildByID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceBuildByID indicates an expected call of GetWorkspaceBuildByID.

func (*MockStoreMockRecorder) GetWorkspaceBuildByJobID

func (mr *MockStoreMockRecorder) GetWorkspaceBuildByJobID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceBuildByJobID indicates an expected call of GetWorkspaceBuildByJobID.

func (*MockStoreMockRecorder) GetWorkspaceBuildByWorkspaceIDAndBuildNumber

func (mr *MockStoreMockRecorder) GetWorkspaceBuildByWorkspaceIDAndBuildNumber(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceBuildByWorkspaceIDAndBuildNumber indicates an expected call of GetWorkspaceBuildByWorkspaceIDAndBuildNumber.

func (*MockStoreMockRecorder) GetWorkspaceBuildParameters

func (mr *MockStoreMockRecorder) GetWorkspaceBuildParameters(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceBuildParameters indicates an expected call of GetWorkspaceBuildParameters.

func (*MockStoreMockRecorder) GetWorkspaceBuildsByWorkspaceID

func (mr *MockStoreMockRecorder) GetWorkspaceBuildsByWorkspaceID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceBuildsByWorkspaceID indicates an expected call of GetWorkspaceBuildsByWorkspaceID.

func (*MockStoreMockRecorder) GetWorkspaceBuildsCreatedAfter

func (mr *MockStoreMockRecorder) GetWorkspaceBuildsCreatedAfter(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceBuildsCreatedAfter indicates an expected call of GetWorkspaceBuildsCreatedAfter.

func (*MockStoreMockRecorder) GetWorkspaceByAgentID

func (mr *MockStoreMockRecorder) GetWorkspaceByAgentID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceByAgentID indicates an expected call of GetWorkspaceByAgentID.

func (*MockStoreMockRecorder) GetWorkspaceByID

func (mr *MockStoreMockRecorder) GetWorkspaceByID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceByID indicates an expected call of GetWorkspaceByID.

func (*MockStoreMockRecorder) GetWorkspaceByOwnerIDAndName

func (mr *MockStoreMockRecorder) GetWorkspaceByOwnerIDAndName(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceByOwnerIDAndName indicates an expected call of GetWorkspaceByOwnerIDAndName.

func (*MockStoreMockRecorder) GetWorkspaceByWorkspaceAppID

func (mr *MockStoreMockRecorder) GetWorkspaceByWorkspaceAppID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceByWorkspaceAppID indicates an expected call of GetWorkspaceByWorkspaceAppID.

func (*MockStoreMockRecorder) GetWorkspaceProxies

func (mr *MockStoreMockRecorder) GetWorkspaceProxies(arg0 interface{}) *gomock.Call

GetWorkspaceProxies indicates an expected call of GetWorkspaceProxies.

func (*MockStoreMockRecorder) GetWorkspaceProxyByHostname

func (mr *MockStoreMockRecorder) GetWorkspaceProxyByHostname(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceProxyByHostname indicates an expected call of GetWorkspaceProxyByHostname.

func (*MockStoreMockRecorder) GetWorkspaceProxyByID

func (mr *MockStoreMockRecorder) GetWorkspaceProxyByID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceProxyByID indicates an expected call of GetWorkspaceProxyByID.

func (*MockStoreMockRecorder) GetWorkspaceProxyByName

func (mr *MockStoreMockRecorder) GetWorkspaceProxyByName(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceProxyByName indicates an expected call of GetWorkspaceProxyByName.

func (*MockStoreMockRecorder) GetWorkspaceResourceByID

func (mr *MockStoreMockRecorder) GetWorkspaceResourceByID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceResourceByID indicates an expected call of GetWorkspaceResourceByID.

func (*MockStoreMockRecorder) GetWorkspaceResourceMetadataByResourceIDs

func (mr *MockStoreMockRecorder) GetWorkspaceResourceMetadataByResourceIDs(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceResourceMetadataByResourceIDs indicates an expected call of GetWorkspaceResourceMetadataByResourceIDs.

func (*MockStoreMockRecorder) GetWorkspaceResourceMetadataCreatedAfter

func (mr *MockStoreMockRecorder) GetWorkspaceResourceMetadataCreatedAfter(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceResourceMetadataCreatedAfter indicates an expected call of GetWorkspaceResourceMetadataCreatedAfter.

func (*MockStoreMockRecorder) GetWorkspaceResourcesByJobID

func (mr *MockStoreMockRecorder) GetWorkspaceResourcesByJobID(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceResourcesByJobID indicates an expected call of GetWorkspaceResourcesByJobID.

func (*MockStoreMockRecorder) GetWorkspaceResourcesByJobIDs

func (mr *MockStoreMockRecorder) GetWorkspaceResourcesByJobIDs(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceResourcesByJobIDs indicates an expected call of GetWorkspaceResourcesByJobIDs.

func (*MockStoreMockRecorder) GetWorkspaceResourcesCreatedAfter

func (mr *MockStoreMockRecorder) GetWorkspaceResourcesCreatedAfter(arg0, arg1 interface{}) *gomock.Call

GetWorkspaceResourcesCreatedAfter indicates an expected call of GetWorkspaceResourcesCreatedAfter.

func (*MockStoreMockRecorder) GetWorkspaces

func (mr *MockStoreMockRecorder) GetWorkspaces(arg0, arg1 interface{}) *gomock.Call

GetWorkspaces indicates an expected call of GetWorkspaces.

func (*MockStoreMockRecorder) GetWorkspacesEligibleForAutoStartStop

func (mr *MockStoreMockRecorder) GetWorkspacesEligibleForAutoStartStop(arg0, arg1 interface{}) *gomock.Call

GetWorkspacesEligibleForAutoStartStop indicates an expected call of GetWorkspacesEligibleForAutoStartStop.

func (*MockStoreMockRecorder) InTx

func (mr *MockStoreMockRecorder) InTx(arg0, arg1 interface{}) *gomock.Call

InTx indicates an expected call of InTx.

func (*MockStoreMockRecorder) InsertAPIKey

func (mr *MockStoreMockRecorder) InsertAPIKey(arg0, arg1 interface{}) *gomock.Call

InsertAPIKey indicates an expected call of InsertAPIKey.

func (*MockStoreMockRecorder) InsertAllUsersGroup

func (mr *MockStoreMockRecorder) InsertAllUsersGroup(arg0, arg1 interface{}) *gomock.Call

InsertAllUsersGroup indicates an expected call of InsertAllUsersGroup.

func (*MockStoreMockRecorder) InsertAuditLog

func (mr *MockStoreMockRecorder) InsertAuditLog(arg0, arg1 interface{}) *gomock.Call

InsertAuditLog indicates an expected call of InsertAuditLog.

func (*MockStoreMockRecorder) InsertDERPMeshKey

func (mr *MockStoreMockRecorder) InsertDERPMeshKey(arg0, arg1 interface{}) *gomock.Call

InsertDERPMeshKey indicates an expected call of InsertDERPMeshKey.

func (*MockStoreMockRecorder) InsertDeploymentID

func (mr *MockStoreMockRecorder) InsertDeploymentID(arg0, arg1 interface{}) *gomock.Call

InsertDeploymentID indicates an expected call of InsertDeploymentID.

func (*MockStoreMockRecorder) InsertFile

func (mr *MockStoreMockRecorder) InsertFile(arg0, arg1 interface{}) *gomock.Call

InsertFile indicates an expected call of InsertFile.

func (mr *MockStoreMockRecorder) InsertGitAuthLink(arg0, arg1 interface{}) *gomock.Call

InsertGitAuthLink indicates an expected call of InsertGitAuthLink.

func (*MockStoreMockRecorder) InsertGitSSHKey

func (mr *MockStoreMockRecorder) InsertGitSSHKey(arg0, arg1 interface{}) *gomock.Call

InsertGitSSHKey indicates an expected call of InsertGitSSHKey.

func (*MockStoreMockRecorder) InsertGroup

func (mr *MockStoreMockRecorder) InsertGroup(arg0, arg1 interface{}) *gomock.Call

InsertGroup indicates an expected call of InsertGroup.

func (*MockStoreMockRecorder) InsertGroupMember

func (mr *MockStoreMockRecorder) InsertGroupMember(arg0, arg1 interface{}) *gomock.Call

InsertGroupMember indicates an expected call of InsertGroupMember.

func (*MockStoreMockRecorder) InsertLicense

func (mr *MockStoreMockRecorder) InsertLicense(arg0, arg1 interface{}) *gomock.Call

InsertLicense indicates an expected call of InsertLicense.

func (*MockStoreMockRecorder) InsertOrganization

func (mr *MockStoreMockRecorder) InsertOrganization(arg0, arg1 interface{}) *gomock.Call

InsertOrganization indicates an expected call of InsertOrganization.

func (*MockStoreMockRecorder) InsertOrganizationMember

func (mr *MockStoreMockRecorder) InsertOrganizationMember(arg0, arg1 interface{}) *gomock.Call

InsertOrganizationMember indicates an expected call of InsertOrganizationMember.

func (*MockStoreMockRecorder) InsertProvisionerDaemon

func (mr *MockStoreMockRecorder) InsertProvisionerDaemon(arg0, arg1 interface{}) *gomock.Call

InsertProvisionerDaemon indicates an expected call of InsertProvisionerDaemon.

func (*MockStoreMockRecorder) InsertProvisionerJob

func (mr *MockStoreMockRecorder) InsertProvisionerJob(arg0, arg1 interface{}) *gomock.Call

InsertProvisionerJob indicates an expected call of InsertProvisionerJob.

func (*MockStoreMockRecorder) InsertProvisionerJobLogs

func (mr *MockStoreMockRecorder) InsertProvisionerJobLogs(arg0, arg1 interface{}) *gomock.Call

InsertProvisionerJobLogs indicates an expected call of InsertProvisionerJobLogs.

func (*MockStoreMockRecorder) InsertReplica

func (mr *MockStoreMockRecorder) InsertReplica(arg0, arg1 interface{}) *gomock.Call

InsertReplica indicates an expected call of InsertReplica.

func (*MockStoreMockRecorder) InsertTemplate

func (mr *MockStoreMockRecorder) InsertTemplate(arg0, arg1 interface{}) *gomock.Call

InsertTemplate indicates an expected call of InsertTemplate.

func (*MockStoreMockRecorder) InsertTemplateVersion

func (mr *MockStoreMockRecorder) InsertTemplateVersion(arg0, arg1 interface{}) *gomock.Call

InsertTemplateVersion indicates an expected call of InsertTemplateVersion.

func (*MockStoreMockRecorder) InsertTemplateVersionParameter

func (mr *MockStoreMockRecorder) InsertTemplateVersionParameter(arg0, arg1 interface{}) *gomock.Call

InsertTemplateVersionParameter indicates an expected call of InsertTemplateVersionParameter.

func (*MockStoreMockRecorder) InsertTemplateVersionVariable

func (mr *MockStoreMockRecorder) InsertTemplateVersionVariable(arg0, arg1 interface{}) *gomock.Call

InsertTemplateVersionVariable indicates an expected call of InsertTemplateVersionVariable.

func (*MockStoreMockRecorder) InsertUser

func (mr *MockStoreMockRecorder) InsertUser(arg0, arg1 interface{}) *gomock.Call

InsertUser indicates an expected call of InsertUser.

func (*MockStoreMockRecorder) InsertUserGroupsByName

func (mr *MockStoreMockRecorder) InsertUserGroupsByName(arg0, arg1 interface{}) *gomock.Call

InsertUserGroupsByName indicates an expected call of InsertUserGroupsByName.

func (mr *MockStoreMockRecorder) InsertUserLink(arg0, arg1 interface{}) *gomock.Call

InsertUserLink indicates an expected call of InsertUserLink.

func (*MockStoreMockRecorder) InsertWorkspace

func (mr *MockStoreMockRecorder) InsertWorkspace(arg0, arg1 interface{}) *gomock.Call

InsertWorkspace indicates an expected call of InsertWorkspace.

func (*MockStoreMockRecorder) InsertWorkspaceAgent

func (mr *MockStoreMockRecorder) InsertWorkspaceAgent(arg0, arg1 interface{}) *gomock.Call

InsertWorkspaceAgent indicates an expected call of InsertWorkspaceAgent.

func (*MockStoreMockRecorder) InsertWorkspaceAgentMetadata

func (mr *MockStoreMockRecorder) InsertWorkspaceAgentMetadata(arg0, arg1 interface{}) *gomock.Call

InsertWorkspaceAgentMetadata indicates an expected call of InsertWorkspaceAgentMetadata.

func (*MockStoreMockRecorder) InsertWorkspaceAgentStartupLogs

func (mr *MockStoreMockRecorder) InsertWorkspaceAgentStartupLogs(arg0, arg1 interface{}) *gomock.Call

InsertWorkspaceAgentStartupLogs indicates an expected call of InsertWorkspaceAgentStartupLogs.

func (*MockStoreMockRecorder) InsertWorkspaceAgentStat

func (mr *MockStoreMockRecorder) InsertWorkspaceAgentStat(arg0, arg1 interface{}) *gomock.Call

InsertWorkspaceAgentStat indicates an expected call of InsertWorkspaceAgentStat.

func (*MockStoreMockRecorder) InsertWorkspaceApp

func (mr *MockStoreMockRecorder) InsertWorkspaceApp(arg0, arg1 interface{}) *gomock.Call

InsertWorkspaceApp indicates an expected call of InsertWorkspaceApp.

func (*MockStoreMockRecorder) InsertWorkspaceBuild

func (mr *MockStoreMockRecorder) InsertWorkspaceBuild(arg0, arg1 interface{}) *gomock.Call

InsertWorkspaceBuild indicates an expected call of InsertWorkspaceBuild.

func (*MockStoreMockRecorder) InsertWorkspaceBuildParameters

func (mr *MockStoreMockRecorder) InsertWorkspaceBuildParameters(arg0, arg1 interface{}) *gomock.Call

InsertWorkspaceBuildParameters indicates an expected call of InsertWorkspaceBuildParameters.

func (*MockStoreMockRecorder) InsertWorkspaceProxy

func (mr *MockStoreMockRecorder) InsertWorkspaceProxy(arg0, arg1 interface{}) *gomock.Call

InsertWorkspaceProxy indicates an expected call of InsertWorkspaceProxy.

func (*MockStoreMockRecorder) InsertWorkspaceResource

func (mr *MockStoreMockRecorder) InsertWorkspaceResource(arg0, arg1 interface{}) *gomock.Call

InsertWorkspaceResource indicates an expected call of InsertWorkspaceResource.

func (*MockStoreMockRecorder) InsertWorkspaceResourceMetadata

func (mr *MockStoreMockRecorder) InsertWorkspaceResourceMetadata(arg0, arg1 interface{}) *gomock.Call

InsertWorkspaceResourceMetadata indicates an expected call of InsertWorkspaceResourceMetadata.

func (*MockStoreMockRecorder) Ping

func (mr *MockStoreMockRecorder) Ping(arg0 interface{}) *gomock.Call

Ping indicates an expected call of Ping.

func (*MockStoreMockRecorder) RegisterWorkspaceProxy

func (mr *MockStoreMockRecorder) RegisterWorkspaceProxy(arg0, arg1 interface{}) *gomock.Call

RegisterWorkspaceProxy indicates an expected call of RegisterWorkspaceProxy.

func (*MockStoreMockRecorder) TryAcquireLock

func (mr *MockStoreMockRecorder) TryAcquireLock(arg0, arg1 interface{}) *gomock.Call

TryAcquireLock indicates an expected call of TryAcquireLock.

func (*MockStoreMockRecorder) UpdateAPIKeyByID

func (mr *MockStoreMockRecorder) UpdateAPIKeyByID(arg0, arg1 interface{}) *gomock.Call

UpdateAPIKeyByID indicates an expected call of UpdateAPIKeyByID.

func (mr *MockStoreMockRecorder) UpdateGitAuthLink(arg0, arg1 interface{}) *gomock.Call

UpdateGitAuthLink indicates an expected call of UpdateGitAuthLink.

func (*MockStoreMockRecorder) UpdateGitSSHKey

func (mr *MockStoreMockRecorder) UpdateGitSSHKey(arg0, arg1 interface{}) *gomock.Call

UpdateGitSSHKey indicates an expected call of UpdateGitSSHKey.

func (*MockStoreMockRecorder) UpdateGroupByID

func (mr *MockStoreMockRecorder) UpdateGroupByID(arg0, arg1 interface{}) *gomock.Call

UpdateGroupByID indicates an expected call of UpdateGroupByID.

func (*MockStoreMockRecorder) UpdateMemberRoles

func (mr *MockStoreMockRecorder) UpdateMemberRoles(arg0, arg1 interface{}) *gomock.Call

UpdateMemberRoles indicates an expected call of UpdateMemberRoles.

func (*MockStoreMockRecorder) UpdateProvisionerJobByID

func (mr *MockStoreMockRecorder) UpdateProvisionerJobByID(arg0, arg1 interface{}) *gomock.Call

UpdateProvisionerJobByID indicates an expected call of UpdateProvisionerJobByID.

func (*MockStoreMockRecorder) UpdateProvisionerJobWithCancelByID

func (mr *MockStoreMockRecorder) UpdateProvisionerJobWithCancelByID(arg0, arg1 interface{}) *gomock.Call

UpdateProvisionerJobWithCancelByID indicates an expected call of UpdateProvisionerJobWithCancelByID.

func (*MockStoreMockRecorder) UpdateProvisionerJobWithCompleteByID

func (mr *MockStoreMockRecorder) UpdateProvisionerJobWithCompleteByID(arg0, arg1 interface{}) *gomock.Call

UpdateProvisionerJobWithCompleteByID indicates an expected call of UpdateProvisionerJobWithCompleteByID.

func (*MockStoreMockRecorder) UpdateReplica

func (mr *MockStoreMockRecorder) UpdateReplica(arg0, arg1 interface{}) *gomock.Call

UpdateReplica indicates an expected call of UpdateReplica.

func (*MockStoreMockRecorder) UpdateTemplateACLByID

func (mr *MockStoreMockRecorder) UpdateTemplateACLByID(arg0, arg1 interface{}) *gomock.Call

UpdateTemplateACLByID indicates an expected call of UpdateTemplateACLByID.

func (*MockStoreMockRecorder) UpdateTemplateActiveVersionByID

func (mr *MockStoreMockRecorder) UpdateTemplateActiveVersionByID(arg0, arg1 interface{}) *gomock.Call

UpdateTemplateActiveVersionByID indicates an expected call of UpdateTemplateActiveVersionByID.

func (*MockStoreMockRecorder) UpdateTemplateDeletedByID

func (mr *MockStoreMockRecorder) UpdateTemplateDeletedByID(arg0, arg1 interface{}) *gomock.Call

UpdateTemplateDeletedByID indicates an expected call of UpdateTemplateDeletedByID.

func (*MockStoreMockRecorder) UpdateTemplateMetaByID

func (mr *MockStoreMockRecorder) UpdateTemplateMetaByID(arg0, arg1 interface{}) *gomock.Call

UpdateTemplateMetaByID indicates an expected call of UpdateTemplateMetaByID.

func (*MockStoreMockRecorder) UpdateTemplateScheduleByID

func (mr *MockStoreMockRecorder) UpdateTemplateScheduleByID(arg0, arg1 interface{}) *gomock.Call

UpdateTemplateScheduleByID indicates an expected call of UpdateTemplateScheduleByID.

func (*MockStoreMockRecorder) UpdateTemplateVersionByID

func (mr *MockStoreMockRecorder) UpdateTemplateVersionByID(arg0, arg1 interface{}) *gomock.Call

UpdateTemplateVersionByID indicates an expected call of UpdateTemplateVersionByID.

func (*MockStoreMockRecorder) UpdateTemplateVersionDescriptionByJobID

func (mr *MockStoreMockRecorder) UpdateTemplateVersionDescriptionByJobID(arg0, arg1 interface{}) *gomock.Call

UpdateTemplateVersionDescriptionByJobID indicates an expected call of UpdateTemplateVersionDescriptionByJobID.

func (*MockStoreMockRecorder) UpdateTemplateVersionGitAuthProvidersByJobID

func (mr *MockStoreMockRecorder) UpdateTemplateVersionGitAuthProvidersByJobID(arg0, arg1 interface{}) *gomock.Call

UpdateTemplateVersionGitAuthProvidersByJobID indicates an expected call of UpdateTemplateVersionGitAuthProvidersByJobID.

func (*MockStoreMockRecorder) UpdateUserDeletedByID

func (mr *MockStoreMockRecorder) UpdateUserDeletedByID(arg0, arg1 interface{}) *gomock.Call

UpdateUserDeletedByID indicates an expected call of UpdateUserDeletedByID.

func (*MockStoreMockRecorder) UpdateUserHashedPassword

func (mr *MockStoreMockRecorder) UpdateUserHashedPassword(arg0, arg1 interface{}) *gomock.Call

UpdateUserHashedPassword indicates an expected call of UpdateUserHashedPassword.

func (*MockStoreMockRecorder) UpdateUserLastSeenAt

func (mr *MockStoreMockRecorder) UpdateUserLastSeenAt(arg0, arg1 interface{}) *gomock.Call

UpdateUserLastSeenAt indicates an expected call of UpdateUserLastSeenAt.

func (mr *MockStoreMockRecorder) UpdateUserLink(arg0, arg1 interface{}) *gomock.Call

UpdateUserLink indicates an expected call of UpdateUserLink.

func (*MockStoreMockRecorder) UpdateUserLinkedID

func (mr *MockStoreMockRecorder) UpdateUserLinkedID(arg0, arg1 interface{}) *gomock.Call

UpdateUserLinkedID indicates an expected call of UpdateUserLinkedID.

func (*MockStoreMockRecorder) UpdateUserProfile

func (mr *MockStoreMockRecorder) UpdateUserProfile(arg0, arg1 interface{}) *gomock.Call

UpdateUserProfile indicates an expected call of UpdateUserProfile.

func (*MockStoreMockRecorder) UpdateUserRoles

func (mr *MockStoreMockRecorder) UpdateUserRoles(arg0, arg1 interface{}) *gomock.Call

UpdateUserRoles indicates an expected call of UpdateUserRoles.

func (*MockStoreMockRecorder) UpdateUserStatus

func (mr *MockStoreMockRecorder) UpdateUserStatus(arg0, arg1 interface{}) *gomock.Call

UpdateUserStatus indicates an expected call of UpdateUserStatus.

func (*MockStoreMockRecorder) UpdateWorkspace

func (mr *MockStoreMockRecorder) UpdateWorkspace(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspace indicates an expected call of UpdateWorkspace.

func (*MockStoreMockRecorder) UpdateWorkspaceAgentConnectionByID

func (mr *MockStoreMockRecorder) UpdateWorkspaceAgentConnectionByID(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceAgentConnectionByID indicates an expected call of UpdateWorkspaceAgentConnectionByID.

func (*MockStoreMockRecorder) UpdateWorkspaceAgentLifecycleStateByID

func (mr *MockStoreMockRecorder) UpdateWorkspaceAgentLifecycleStateByID(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceAgentLifecycleStateByID indicates an expected call of UpdateWorkspaceAgentLifecycleStateByID.

func (*MockStoreMockRecorder) UpdateWorkspaceAgentMetadata

func (mr *MockStoreMockRecorder) UpdateWorkspaceAgentMetadata(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceAgentMetadata indicates an expected call of UpdateWorkspaceAgentMetadata.

func (*MockStoreMockRecorder) UpdateWorkspaceAgentStartupByID

func (mr *MockStoreMockRecorder) UpdateWorkspaceAgentStartupByID(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceAgentStartupByID indicates an expected call of UpdateWorkspaceAgentStartupByID.

func (*MockStoreMockRecorder) UpdateWorkspaceAgentStartupLogOverflowByID

func (mr *MockStoreMockRecorder) UpdateWorkspaceAgentStartupLogOverflowByID(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceAgentStartupLogOverflowByID indicates an expected call of UpdateWorkspaceAgentStartupLogOverflowByID.

func (*MockStoreMockRecorder) UpdateWorkspaceAppHealthByID

func (mr *MockStoreMockRecorder) UpdateWorkspaceAppHealthByID(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceAppHealthByID indicates an expected call of UpdateWorkspaceAppHealthByID.

func (*MockStoreMockRecorder) UpdateWorkspaceAutostart

func (mr *MockStoreMockRecorder) UpdateWorkspaceAutostart(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceAutostart indicates an expected call of UpdateWorkspaceAutostart.

func (*MockStoreMockRecorder) UpdateWorkspaceBuildByID

func (mr *MockStoreMockRecorder) UpdateWorkspaceBuildByID(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceBuildByID indicates an expected call of UpdateWorkspaceBuildByID.

func (*MockStoreMockRecorder) UpdateWorkspaceBuildCostByID

func (mr *MockStoreMockRecorder) UpdateWorkspaceBuildCostByID(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceBuildCostByID indicates an expected call of UpdateWorkspaceBuildCostByID.

func (*MockStoreMockRecorder) UpdateWorkspaceDeletedByID

func (mr *MockStoreMockRecorder) UpdateWorkspaceDeletedByID(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceDeletedByID indicates an expected call of UpdateWorkspaceDeletedByID.

func (*MockStoreMockRecorder) UpdateWorkspaceLastUsedAt

func (mr *MockStoreMockRecorder) UpdateWorkspaceLastUsedAt(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceLastUsedAt indicates an expected call of UpdateWorkspaceLastUsedAt.

func (*MockStoreMockRecorder) UpdateWorkspaceProxy

func (mr *MockStoreMockRecorder) UpdateWorkspaceProxy(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceProxy indicates an expected call of UpdateWorkspaceProxy.

func (*MockStoreMockRecorder) UpdateWorkspaceProxyDeleted

func (mr *MockStoreMockRecorder) UpdateWorkspaceProxyDeleted(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceProxyDeleted indicates an expected call of UpdateWorkspaceProxyDeleted.

func (*MockStoreMockRecorder) UpdateWorkspaceTTL

func (mr *MockStoreMockRecorder) UpdateWorkspaceTTL(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceTTL indicates an expected call of UpdateWorkspaceTTL.

func (*MockStoreMockRecorder) UpdateWorkspaceTTLToBeWithinTemplateMax

func (mr *MockStoreMockRecorder) UpdateWorkspaceTTLToBeWithinTemplateMax(arg0, arg1 interface{}) *gomock.Call

UpdateWorkspaceTTLToBeWithinTemplateMax indicates an expected call of UpdateWorkspaceTTLToBeWithinTemplateMax.

func (*MockStoreMockRecorder) UpsertAppSecurityKey

func (mr *MockStoreMockRecorder) UpsertAppSecurityKey(arg0, arg1 interface{}) *gomock.Call

UpsertAppSecurityKey indicates an expected call of UpsertAppSecurityKey.

func (*MockStoreMockRecorder) UpsertDefaultProxy added in v0.24.0

func (mr *MockStoreMockRecorder) UpsertDefaultProxy(arg0, arg1 interface{}) *gomock.Call

UpsertDefaultProxy indicates an expected call of UpsertDefaultProxy.

func (*MockStoreMockRecorder) UpsertLastUpdateCheck

func (mr *MockStoreMockRecorder) UpsertLastUpdateCheck(arg0, arg1 interface{}) *gomock.Call

UpsertLastUpdateCheck indicates an expected call of UpsertLastUpdateCheck.

func (*MockStoreMockRecorder) UpsertLogoURL

func (mr *MockStoreMockRecorder) UpsertLogoURL(arg0, arg1 interface{}) *gomock.Call

UpsertLogoURL indicates an expected call of UpsertLogoURL.

func (*MockStoreMockRecorder) UpsertServiceBanner

func (mr *MockStoreMockRecorder) UpsertServiceBanner(arg0, arg1 interface{}) *gomock.Call

UpsertServiceBanner indicates an expected call of UpsertServiceBanner.

func (*MockStoreMockRecorder) Wrappers added in v0.24.0

func (mr *MockStoreMockRecorder) Wrappers() *gomock.Call

Wrappers indicates an expected call of Wrappers.

Jump to

Keyboard shortcuts

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