mockdb

package
v0.0.67 Latest Latest
Warning

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

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

Documentation

Overview

Package mockdb 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) BeginTransaction

func (m *MockStore) BeginTransaction() (*sql.Tx, error)

BeginTransaction mocks base method.

func (*MockStore) BulkGetProfilesByID

func (m *MockStore) BulkGetProfilesByID(arg0 context.Context, arg1 []uuid.UUID) ([]db.BulkGetProfilesByIDRow, error)

BulkGetProfilesByID mocks base method.

func (*MockStore) CheckHealth

func (m *MockStore) CheckHealth() error

CheckHealth mocks base method.

func (*MockStore) Commit

func (m *MockStore) Commit(arg0 *sql.Tx) error

Commit mocks base method.

func (*MockStore) CountProfilesByEntityType

func (m *MockStore) CountProfilesByEntityType(arg0 context.Context) ([]db.CountProfilesByEntityTypeRow, error)

CountProfilesByEntityType mocks base method.

func (*MockStore) CountProfilesByName

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

CountProfilesByName mocks base method.

func (*MockStore) CountProfilesByProjectID

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

CountProfilesByProjectID mocks base method.

func (*MockStore) CountRepositories

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

CountRepositories mocks base method.

func (*MockStore) CountRepositoriesByProjectID

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

CountRepositoriesByProjectID mocks base method.

func (*MockStore) CountUsers

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

CountUsers mocks base method.

func (*MockStore) CreateEntity

func (m *MockStore) CreateEntity(arg0 context.Context, arg1 db.CreateEntityParams) (db.EntityInstance, error)

CreateEntity mocks base method.

func (*MockStore) CreateEntityWithID

func (m *MockStore) CreateEntityWithID(arg0 context.Context, arg1 db.CreateEntityWithIDParams) (db.EntityInstance, error)

CreateEntityWithID mocks base method.

func (*MockStore) CreateInvitation

func (m *MockStore) CreateInvitation(arg0 context.Context, arg1 db.CreateInvitationParams) (db.UserInvite, error)

CreateInvitation mocks base method.

func (*MockStore) CreateOrEnsureEntityByID

func (m *MockStore) CreateOrEnsureEntityByID(arg0 context.Context, arg1 db.CreateOrEnsureEntityByIDParams) (db.EntityInstance, error)

CreateOrEnsureEntityByID mocks base method.

func (*MockStore) CreateProfile

func (m *MockStore) CreateProfile(arg0 context.Context, arg1 db.CreateProfileParams) (db.Profile, error)

CreateProfile mocks base method.

func (*MockStore) CreateProfileForEntity

func (m *MockStore) CreateProfileForEntity(arg0 context.Context, arg1 db.CreateProfileForEntityParams) (db.EntityProfile, error)

CreateProfileForEntity mocks base method.

func (*MockStore) CreateProject

func (m *MockStore) CreateProject(arg0 context.Context, arg1 db.CreateProjectParams) (db.Project, error)

CreateProject mocks base method.

func (*MockStore) CreateProjectWithID

func (m *MockStore) CreateProjectWithID(arg0 context.Context, arg1 db.CreateProjectWithIDParams) (db.Project, error)

CreateProjectWithID mocks base method.

func (*MockStore) CreateProvider

func (m *MockStore) CreateProvider(arg0 context.Context, arg1 db.CreateProviderParams) (db.Provider, error)

CreateProvider mocks base method.

func (*MockStore) CreateRepository

func (m *MockStore) CreateRepository(arg0 context.Context, arg1 db.CreateRepositoryParams) (db.Repository, error)

CreateRepository mocks base method.

func (*MockStore) CreateRuleType

func (m *MockStore) CreateRuleType(arg0 context.Context, arg1 db.CreateRuleTypeParams) (db.RuleType, error)

CreateRuleType mocks base method.

func (*MockStore) CreateSelector

func (m *MockStore) CreateSelector(arg0 context.Context, arg1 db.CreateSelectorParams) (db.ProfileSelector, error)

CreateSelector mocks base method.

func (*MockStore) CreateSessionState

func (m *MockStore) CreateSessionState(arg0 context.Context, arg1 db.CreateSessionStateParams) (db.SessionStore, error)

CreateSessionState mocks base method.

func (*MockStore) CreateSubscription

func (m *MockStore) CreateSubscription(arg0 context.Context, arg1 db.CreateSubscriptionParams) (db.Subscription, error)

CreateSubscription mocks base method.

func (*MockStore) CreateUser

func (m *MockStore) CreateUser(arg0 context.Context, arg1 string) (db.User, error)

CreateUser mocks base method.

func (*MockStore) DeleteAllPropertiesForEntity

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

DeleteAllPropertiesForEntity mocks base method.

func (*MockStore) DeleteArtifact

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

DeleteArtifact mocks base method.

func (*MockStore) DeleteEntity

func (m *MockStore) DeleteEntity(arg0 context.Context, arg1 db.DeleteEntityParams) error

DeleteEntity mocks base method.

func (*MockStore) DeleteEvaluationHistoryByIDs

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

DeleteEvaluationHistoryByIDs mocks base method.

func (*MockStore) DeleteExpiredSessionStates

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

DeleteExpiredSessionStates mocks base method.

func (*MockStore) DeleteInstallationIDByAppID

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

DeleteInstallationIDByAppID mocks base method.

func (*MockStore) DeleteInvitation

func (m *MockStore) DeleteInvitation(arg0 context.Context, arg1 string) (db.UserInvite, error)

DeleteInvitation mocks base method.

func (*MockStore) DeleteNonUpdatedRules

func (m *MockStore) DeleteNonUpdatedRules(arg0 context.Context, arg1 db.DeleteNonUpdatedRulesParams) error

DeleteNonUpdatedRules mocks base method.

func (*MockStore) DeleteProfile

func (m *MockStore) DeleteProfile(arg0 context.Context, arg1 db.DeleteProfileParams) error

DeleteProfile mocks base method.

func (*MockStore) DeleteProfileForEntity

func (m *MockStore) DeleteProfileForEntity(arg0 context.Context, arg1 db.DeleteProfileForEntityParams) error

DeleteProfileForEntity mocks base method.

func (*MockStore) DeleteProject

func (m *MockStore) DeleteProject(arg0 context.Context, arg1 uuid.UUID) ([]db.DeleteProjectRow, error)

DeleteProject mocks base method.

func (*MockStore) DeleteProperty

func (m *MockStore) DeleteProperty(arg0 context.Context, arg1 db.DeletePropertyParams) error

DeleteProperty mocks base method.

func (*MockStore) DeleteProvider

func (m *MockStore) DeleteProvider(arg0 context.Context, arg1 db.DeleteProviderParams) error

DeleteProvider mocks base method.

func (*MockStore) DeleteRepository

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

DeleteRepository mocks base method.

func (*MockStore) DeleteRuleType

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

DeleteRuleType mocks base method.

func (*MockStore) DeleteSelector

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

DeleteSelector mocks base method.

func (*MockStore) DeleteSelectorsByProfileID

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

DeleteSelectorsByProfileID mocks base method.

func (*MockStore) DeleteSessionStateByProjectID

func (m *MockStore) DeleteSessionStateByProjectID(arg0 context.Context, arg1 db.DeleteSessionStateByProjectIDParams) error

DeleteSessionStateByProjectID mocks base method.

func (*MockStore) DeleteUser

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

DeleteUser 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) EnqueueFlush

func (m *MockStore) EnqueueFlush(arg0 context.Context, arg1 db.EnqueueFlushParams) (db.FlushCache, error)

EnqueueFlush mocks base method.

func (*MockStore) FindProviders

func (m *MockStore) FindProviders(arg0 context.Context, arg1 db.FindProvidersParams) ([]db.Provider, error)

FindProviders mocks base method.

func (*MockStore) FlushCache

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

FlushCache mocks base method.

func (*MockStore) GetAccessTokenByEnrollmentNonce

func (m *MockStore) GetAccessTokenByEnrollmentNonce(arg0 context.Context, arg1 db.GetAccessTokenByEnrollmentNonceParams) (db.ProviderAccessToken, error)

GetAccessTokenByEnrollmentNonce mocks base method.

func (*MockStore) GetAccessTokenByProjectID

func (m *MockStore) GetAccessTokenByProjectID(arg0 context.Context, arg1 db.GetAccessTokenByProjectIDParams) (db.ProviderAccessToken, error)

GetAccessTokenByProjectID mocks base method.

func (*MockStore) GetAccessTokenByProvider

func (m *MockStore) GetAccessTokenByProvider(arg0 context.Context, arg1 string) ([]db.ProviderAccessToken, error)

GetAccessTokenByProvider mocks base method.

func (*MockStore) GetAccessTokenSinceDate

func (m *MockStore) GetAccessTokenSinceDate(arg0 context.Context, arg1 db.GetAccessTokenSinceDateParams) (db.ProviderAccessToken, error)

GetAccessTokenSinceDate mocks base method.

func (*MockStore) GetAllPropertiesForEntity

func (m *MockStore) GetAllPropertiesForEntity(arg0 context.Context, arg1 uuid.UUID) ([]db.Property, error)

GetAllPropertiesForEntity mocks base method.

func (*MockStore) GetAllPropertyValuesV1

func (m *MockStore) GetAllPropertyValuesV1(arg0 context.Context, arg1 uuid.UUID) ([]db.PropertyValueV1, error)

GetAllPropertyValuesV1 mocks base method.

func (*MockStore) GetArtifactByID

func (m *MockStore) GetArtifactByID(arg0 context.Context, arg1 db.GetArtifactByIDParams) (db.Artifact, error)

GetArtifactByID mocks base method.

func (*MockStore) GetArtifactByName

func (m *MockStore) GetArtifactByName(arg0 context.Context, arg1 db.GetArtifactByNameParams) (db.Artifact, error)

GetArtifactByName mocks base method.

func (*MockStore) GetBundle

func (m *MockStore) GetBundle(arg0 context.Context, arg1 db.GetBundleParams) (db.Bundle, error)

GetBundle mocks base method.

func (*MockStore) GetChildrenProjects

func (m *MockStore) GetChildrenProjects(arg0 context.Context, arg1 uuid.UUID) ([]db.GetChildrenProjectsRow, error)

GetChildrenProjects mocks base method.

func (*MockStore) GetEntitiesByProjectHierarchy

func (m *MockStore) GetEntitiesByProjectHierarchy(arg0 context.Context, arg1 []uuid.UUID) ([]db.EntityInstance, error)

GetEntitiesByProjectHierarchy mocks base method.

func (*MockStore) GetEntitiesByProvider

func (m *MockStore) GetEntitiesByProvider(arg0 context.Context, arg1 uuid.UUID) ([]db.EntityInstance, error)

GetEntitiesByProvider mocks base method.

func (*MockStore) GetEntitiesByType

func (m *MockStore) GetEntitiesByType(arg0 context.Context, arg1 db.GetEntitiesByTypeParams) ([]db.EntityInstance, error)

GetEntitiesByType mocks base method.

func (*MockStore) GetEntitlementFeaturesByProjectID

func (m *MockStore) GetEntitlementFeaturesByProjectID(arg0 context.Context, arg1 uuid.UUID) ([]string, error)

GetEntitlementFeaturesByProjectID mocks base method.

func (*MockStore) GetEntityByID

func (m *MockStore) GetEntityByID(arg0 context.Context, arg1 uuid.UUID) (db.EntityInstance, error)

GetEntityByID mocks base method.

func (*MockStore) GetEntityByName

func (m *MockStore) GetEntityByName(arg0 context.Context, arg1 db.GetEntityByNameParams) (db.EntityInstance, error)

GetEntityByName mocks base method.

func (*MockStore) GetEvaluationHistory

func (m *MockStore) GetEvaluationHistory(arg0 context.Context, arg1 db.GetEvaluationHistoryParams) (db.GetEvaluationHistoryRow, error)

GetEvaluationHistory mocks base method.

func (*MockStore) GetFeatureInProject

func (m *MockStore) GetFeatureInProject(arg0 context.Context, arg1 db.GetFeatureInProjectParams) (json.RawMessage, error)

GetFeatureInProject mocks base method.

func (*MockStore) GetImmediateChildrenProjects

func (m *MockStore) GetImmediateChildrenProjects(arg0 context.Context, arg1 uuid.UUID) ([]db.Project, error)

GetImmediateChildrenProjects mocks base method.

func (*MockStore) GetInstallationIDByAppID

func (m *MockStore) GetInstallationIDByAppID(arg0 context.Context, arg1 int64) (db.ProviderGithubAppInstallation, error)

GetInstallationIDByAppID mocks base method.

func (*MockStore) GetInstallationIDByEnrollmentNonce

func (m *MockStore) GetInstallationIDByEnrollmentNonce(arg0 context.Context, arg1 db.GetInstallationIDByEnrollmentNonceParams) (db.ProviderGithubAppInstallation, error)

GetInstallationIDByEnrollmentNonce mocks base method.

func (*MockStore) GetInstallationIDByProviderID

func (m *MockStore) GetInstallationIDByProviderID(arg0 context.Context, arg1 uuid.NullUUID) (db.ProviderGithubAppInstallation, error)

GetInstallationIDByProviderID mocks base method.

func (*MockStore) GetInvitationByCode

func (m *MockStore) GetInvitationByCode(arg0 context.Context, arg1 string) (db.GetInvitationByCodeRow, error)

GetInvitationByCode mocks base method.

func (*MockStore) GetInvitationsByEmail

func (m *MockStore) GetInvitationsByEmail(arg0 context.Context, arg1 string) ([]db.GetInvitationsByEmailRow, error)

GetInvitationsByEmail mocks base method.

func (*MockStore) GetInvitationsByEmailAndProject

GetInvitationsByEmailAndProject mocks base method.

func (*MockStore) GetLatestEvalStateForRuleEntity

func (m *MockStore) GetLatestEvalStateForRuleEntity(arg0 context.Context, arg1 db.GetLatestEvalStateForRuleEntityParams) (db.EvaluationStatus, error)

GetLatestEvalStateForRuleEntity mocks base method.

func (*MockStore) GetParentProjects

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

GetParentProjects mocks base method.

func (*MockStore) GetParentProjectsUntil

func (m *MockStore) GetParentProjectsUntil(arg0 context.Context, arg1 db.GetParentProjectsUntilParams) ([]uuid.UUID, error)

GetParentProjectsUntil mocks base method.

func (*MockStore) GetProfileByID

func (m *MockStore) GetProfileByID(arg0 context.Context, arg1 db.GetProfileByIDParams) (db.Profile, error)

GetProfileByID mocks base method.

func (*MockStore) GetProfileByIDAndLock

func (m *MockStore) GetProfileByIDAndLock(arg0 context.Context, arg1 db.GetProfileByIDAndLockParams) (db.Profile, error)

GetProfileByIDAndLock mocks base method.

func (*MockStore) GetProfileByNameAndLock

func (m *MockStore) GetProfileByNameAndLock(arg0 context.Context, arg1 db.GetProfileByNameAndLockParams) (db.Profile, error)

GetProfileByNameAndLock mocks base method.

func (*MockStore) GetProfileByProjectAndID

func (m *MockStore) GetProfileByProjectAndID(arg0 context.Context, arg1 db.GetProfileByProjectAndIDParams) ([]db.GetProfileByProjectAndIDRow, error)

GetProfileByProjectAndID mocks base method.

func (*MockStore) GetProfileByProjectAndName

func (m *MockStore) GetProfileByProjectAndName(arg0 context.Context, arg1 db.GetProfileByProjectAndNameParams) ([]db.GetProfileByProjectAndNameRow, error)

GetProfileByProjectAndName mocks base method.

func (*MockStore) GetProfileStatusByIdAndProject

GetProfileStatusByIdAndProject mocks base method.

func (*MockStore) GetProfileStatusByNameAndProject

GetProfileStatusByNameAndProject mocks base method.

func (*MockStore) GetProfileStatusByProject

func (m *MockStore) GetProfileStatusByProject(arg0 context.Context, arg1 uuid.UUID) ([]db.GetProfileStatusByProjectRow, error)

GetProfileStatusByProject mocks base method.

func (*MockStore) GetProjectByID

func (m *MockStore) GetProjectByID(arg0 context.Context, arg1 uuid.UUID) (db.Project, error)

GetProjectByID mocks base method.

func (*MockStore) GetProjectByName

func (m *MockStore) GetProjectByName(arg0 context.Context, arg1 string) (db.Project, error)

GetProjectByName mocks base method.

func (*MockStore) GetProjectIDBySessionState

func (m *MockStore) GetProjectIDBySessionState(arg0 context.Context, arg1 string) (db.GetProjectIDBySessionStateRow, error)

GetProjectIDBySessionState mocks base method.

func (*MockStore) GetProperty

func (m *MockStore) GetProperty(arg0 context.Context, arg1 db.GetPropertyParams) (db.Property, error)

GetProperty mocks base method.

func (*MockStore) GetPropertyValueV1

func (m *MockStore) GetPropertyValueV1(arg0 context.Context, arg1 uuid.UUID, arg2 string) (db.PropertyValueV1, error)

GetPropertyValueV1 mocks base method.

func (*MockStore) GetProviderByID

func (m *MockStore) GetProviderByID(arg0 context.Context, arg1 uuid.UUID) (db.Provider, error)

GetProviderByID mocks base method.

func (*MockStore) GetProviderByIDAndProject

func (m *MockStore) GetProviderByIDAndProject(arg0 context.Context, arg1 db.GetProviderByIDAndProjectParams) (db.Provider, error)

GetProviderByIDAndProject mocks base method.

func (*MockStore) GetProviderByName

func (m *MockStore) GetProviderByName(arg0 context.Context, arg1 db.GetProviderByNameParams) (db.Provider, error)

GetProviderByName mocks base method.

func (*MockStore) GetQuerierWithTransaction

func (m *MockStore) GetQuerierWithTransaction(arg0 *sql.Tx) db.ExtendQuerier

GetQuerierWithTransaction mocks base method.

func (*MockStore) GetRepositoryByID

func (m *MockStore) GetRepositoryByID(arg0 context.Context, arg1 uuid.UUID) (db.Repository, error)

GetRepositoryByID mocks base method.

func (*MockStore) GetRepositoryByIDAndProject

func (m *MockStore) GetRepositoryByIDAndProject(arg0 context.Context, arg1 db.GetRepositoryByIDAndProjectParams) (db.Repository, error)

GetRepositoryByIDAndProject mocks base method.

func (*MockStore) GetRepositoryByRepoID

func (m *MockStore) GetRepositoryByRepoID(arg0 context.Context, arg1 int64) (db.Repository, error)

GetRepositoryByRepoID mocks base method.

func (*MockStore) GetRepositoryByRepoName

func (m *MockStore) GetRepositoryByRepoName(arg0 context.Context, arg1 db.GetRepositoryByRepoNameParams) (db.Repository, error)

GetRepositoryByRepoName mocks base method.

func (*MockStore) GetRuleEvaluationByProfileIdAndRuleType

func (m *MockStore) GetRuleEvaluationByProfileIdAndRuleType(arg0 context.Context, arg1 uuid.UUID, arg2 sql.NullString, arg3 uuid.UUID, arg4 sql.NullString) (*db.ListRuleEvaluationsByProfileIdRow, error)

GetRuleEvaluationByProfileIdAndRuleType mocks base method.

func (*MockStore) GetRuleInstancesEntityInProjects

func (m *MockStore) GetRuleInstancesEntityInProjects(arg0 context.Context, arg1 db.GetRuleInstancesEntityInProjectsParams) ([]db.RuleInstance, error)

GetRuleInstancesEntityInProjects mocks base method.

func (*MockStore) GetRuleInstancesForProfile

func (m *MockStore) GetRuleInstancesForProfile(arg0 context.Context, arg1 uuid.UUID) ([]db.RuleInstance, error)

GetRuleInstancesForProfile mocks base method.

func (*MockStore) GetRuleTypeByID

func (m *MockStore) GetRuleTypeByID(arg0 context.Context, arg1 uuid.UUID) (db.RuleType, error)

GetRuleTypeByID mocks base method.

func (*MockStore) GetRuleTypeByName

func (m *MockStore) GetRuleTypeByName(arg0 context.Context, arg1 db.GetRuleTypeByNameParams) (db.RuleType, error)

GetRuleTypeByName mocks base method.

func (*MockStore) GetRuleTypeIDByRuleNameEntityProfile

func (m *MockStore) GetRuleTypeIDByRuleNameEntityProfile(arg0 context.Context, arg1 db.GetRuleTypeIDByRuleNameEntityProfileParams) (uuid.UUID, error)

GetRuleTypeIDByRuleNameEntityProfile mocks base method.

func (*MockStore) GetRuleTypeNameByID

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

GetRuleTypeNameByID mocks base method.

func (*MockStore) GetRuleTypesByEntityInHierarchy

func (m *MockStore) GetRuleTypesByEntityInHierarchy(arg0 context.Context, arg1 db.GetRuleTypesByEntityInHierarchyParams) ([]db.RuleType, error)

GetRuleTypesByEntityInHierarchy mocks base method.

func (*MockStore) GetSelectorByID

func (m *MockStore) GetSelectorByID(arg0 context.Context, arg1 uuid.UUID) (db.ProfileSelector, error)

GetSelectorByID mocks base method.

func (*MockStore) GetSelectorsByProfileID

func (m *MockStore) GetSelectorsByProfileID(arg0 context.Context, arg1 uuid.UUID) ([]db.ProfileSelector, error)

GetSelectorsByProfileID mocks base method.

func (*MockStore) GetSubscriptionByProjectBundle

func (m *MockStore) GetSubscriptionByProjectBundle(arg0 context.Context, arg1 db.GetSubscriptionByProjectBundleParams) (db.Subscription, error)

GetSubscriptionByProjectBundle mocks base method.

func (*MockStore) GetTypedEntitiesByProperty

func (m *MockStore) GetTypedEntitiesByProperty(arg0 context.Context, arg1 db.GetTypedEntitiesByPropertyParams) ([]db.EntityInstance, error)

GetTypedEntitiesByProperty mocks base method.

func (*MockStore) GetTypedEntitiesByPropertyV1

func (m *MockStore) GetTypedEntitiesByPropertyV1(arg0 context.Context, arg1 db.Entities, arg2 string, arg3 any, arg4 db.GetTypedEntitiesOptions) ([]db.EntityInstance, error)

GetTypedEntitiesByPropertyV1 mocks base method.

func (*MockStore) GetUnclaimedInstallationsByUser

func (m *MockStore) GetUnclaimedInstallationsByUser(arg0 context.Context, arg1 sql.NullString) ([]db.ProviderGithubAppInstallation, error)

GetUnclaimedInstallationsByUser mocks base method.

func (*MockStore) GetUserByID

func (m *MockStore) GetUserByID(arg0 context.Context, arg1 int32) (db.User, error)

GetUserByID mocks base method.

func (*MockStore) GetUserBySubject

func (m *MockStore) GetUserBySubject(arg0 context.Context, arg1 string) (db.User, error)

GetUserBySubject mocks base method.

func (*MockStore) GlobalListProviders

func (m *MockStore) GlobalListProviders(arg0 context.Context) ([]db.Provider, error)

GlobalListProviders mocks base method.

func (*MockStore) GlobalListProvidersByClass

func (m *MockStore) GlobalListProvidersByClass(arg0 context.Context, arg1 db.ProviderClass) ([]db.Provider, error)

GlobalListProvidersByClass mocks base method.

func (*MockStore) InsertAlertEvent

func (m *MockStore) InsertAlertEvent(arg0 context.Context, arg1 db.InsertAlertEventParams) error

InsertAlertEvent mocks base method.

func (*MockStore) InsertEvaluationRuleEntity

func (m *MockStore) InsertEvaluationRuleEntity(arg0 context.Context, arg1 db.InsertEvaluationRuleEntityParams) (uuid.UUID, error)

InsertEvaluationRuleEntity mocks base method.

func (*MockStore) InsertEvaluationStatus

func (m *MockStore) InsertEvaluationStatus(arg0 context.Context, arg1 db.InsertEvaluationStatusParams) (uuid.UUID, error)

InsertEvaluationStatus mocks base method.

func (*MockStore) InsertRemediationEvent

func (m *MockStore) InsertRemediationEvent(arg0 context.Context, arg1 db.InsertRemediationEventParams) error

InsertRemediationEvent mocks base method.

func (*MockStore) ListArtifactsByRepoID

func (m *MockStore) ListArtifactsByRepoID(arg0 context.Context, arg1 uuid.NullUUID) ([]db.Artifact, error)

ListArtifactsByRepoID mocks base method.

func (*MockStore) ListEvaluationHistory

func (m *MockStore) ListEvaluationHistory(arg0 context.Context, arg1 db.ListEvaluationHistoryParams) ([]db.ListEvaluationHistoryRow, error)

ListEvaluationHistory mocks base method.

func (*MockStore) ListEvaluationHistoryStaleRecords

ListEvaluationHistoryStaleRecords mocks base method.

func (*MockStore) ListFlushCache

func (m *MockStore) ListFlushCache(arg0 context.Context) ([]db.FlushCache, error)

ListFlushCache mocks base method.

func (*MockStore) ListInvitationsForProject

func (m *MockStore) ListInvitationsForProject(arg0 context.Context, arg1 uuid.UUID) ([]db.ListInvitationsForProjectRow, error)

ListInvitationsForProject mocks base method.

func (*MockStore) ListOldestRuleEvaluationsByRepositoryId

func (m *MockStore) ListOldestRuleEvaluationsByRepositoryId(arg0 context.Context, arg1 []uuid.UUID) ([]db.ListOldestRuleEvaluationsByRepositoryIdRow, error)

ListOldestRuleEvaluationsByRepositoryId mocks base method.

func (*MockStore) ListProfilesByProjectIDAndLabel

ListProfilesByProjectIDAndLabel mocks base method.

func (*MockStore) ListProfilesInstantiatingRuleType

func (m *MockStore) ListProfilesInstantiatingRuleType(arg0 context.Context, arg1 uuid.UUID) ([]string, error)

ListProfilesInstantiatingRuleType mocks base method.

func (*MockStore) ListProvidersByProjectID

func (m *MockStore) ListProvidersByProjectID(arg0 context.Context, arg1 []uuid.UUID) ([]db.Provider, error)

ListProvidersByProjectID mocks base method.

func (*MockStore) ListProvidersByProjectIDPaginated

func (m *MockStore) ListProvidersByProjectIDPaginated(arg0 context.Context, arg1 db.ListProvidersByProjectIDPaginatedParams) ([]db.Provider, error)

ListProvidersByProjectIDPaginated mocks base method.

func (*MockStore) ListRegisteredRepositoriesByProjectIDAndProvider

func (m *MockStore) ListRegisteredRepositoriesByProjectIDAndProvider(arg0 context.Context, arg1 db.ListRegisteredRepositoriesByProjectIDAndProviderParams) ([]db.Repository, error)

ListRegisteredRepositoriesByProjectIDAndProvider mocks base method.

func (*MockStore) ListRepositoriesAfterID

func (m *MockStore) ListRepositoriesAfterID(arg0 context.Context, arg1 db.ListRepositoriesAfterIDParams) ([]db.Repository, error)

ListRepositoriesAfterID mocks base method.

func (*MockStore) ListRepositoriesByProjectID

func (m *MockStore) ListRepositoriesByProjectID(arg0 context.Context, arg1 db.ListRepositoriesByProjectIDParams) ([]db.Repository, error)

ListRepositoriesByProjectID mocks base method.

func (*MockStore) ListRuleEvaluationsByProfileId

ListRuleEvaluationsByProfileId mocks base method.

func (*MockStore) ListRuleTypesByProject

func (m *MockStore) ListRuleTypesByProject(arg0 context.Context, arg1 uuid.UUID) ([]db.RuleType, error)

ListRuleTypesByProject mocks base method.

func (*MockStore) ListTokensToMigrate

func (m *MockStore) ListTokensToMigrate(arg0 context.Context, arg1 db.ListTokensToMigrateParams) ([]db.ProviderAccessToken, error)

ListTokensToMigrate mocks base method.

func (*MockStore) ListUsers

func (m *MockStore) ListUsers(arg0 context.Context, arg1 db.ListUsersParams) ([]db.User, error)

ListUsers mocks base method.

func (*MockStore) LockIfThresholdNotExceeded

func (m *MockStore) LockIfThresholdNotExceeded(arg0 context.Context, arg1 db.LockIfThresholdNotExceededParams) (db.EntityExecutionLock, error)

LockIfThresholdNotExceeded mocks base method.

func (*MockStore) OrphanProject

func (m *MockStore) OrphanProject(arg0 context.Context, arg1 db.OrphanProjectParams) (db.Project, error)

OrphanProject mocks base method.

func (*MockStore) ReleaseLock

func (m *MockStore) ReleaseLock(arg0 context.Context, arg1 db.ReleaseLockParams) error

ReleaseLock mocks base method.

func (*MockStore) RepositoryExistsAfterID

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

RepositoryExistsAfterID mocks base method.

func (*MockStore) Rollback

func (m *MockStore) Rollback(arg0 *sql.Tx) error

Rollback mocks base method.

func (*MockStore) SetCurrentVersion

func (m *MockStore) SetCurrentVersion(arg0 context.Context, arg1 db.SetCurrentVersionParams) error

SetCurrentVersion mocks base method.

func (*MockStore) UpdateEncryptedSecret

func (m *MockStore) UpdateEncryptedSecret(arg0 context.Context, arg1 db.UpdateEncryptedSecretParams) error

UpdateEncryptedSecret mocks base method.

func (*MockStore) UpdateInvitationRole

func (m *MockStore) UpdateInvitationRole(arg0 context.Context, arg1 db.UpdateInvitationRoleParams) (db.UserInvite, error)

UpdateInvitationRole mocks base method.

func (*MockStore) UpdateLease

func (m *MockStore) UpdateLease(arg0 context.Context, arg1 db.UpdateLeaseParams) error

UpdateLease mocks base method.

func (*MockStore) UpdateProfile

func (m *MockStore) UpdateProfile(arg0 context.Context, arg1 db.UpdateProfileParams) (db.Profile, error)

UpdateProfile mocks base method.

func (*MockStore) UpdateProjectMeta

func (m *MockStore) UpdateProjectMeta(arg0 context.Context, arg1 db.UpdateProjectMetaParams) (db.Project, error)

UpdateProjectMeta mocks base method.

func (*MockStore) UpdateProvider

func (m *MockStore) UpdateProvider(arg0 context.Context, arg1 db.UpdateProviderParams) error

UpdateProvider mocks base method.

func (*MockStore) UpdateReminderLastSentForRepositories

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

UpdateReminderLastSentForRepositories mocks base method.

func (*MockStore) UpdateRuleType

func (m *MockStore) UpdateRuleType(arg0 context.Context, arg1 db.UpdateRuleTypeParams) (db.RuleType, error)

UpdateRuleType mocks base method.

func (*MockStore) UpdateSelector

func (m *MockStore) UpdateSelector(arg0 context.Context, arg1 db.UpdateSelectorParams) (db.ProfileSelector, error)

UpdateSelector mocks base method.

func (*MockStore) UpsertAccessToken

func (m *MockStore) UpsertAccessToken(arg0 context.Context, arg1 db.UpsertAccessTokenParams) (db.ProviderAccessToken, error)

UpsertAccessToken mocks base method.

func (*MockStore) UpsertArtifact

func (m *MockStore) UpsertArtifact(arg0 context.Context, arg1 db.UpsertArtifactParams) (db.Artifact, error)

UpsertArtifact mocks base method.

func (*MockStore) UpsertBundle

func (m *MockStore) UpsertBundle(arg0 context.Context, arg1 db.UpsertBundleParams) error

UpsertBundle mocks base method.

func (*MockStore) UpsertInstallationID

UpsertInstallationID mocks base method.

func (*MockStore) UpsertLatestEvaluationStatus

func (m *MockStore) UpsertLatestEvaluationStatus(arg0 context.Context, arg1 db.UpsertLatestEvaluationStatusParams) error

UpsertLatestEvaluationStatus mocks base method.

func (*MockStore) UpsertProfileForEntity

func (m *MockStore) UpsertProfileForEntity(arg0 context.Context, arg1 db.UpsertProfileForEntityParams) (db.EntityProfile, error)

UpsertProfileForEntity mocks base method.

func (*MockStore) UpsertProperty

func (m *MockStore) UpsertProperty(arg0 context.Context, arg1 db.UpsertPropertyParams) (db.Property, error)

UpsertProperty mocks base method.

func (*MockStore) UpsertPropertyValueV1

func (m *MockStore) UpsertPropertyValueV1(arg0 context.Context, arg1 db.UpsertPropertyValueV1Params) (db.Property, error)

UpsertPropertyValueV1 mocks base method.

func (*MockStore) UpsertRuleInstance

func (m *MockStore) UpsertRuleInstance(arg0 context.Context, arg1 db.UpsertRuleInstanceParams) (uuid.UUID, error)

UpsertRuleInstance mocks base method.

func (*MockStore) WithTransactionErr

func (m *MockStore) WithTransactionErr(arg0 func(db.ExtendQuerier) error) error

WithTransactionErr mocks base method.

type MockStoreMockRecorder

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

MockStoreMockRecorder is the mock recorder for MockStore.

func (*MockStoreMockRecorder) BeginTransaction

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

BeginTransaction indicates an expected call of BeginTransaction.

func (*MockStoreMockRecorder) BulkGetProfilesByID

func (mr *MockStoreMockRecorder) BulkGetProfilesByID(arg0, arg1 any) *gomock.Call

BulkGetProfilesByID indicates an expected call of BulkGetProfilesByID.

func (*MockStoreMockRecorder) CheckHealth

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

CheckHealth indicates an expected call of CheckHealth.

func (*MockStoreMockRecorder) Commit

func (mr *MockStoreMockRecorder) Commit(arg0 any) *gomock.Call

Commit indicates an expected call of Commit.

func (*MockStoreMockRecorder) CountProfilesByEntityType

func (mr *MockStoreMockRecorder) CountProfilesByEntityType(arg0 any) *gomock.Call

CountProfilesByEntityType indicates an expected call of CountProfilesByEntityType.

func (*MockStoreMockRecorder) CountProfilesByName

func (mr *MockStoreMockRecorder) CountProfilesByName(arg0, arg1 any) *gomock.Call

CountProfilesByName indicates an expected call of CountProfilesByName.

func (*MockStoreMockRecorder) CountProfilesByProjectID

func (mr *MockStoreMockRecorder) CountProfilesByProjectID(arg0, arg1 any) *gomock.Call

CountProfilesByProjectID indicates an expected call of CountProfilesByProjectID.

func (*MockStoreMockRecorder) CountRepositories

func (mr *MockStoreMockRecorder) CountRepositories(arg0 any) *gomock.Call

CountRepositories indicates an expected call of CountRepositories.

func (*MockStoreMockRecorder) CountRepositoriesByProjectID

func (mr *MockStoreMockRecorder) CountRepositoriesByProjectID(arg0, arg1 any) *gomock.Call

CountRepositoriesByProjectID indicates an expected call of CountRepositoriesByProjectID.

func (*MockStoreMockRecorder) CountUsers

func (mr *MockStoreMockRecorder) CountUsers(arg0 any) *gomock.Call

CountUsers indicates an expected call of CountUsers.

func (*MockStoreMockRecorder) CreateEntity

func (mr *MockStoreMockRecorder) CreateEntity(arg0, arg1 any) *gomock.Call

CreateEntity indicates an expected call of CreateEntity.

func (*MockStoreMockRecorder) CreateEntityWithID

func (mr *MockStoreMockRecorder) CreateEntityWithID(arg0, arg1 any) *gomock.Call

CreateEntityWithID indicates an expected call of CreateEntityWithID.

func (*MockStoreMockRecorder) CreateInvitation

func (mr *MockStoreMockRecorder) CreateInvitation(arg0, arg1 any) *gomock.Call

CreateInvitation indicates an expected call of CreateInvitation.

func (*MockStoreMockRecorder) CreateOrEnsureEntityByID

func (mr *MockStoreMockRecorder) CreateOrEnsureEntityByID(arg0, arg1 any) *gomock.Call

CreateOrEnsureEntityByID indicates an expected call of CreateOrEnsureEntityByID.

func (*MockStoreMockRecorder) CreateProfile

func (mr *MockStoreMockRecorder) CreateProfile(arg0, arg1 any) *gomock.Call

CreateProfile indicates an expected call of CreateProfile.

func (*MockStoreMockRecorder) CreateProfileForEntity

func (mr *MockStoreMockRecorder) CreateProfileForEntity(arg0, arg1 any) *gomock.Call

CreateProfileForEntity indicates an expected call of CreateProfileForEntity.

func (*MockStoreMockRecorder) CreateProject

func (mr *MockStoreMockRecorder) CreateProject(arg0, arg1 any) *gomock.Call

CreateProject indicates an expected call of CreateProject.

func (*MockStoreMockRecorder) CreateProjectWithID

func (mr *MockStoreMockRecorder) CreateProjectWithID(arg0, arg1 any) *gomock.Call

CreateProjectWithID indicates an expected call of CreateProjectWithID.

func (*MockStoreMockRecorder) CreateProvider

func (mr *MockStoreMockRecorder) CreateProvider(arg0, arg1 any) *gomock.Call

CreateProvider indicates an expected call of CreateProvider.

func (*MockStoreMockRecorder) CreateRepository

func (mr *MockStoreMockRecorder) CreateRepository(arg0, arg1 any) *gomock.Call

CreateRepository indicates an expected call of CreateRepository.

func (*MockStoreMockRecorder) CreateRuleType

func (mr *MockStoreMockRecorder) CreateRuleType(arg0, arg1 any) *gomock.Call

CreateRuleType indicates an expected call of CreateRuleType.

func (*MockStoreMockRecorder) CreateSelector

func (mr *MockStoreMockRecorder) CreateSelector(arg0, arg1 any) *gomock.Call

CreateSelector indicates an expected call of CreateSelector.

func (*MockStoreMockRecorder) CreateSessionState

func (mr *MockStoreMockRecorder) CreateSessionState(arg0, arg1 any) *gomock.Call

CreateSessionState indicates an expected call of CreateSessionState.

func (*MockStoreMockRecorder) CreateSubscription

func (mr *MockStoreMockRecorder) CreateSubscription(arg0, arg1 any) *gomock.Call

CreateSubscription indicates an expected call of CreateSubscription.

func (*MockStoreMockRecorder) CreateUser

func (mr *MockStoreMockRecorder) CreateUser(arg0, arg1 any) *gomock.Call

CreateUser indicates an expected call of CreateUser.

func (*MockStoreMockRecorder) DeleteAllPropertiesForEntity

func (mr *MockStoreMockRecorder) DeleteAllPropertiesForEntity(arg0, arg1 any) *gomock.Call

DeleteAllPropertiesForEntity indicates an expected call of DeleteAllPropertiesForEntity.

func (*MockStoreMockRecorder) DeleteArtifact

func (mr *MockStoreMockRecorder) DeleteArtifact(arg0, arg1 any) *gomock.Call

DeleteArtifact indicates an expected call of DeleteArtifact.

func (*MockStoreMockRecorder) DeleteEntity

func (mr *MockStoreMockRecorder) DeleteEntity(arg0, arg1 any) *gomock.Call

DeleteEntity indicates an expected call of DeleteEntity.

func (*MockStoreMockRecorder) DeleteEvaluationHistoryByIDs

func (mr *MockStoreMockRecorder) DeleteEvaluationHistoryByIDs(arg0, arg1 any) *gomock.Call

DeleteEvaluationHistoryByIDs indicates an expected call of DeleteEvaluationHistoryByIDs.

func (*MockStoreMockRecorder) DeleteExpiredSessionStates

func (mr *MockStoreMockRecorder) DeleteExpiredSessionStates(arg0 any) *gomock.Call

DeleteExpiredSessionStates indicates an expected call of DeleteExpiredSessionStates.

func (*MockStoreMockRecorder) DeleteInstallationIDByAppID

func (mr *MockStoreMockRecorder) DeleteInstallationIDByAppID(arg0, arg1 any) *gomock.Call

DeleteInstallationIDByAppID indicates an expected call of DeleteInstallationIDByAppID.

func (*MockStoreMockRecorder) DeleteInvitation

func (mr *MockStoreMockRecorder) DeleteInvitation(arg0, arg1 any) *gomock.Call

DeleteInvitation indicates an expected call of DeleteInvitation.

func (*MockStoreMockRecorder) DeleteNonUpdatedRules

func (mr *MockStoreMockRecorder) DeleteNonUpdatedRules(arg0, arg1 any) *gomock.Call

DeleteNonUpdatedRules indicates an expected call of DeleteNonUpdatedRules.

func (*MockStoreMockRecorder) DeleteProfile

func (mr *MockStoreMockRecorder) DeleteProfile(arg0, arg1 any) *gomock.Call

DeleteProfile indicates an expected call of DeleteProfile.

func (*MockStoreMockRecorder) DeleteProfileForEntity

func (mr *MockStoreMockRecorder) DeleteProfileForEntity(arg0, arg1 any) *gomock.Call

DeleteProfileForEntity indicates an expected call of DeleteProfileForEntity.

func (*MockStoreMockRecorder) DeleteProject

func (mr *MockStoreMockRecorder) DeleteProject(arg0, arg1 any) *gomock.Call

DeleteProject indicates an expected call of DeleteProject.

func (*MockStoreMockRecorder) DeleteProperty

func (mr *MockStoreMockRecorder) DeleteProperty(arg0, arg1 any) *gomock.Call

DeleteProperty indicates an expected call of DeleteProperty.

func (*MockStoreMockRecorder) DeleteProvider

func (mr *MockStoreMockRecorder) DeleteProvider(arg0, arg1 any) *gomock.Call

DeleteProvider indicates an expected call of DeleteProvider.

func (*MockStoreMockRecorder) DeleteRepository

func (mr *MockStoreMockRecorder) DeleteRepository(arg0, arg1 any) *gomock.Call

DeleteRepository indicates an expected call of DeleteRepository.

func (*MockStoreMockRecorder) DeleteRuleType

func (mr *MockStoreMockRecorder) DeleteRuleType(arg0, arg1 any) *gomock.Call

DeleteRuleType indicates an expected call of DeleteRuleType.

func (*MockStoreMockRecorder) DeleteSelector

func (mr *MockStoreMockRecorder) DeleteSelector(arg0, arg1 any) *gomock.Call

DeleteSelector indicates an expected call of DeleteSelector.

func (*MockStoreMockRecorder) DeleteSelectorsByProfileID

func (mr *MockStoreMockRecorder) DeleteSelectorsByProfileID(arg0, arg1 any) *gomock.Call

DeleteSelectorsByProfileID indicates an expected call of DeleteSelectorsByProfileID.

func (*MockStoreMockRecorder) DeleteSessionStateByProjectID

func (mr *MockStoreMockRecorder) DeleteSessionStateByProjectID(arg0, arg1 any) *gomock.Call

DeleteSessionStateByProjectID indicates an expected call of DeleteSessionStateByProjectID.

func (*MockStoreMockRecorder) DeleteUser

func (mr *MockStoreMockRecorder) DeleteUser(arg0, arg1 any) *gomock.Call

DeleteUser indicates an expected call of DeleteUser.

func (*MockStoreMockRecorder) EnqueueFlush

func (mr *MockStoreMockRecorder) EnqueueFlush(arg0, arg1 any) *gomock.Call

EnqueueFlush indicates an expected call of EnqueueFlush.

func (*MockStoreMockRecorder) FindProviders

func (mr *MockStoreMockRecorder) FindProviders(arg0, arg1 any) *gomock.Call

FindProviders indicates an expected call of FindProviders.

func (*MockStoreMockRecorder) FlushCache

func (mr *MockStoreMockRecorder) FlushCache(arg0, arg1 any) *gomock.Call

FlushCache indicates an expected call of FlushCache.

func (*MockStoreMockRecorder) GetAccessTokenByEnrollmentNonce

func (mr *MockStoreMockRecorder) GetAccessTokenByEnrollmentNonce(arg0, arg1 any) *gomock.Call

GetAccessTokenByEnrollmentNonce indicates an expected call of GetAccessTokenByEnrollmentNonce.

func (*MockStoreMockRecorder) GetAccessTokenByProjectID

func (mr *MockStoreMockRecorder) GetAccessTokenByProjectID(arg0, arg1 any) *gomock.Call

GetAccessTokenByProjectID indicates an expected call of GetAccessTokenByProjectID.

func (*MockStoreMockRecorder) GetAccessTokenByProvider

func (mr *MockStoreMockRecorder) GetAccessTokenByProvider(arg0, arg1 any) *gomock.Call

GetAccessTokenByProvider indicates an expected call of GetAccessTokenByProvider.

func (*MockStoreMockRecorder) GetAccessTokenSinceDate

func (mr *MockStoreMockRecorder) GetAccessTokenSinceDate(arg0, arg1 any) *gomock.Call

GetAccessTokenSinceDate indicates an expected call of GetAccessTokenSinceDate.

func (*MockStoreMockRecorder) GetAllPropertiesForEntity

func (mr *MockStoreMockRecorder) GetAllPropertiesForEntity(arg0, arg1 any) *gomock.Call

GetAllPropertiesForEntity indicates an expected call of GetAllPropertiesForEntity.

func (*MockStoreMockRecorder) GetAllPropertyValuesV1

func (mr *MockStoreMockRecorder) GetAllPropertyValuesV1(arg0, arg1 any) *gomock.Call

GetAllPropertyValuesV1 indicates an expected call of GetAllPropertyValuesV1.

func (*MockStoreMockRecorder) GetArtifactByID

func (mr *MockStoreMockRecorder) GetArtifactByID(arg0, arg1 any) *gomock.Call

GetArtifactByID indicates an expected call of GetArtifactByID.

func (*MockStoreMockRecorder) GetArtifactByName

func (mr *MockStoreMockRecorder) GetArtifactByName(arg0, arg1 any) *gomock.Call

GetArtifactByName indicates an expected call of GetArtifactByName.

func (*MockStoreMockRecorder) GetBundle

func (mr *MockStoreMockRecorder) GetBundle(arg0, arg1 any) *gomock.Call

GetBundle indicates an expected call of GetBundle.

func (*MockStoreMockRecorder) GetChildrenProjects

func (mr *MockStoreMockRecorder) GetChildrenProjects(arg0, arg1 any) *gomock.Call

GetChildrenProjects indicates an expected call of GetChildrenProjects.

func (*MockStoreMockRecorder) GetEntitiesByProjectHierarchy

func (mr *MockStoreMockRecorder) GetEntitiesByProjectHierarchy(arg0, arg1 any) *gomock.Call

GetEntitiesByProjectHierarchy indicates an expected call of GetEntitiesByProjectHierarchy.

func (*MockStoreMockRecorder) GetEntitiesByProvider

func (mr *MockStoreMockRecorder) GetEntitiesByProvider(arg0, arg1 any) *gomock.Call

GetEntitiesByProvider indicates an expected call of GetEntitiesByProvider.

func (*MockStoreMockRecorder) GetEntitiesByType

func (mr *MockStoreMockRecorder) GetEntitiesByType(arg0, arg1 any) *gomock.Call

GetEntitiesByType indicates an expected call of GetEntitiesByType.

func (*MockStoreMockRecorder) GetEntitlementFeaturesByProjectID

func (mr *MockStoreMockRecorder) GetEntitlementFeaturesByProjectID(arg0, arg1 any) *gomock.Call

GetEntitlementFeaturesByProjectID indicates an expected call of GetEntitlementFeaturesByProjectID.

func (*MockStoreMockRecorder) GetEntityByID

func (mr *MockStoreMockRecorder) GetEntityByID(arg0, arg1 any) *gomock.Call

GetEntityByID indicates an expected call of GetEntityByID.

func (*MockStoreMockRecorder) GetEntityByName

func (mr *MockStoreMockRecorder) GetEntityByName(arg0, arg1 any) *gomock.Call

GetEntityByName indicates an expected call of GetEntityByName.

func (*MockStoreMockRecorder) GetEvaluationHistory

func (mr *MockStoreMockRecorder) GetEvaluationHistory(arg0, arg1 any) *gomock.Call

GetEvaluationHistory indicates an expected call of GetEvaluationHistory.

func (*MockStoreMockRecorder) GetFeatureInProject

func (mr *MockStoreMockRecorder) GetFeatureInProject(arg0, arg1 any) *gomock.Call

GetFeatureInProject indicates an expected call of GetFeatureInProject.

func (*MockStoreMockRecorder) GetImmediateChildrenProjects

func (mr *MockStoreMockRecorder) GetImmediateChildrenProjects(arg0, arg1 any) *gomock.Call

GetImmediateChildrenProjects indicates an expected call of GetImmediateChildrenProjects.

func (*MockStoreMockRecorder) GetInstallationIDByAppID

func (mr *MockStoreMockRecorder) GetInstallationIDByAppID(arg0, arg1 any) *gomock.Call

GetInstallationIDByAppID indicates an expected call of GetInstallationIDByAppID.

func (*MockStoreMockRecorder) GetInstallationIDByEnrollmentNonce

func (mr *MockStoreMockRecorder) GetInstallationIDByEnrollmentNonce(arg0, arg1 any) *gomock.Call

GetInstallationIDByEnrollmentNonce indicates an expected call of GetInstallationIDByEnrollmentNonce.

func (*MockStoreMockRecorder) GetInstallationIDByProviderID

func (mr *MockStoreMockRecorder) GetInstallationIDByProviderID(arg0, arg1 any) *gomock.Call

GetInstallationIDByProviderID indicates an expected call of GetInstallationIDByProviderID.

func (*MockStoreMockRecorder) GetInvitationByCode

func (mr *MockStoreMockRecorder) GetInvitationByCode(arg0, arg1 any) *gomock.Call

GetInvitationByCode indicates an expected call of GetInvitationByCode.

func (*MockStoreMockRecorder) GetInvitationsByEmail

func (mr *MockStoreMockRecorder) GetInvitationsByEmail(arg0, arg1 any) *gomock.Call

GetInvitationsByEmail indicates an expected call of GetInvitationsByEmail.

func (*MockStoreMockRecorder) GetInvitationsByEmailAndProject

func (mr *MockStoreMockRecorder) GetInvitationsByEmailAndProject(arg0, arg1 any) *gomock.Call

GetInvitationsByEmailAndProject indicates an expected call of GetInvitationsByEmailAndProject.

func (*MockStoreMockRecorder) GetLatestEvalStateForRuleEntity

func (mr *MockStoreMockRecorder) GetLatestEvalStateForRuleEntity(arg0, arg1 any) *gomock.Call

GetLatestEvalStateForRuleEntity indicates an expected call of GetLatestEvalStateForRuleEntity.

func (*MockStoreMockRecorder) GetParentProjects

func (mr *MockStoreMockRecorder) GetParentProjects(arg0, arg1 any) *gomock.Call

GetParentProjects indicates an expected call of GetParentProjects.

func (*MockStoreMockRecorder) GetParentProjectsUntil

func (mr *MockStoreMockRecorder) GetParentProjectsUntil(arg0, arg1 any) *gomock.Call

GetParentProjectsUntil indicates an expected call of GetParentProjectsUntil.

func (*MockStoreMockRecorder) GetProfileByID

func (mr *MockStoreMockRecorder) GetProfileByID(arg0, arg1 any) *gomock.Call

GetProfileByID indicates an expected call of GetProfileByID.

func (*MockStoreMockRecorder) GetProfileByIDAndLock

func (mr *MockStoreMockRecorder) GetProfileByIDAndLock(arg0, arg1 any) *gomock.Call

GetProfileByIDAndLock indicates an expected call of GetProfileByIDAndLock.

func (*MockStoreMockRecorder) GetProfileByNameAndLock

func (mr *MockStoreMockRecorder) GetProfileByNameAndLock(arg0, arg1 any) *gomock.Call

GetProfileByNameAndLock indicates an expected call of GetProfileByNameAndLock.

func (*MockStoreMockRecorder) GetProfileByProjectAndID

func (mr *MockStoreMockRecorder) GetProfileByProjectAndID(arg0, arg1 any) *gomock.Call

GetProfileByProjectAndID indicates an expected call of GetProfileByProjectAndID.

func (*MockStoreMockRecorder) GetProfileByProjectAndName

func (mr *MockStoreMockRecorder) GetProfileByProjectAndName(arg0, arg1 any) *gomock.Call

GetProfileByProjectAndName indicates an expected call of GetProfileByProjectAndName.

func (*MockStoreMockRecorder) GetProfileStatusByIdAndProject

func (mr *MockStoreMockRecorder) GetProfileStatusByIdAndProject(arg0, arg1 any) *gomock.Call

GetProfileStatusByIdAndProject indicates an expected call of GetProfileStatusByIdAndProject.

func (*MockStoreMockRecorder) GetProfileStatusByNameAndProject

func (mr *MockStoreMockRecorder) GetProfileStatusByNameAndProject(arg0, arg1 any) *gomock.Call

GetProfileStatusByNameAndProject indicates an expected call of GetProfileStatusByNameAndProject.

func (*MockStoreMockRecorder) GetProfileStatusByProject

func (mr *MockStoreMockRecorder) GetProfileStatusByProject(arg0, arg1 any) *gomock.Call

GetProfileStatusByProject indicates an expected call of GetProfileStatusByProject.

func (*MockStoreMockRecorder) GetProjectByID

func (mr *MockStoreMockRecorder) GetProjectByID(arg0, arg1 any) *gomock.Call

GetProjectByID indicates an expected call of GetProjectByID.

func (*MockStoreMockRecorder) GetProjectByName

func (mr *MockStoreMockRecorder) GetProjectByName(arg0, arg1 any) *gomock.Call

GetProjectByName indicates an expected call of GetProjectByName.

func (*MockStoreMockRecorder) GetProjectIDBySessionState

func (mr *MockStoreMockRecorder) GetProjectIDBySessionState(arg0, arg1 any) *gomock.Call

GetProjectIDBySessionState indicates an expected call of GetProjectIDBySessionState.

func (*MockStoreMockRecorder) GetProperty

func (mr *MockStoreMockRecorder) GetProperty(arg0, arg1 any) *gomock.Call

GetProperty indicates an expected call of GetProperty.

func (*MockStoreMockRecorder) GetPropertyValueV1

func (mr *MockStoreMockRecorder) GetPropertyValueV1(arg0, arg1, arg2 any) *gomock.Call

GetPropertyValueV1 indicates an expected call of GetPropertyValueV1.

func (*MockStoreMockRecorder) GetProviderByID

func (mr *MockStoreMockRecorder) GetProviderByID(arg0, arg1 any) *gomock.Call

GetProviderByID indicates an expected call of GetProviderByID.

func (*MockStoreMockRecorder) GetProviderByIDAndProject

func (mr *MockStoreMockRecorder) GetProviderByIDAndProject(arg0, arg1 any) *gomock.Call

GetProviderByIDAndProject indicates an expected call of GetProviderByIDAndProject.

func (*MockStoreMockRecorder) GetProviderByName

func (mr *MockStoreMockRecorder) GetProviderByName(arg0, arg1 any) *gomock.Call

GetProviderByName indicates an expected call of GetProviderByName.

func (*MockStoreMockRecorder) GetQuerierWithTransaction

func (mr *MockStoreMockRecorder) GetQuerierWithTransaction(arg0 any) *gomock.Call

GetQuerierWithTransaction indicates an expected call of GetQuerierWithTransaction.

func (*MockStoreMockRecorder) GetRepositoryByID

func (mr *MockStoreMockRecorder) GetRepositoryByID(arg0, arg1 any) *gomock.Call

GetRepositoryByID indicates an expected call of GetRepositoryByID.

func (*MockStoreMockRecorder) GetRepositoryByIDAndProject

func (mr *MockStoreMockRecorder) GetRepositoryByIDAndProject(arg0, arg1 any) *gomock.Call

GetRepositoryByIDAndProject indicates an expected call of GetRepositoryByIDAndProject.

func (*MockStoreMockRecorder) GetRepositoryByRepoID

func (mr *MockStoreMockRecorder) GetRepositoryByRepoID(arg0, arg1 any) *gomock.Call

GetRepositoryByRepoID indicates an expected call of GetRepositoryByRepoID.

func (*MockStoreMockRecorder) GetRepositoryByRepoName

func (mr *MockStoreMockRecorder) GetRepositoryByRepoName(arg0, arg1 any) *gomock.Call

GetRepositoryByRepoName indicates an expected call of GetRepositoryByRepoName.

func (*MockStoreMockRecorder) GetRuleEvaluationByProfileIdAndRuleType

func (mr *MockStoreMockRecorder) GetRuleEvaluationByProfileIdAndRuleType(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call

GetRuleEvaluationByProfileIdAndRuleType indicates an expected call of GetRuleEvaluationByProfileIdAndRuleType.

func (*MockStoreMockRecorder) GetRuleInstancesEntityInProjects

func (mr *MockStoreMockRecorder) GetRuleInstancesEntityInProjects(arg0, arg1 any) *gomock.Call

GetRuleInstancesEntityInProjects indicates an expected call of GetRuleInstancesEntityInProjects.

func (*MockStoreMockRecorder) GetRuleInstancesForProfile

func (mr *MockStoreMockRecorder) GetRuleInstancesForProfile(arg0, arg1 any) *gomock.Call

GetRuleInstancesForProfile indicates an expected call of GetRuleInstancesForProfile.

func (*MockStoreMockRecorder) GetRuleTypeByID

func (mr *MockStoreMockRecorder) GetRuleTypeByID(arg0, arg1 any) *gomock.Call

GetRuleTypeByID indicates an expected call of GetRuleTypeByID.

func (*MockStoreMockRecorder) GetRuleTypeByName

func (mr *MockStoreMockRecorder) GetRuleTypeByName(arg0, arg1 any) *gomock.Call

GetRuleTypeByName indicates an expected call of GetRuleTypeByName.

func (*MockStoreMockRecorder) GetRuleTypeIDByRuleNameEntityProfile

func (mr *MockStoreMockRecorder) GetRuleTypeIDByRuleNameEntityProfile(arg0, arg1 any) *gomock.Call

GetRuleTypeIDByRuleNameEntityProfile indicates an expected call of GetRuleTypeIDByRuleNameEntityProfile.

func (*MockStoreMockRecorder) GetRuleTypeNameByID

func (mr *MockStoreMockRecorder) GetRuleTypeNameByID(arg0, arg1 any) *gomock.Call

GetRuleTypeNameByID indicates an expected call of GetRuleTypeNameByID.

func (*MockStoreMockRecorder) GetRuleTypesByEntityInHierarchy

func (mr *MockStoreMockRecorder) GetRuleTypesByEntityInHierarchy(arg0, arg1 any) *gomock.Call

GetRuleTypesByEntityInHierarchy indicates an expected call of GetRuleTypesByEntityInHierarchy.

func (*MockStoreMockRecorder) GetSelectorByID

func (mr *MockStoreMockRecorder) GetSelectorByID(arg0, arg1 any) *gomock.Call

GetSelectorByID indicates an expected call of GetSelectorByID.

func (*MockStoreMockRecorder) GetSelectorsByProfileID

func (mr *MockStoreMockRecorder) GetSelectorsByProfileID(arg0, arg1 any) *gomock.Call

GetSelectorsByProfileID indicates an expected call of GetSelectorsByProfileID.

func (*MockStoreMockRecorder) GetSubscriptionByProjectBundle

func (mr *MockStoreMockRecorder) GetSubscriptionByProjectBundle(arg0, arg1 any) *gomock.Call

GetSubscriptionByProjectBundle indicates an expected call of GetSubscriptionByProjectBundle.

func (*MockStoreMockRecorder) GetTypedEntitiesByProperty

func (mr *MockStoreMockRecorder) GetTypedEntitiesByProperty(arg0, arg1 any) *gomock.Call

GetTypedEntitiesByProperty indicates an expected call of GetTypedEntitiesByProperty.

func (*MockStoreMockRecorder) GetTypedEntitiesByPropertyV1

func (mr *MockStoreMockRecorder) GetTypedEntitiesByPropertyV1(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call

GetTypedEntitiesByPropertyV1 indicates an expected call of GetTypedEntitiesByPropertyV1.

func (*MockStoreMockRecorder) GetUnclaimedInstallationsByUser

func (mr *MockStoreMockRecorder) GetUnclaimedInstallationsByUser(arg0, arg1 any) *gomock.Call

GetUnclaimedInstallationsByUser indicates an expected call of GetUnclaimedInstallationsByUser.

func (*MockStoreMockRecorder) GetUserByID

func (mr *MockStoreMockRecorder) GetUserByID(arg0, arg1 any) *gomock.Call

GetUserByID indicates an expected call of GetUserByID.

func (*MockStoreMockRecorder) GetUserBySubject

func (mr *MockStoreMockRecorder) GetUserBySubject(arg0, arg1 any) *gomock.Call

GetUserBySubject indicates an expected call of GetUserBySubject.

func (*MockStoreMockRecorder) GlobalListProviders

func (mr *MockStoreMockRecorder) GlobalListProviders(arg0 any) *gomock.Call

GlobalListProviders indicates an expected call of GlobalListProviders.

func (*MockStoreMockRecorder) GlobalListProvidersByClass

func (mr *MockStoreMockRecorder) GlobalListProvidersByClass(arg0, arg1 any) *gomock.Call

GlobalListProvidersByClass indicates an expected call of GlobalListProvidersByClass.

func (*MockStoreMockRecorder) InsertAlertEvent

func (mr *MockStoreMockRecorder) InsertAlertEvent(arg0, arg1 any) *gomock.Call

InsertAlertEvent indicates an expected call of InsertAlertEvent.

func (*MockStoreMockRecorder) InsertEvaluationRuleEntity

func (mr *MockStoreMockRecorder) InsertEvaluationRuleEntity(arg0, arg1 any) *gomock.Call

InsertEvaluationRuleEntity indicates an expected call of InsertEvaluationRuleEntity.

func (*MockStoreMockRecorder) InsertEvaluationStatus

func (mr *MockStoreMockRecorder) InsertEvaluationStatus(arg0, arg1 any) *gomock.Call

InsertEvaluationStatus indicates an expected call of InsertEvaluationStatus.

func (*MockStoreMockRecorder) InsertRemediationEvent

func (mr *MockStoreMockRecorder) InsertRemediationEvent(arg0, arg1 any) *gomock.Call

InsertRemediationEvent indicates an expected call of InsertRemediationEvent.

func (*MockStoreMockRecorder) ListArtifactsByRepoID

func (mr *MockStoreMockRecorder) ListArtifactsByRepoID(arg0, arg1 any) *gomock.Call

ListArtifactsByRepoID indicates an expected call of ListArtifactsByRepoID.

func (*MockStoreMockRecorder) ListEvaluationHistory

func (mr *MockStoreMockRecorder) ListEvaluationHistory(arg0, arg1 any) *gomock.Call

ListEvaluationHistory indicates an expected call of ListEvaluationHistory.

func (*MockStoreMockRecorder) ListEvaluationHistoryStaleRecords

func (mr *MockStoreMockRecorder) ListEvaluationHistoryStaleRecords(arg0, arg1 any) *gomock.Call

ListEvaluationHistoryStaleRecords indicates an expected call of ListEvaluationHistoryStaleRecords.

func (*MockStoreMockRecorder) ListFlushCache

func (mr *MockStoreMockRecorder) ListFlushCache(arg0 any) *gomock.Call

ListFlushCache indicates an expected call of ListFlushCache.

func (*MockStoreMockRecorder) ListInvitationsForProject

func (mr *MockStoreMockRecorder) ListInvitationsForProject(arg0, arg1 any) *gomock.Call

ListInvitationsForProject indicates an expected call of ListInvitationsForProject.

func (*MockStoreMockRecorder) ListOldestRuleEvaluationsByRepositoryId

func (mr *MockStoreMockRecorder) ListOldestRuleEvaluationsByRepositoryId(arg0, arg1 any) *gomock.Call

ListOldestRuleEvaluationsByRepositoryId indicates an expected call of ListOldestRuleEvaluationsByRepositoryId.

func (*MockStoreMockRecorder) ListProfilesByProjectIDAndLabel

func (mr *MockStoreMockRecorder) ListProfilesByProjectIDAndLabel(arg0, arg1 any) *gomock.Call

ListProfilesByProjectIDAndLabel indicates an expected call of ListProfilesByProjectIDAndLabel.

func (*MockStoreMockRecorder) ListProfilesInstantiatingRuleType

func (mr *MockStoreMockRecorder) ListProfilesInstantiatingRuleType(arg0, arg1 any) *gomock.Call

ListProfilesInstantiatingRuleType indicates an expected call of ListProfilesInstantiatingRuleType.

func (*MockStoreMockRecorder) ListProvidersByProjectID

func (mr *MockStoreMockRecorder) ListProvidersByProjectID(arg0, arg1 any) *gomock.Call

ListProvidersByProjectID indicates an expected call of ListProvidersByProjectID.

func (*MockStoreMockRecorder) ListProvidersByProjectIDPaginated

func (mr *MockStoreMockRecorder) ListProvidersByProjectIDPaginated(arg0, arg1 any) *gomock.Call

ListProvidersByProjectIDPaginated indicates an expected call of ListProvidersByProjectIDPaginated.

func (*MockStoreMockRecorder) ListRegisteredRepositoriesByProjectIDAndProvider

func (mr *MockStoreMockRecorder) ListRegisteredRepositoriesByProjectIDAndProvider(arg0, arg1 any) *gomock.Call

ListRegisteredRepositoriesByProjectIDAndProvider indicates an expected call of ListRegisteredRepositoriesByProjectIDAndProvider.

func (*MockStoreMockRecorder) ListRepositoriesAfterID

func (mr *MockStoreMockRecorder) ListRepositoriesAfterID(arg0, arg1 any) *gomock.Call

ListRepositoriesAfterID indicates an expected call of ListRepositoriesAfterID.

func (*MockStoreMockRecorder) ListRepositoriesByProjectID

func (mr *MockStoreMockRecorder) ListRepositoriesByProjectID(arg0, arg1 any) *gomock.Call

ListRepositoriesByProjectID indicates an expected call of ListRepositoriesByProjectID.

func (*MockStoreMockRecorder) ListRuleEvaluationsByProfileId

func (mr *MockStoreMockRecorder) ListRuleEvaluationsByProfileId(arg0, arg1 any) *gomock.Call

ListRuleEvaluationsByProfileId indicates an expected call of ListRuleEvaluationsByProfileId.

func (*MockStoreMockRecorder) ListRuleTypesByProject

func (mr *MockStoreMockRecorder) ListRuleTypesByProject(arg0, arg1 any) *gomock.Call

ListRuleTypesByProject indicates an expected call of ListRuleTypesByProject.

func (*MockStoreMockRecorder) ListTokensToMigrate

func (mr *MockStoreMockRecorder) ListTokensToMigrate(arg0, arg1 any) *gomock.Call

ListTokensToMigrate indicates an expected call of ListTokensToMigrate.

func (*MockStoreMockRecorder) ListUsers

func (mr *MockStoreMockRecorder) ListUsers(arg0, arg1 any) *gomock.Call

ListUsers indicates an expected call of ListUsers.

func (*MockStoreMockRecorder) LockIfThresholdNotExceeded

func (mr *MockStoreMockRecorder) LockIfThresholdNotExceeded(arg0, arg1 any) *gomock.Call

LockIfThresholdNotExceeded indicates an expected call of LockIfThresholdNotExceeded.

func (*MockStoreMockRecorder) OrphanProject

func (mr *MockStoreMockRecorder) OrphanProject(arg0, arg1 any) *gomock.Call

OrphanProject indicates an expected call of OrphanProject.

func (*MockStoreMockRecorder) ReleaseLock

func (mr *MockStoreMockRecorder) ReleaseLock(arg0, arg1 any) *gomock.Call

ReleaseLock indicates an expected call of ReleaseLock.

func (*MockStoreMockRecorder) RepositoryExistsAfterID

func (mr *MockStoreMockRecorder) RepositoryExistsAfterID(arg0, arg1 any) *gomock.Call

RepositoryExistsAfterID indicates an expected call of RepositoryExistsAfterID.

func (*MockStoreMockRecorder) Rollback

func (mr *MockStoreMockRecorder) Rollback(arg0 any) *gomock.Call

Rollback indicates an expected call of Rollback.

func (*MockStoreMockRecorder) SetCurrentVersion

func (mr *MockStoreMockRecorder) SetCurrentVersion(arg0, arg1 any) *gomock.Call

SetCurrentVersion indicates an expected call of SetCurrentVersion.

func (*MockStoreMockRecorder) UpdateEncryptedSecret

func (mr *MockStoreMockRecorder) UpdateEncryptedSecret(arg0, arg1 any) *gomock.Call

UpdateEncryptedSecret indicates an expected call of UpdateEncryptedSecret.

func (*MockStoreMockRecorder) UpdateInvitationRole

func (mr *MockStoreMockRecorder) UpdateInvitationRole(arg0, arg1 any) *gomock.Call

UpdateInvitationRole indicates an expected call of UpdateInvitationRole.

func (*MockStoreMockRecorder) UpdateLease

func (mr *MockStoreMockRecorder) UpdateLease(arg0, arg1 any) *gomock.Call

UpdateLease indicates an expected call of UpdateLease.

func (*MockStoreMockRecorder) UpdateProfile

func (mr *MockStoreMockRecorder) UpdateProfile(arg0, arg1 any) *gomock.Call

UpdateProfile indicates an expected call of UpdateProfile.

func (*MockStoreMockRecorder) UpdateProjectMeta

func (mr *MockStoreMockRecorder) UpdateProjectMeta(arg0, arg1 any) *gomock.Call

UpdateProjectMeta indicates an expected call of UpdateProjectMeta.

func (*MockStoreMockRecorder) UpdateProvider

func (mr *MockStoreMockRecorder) UpdateProvider(arg0, arg1 any) *gomock.Call

UpdateProvider indicates an expected call of UpdateProvider.

func (*MockStoreMockRecorder) UpdateReminderLastSentForRepositories

func (mr *MockStoreMockRecorder) UpdateReminderLastSentForRepositories(arg0, arg1 any) *gomock.Call

UpdateReminderLastSentForRepositories indicates an expected call of UpdateReminderLastSentForRepositories.

func (*MockStoreMockRecorder) UpdateRuleType

func (mr *MockStoreMockRecorder) UpdateRuleType(arg0, arg1 any) *gomock.Call

UpdateRuleType indicates an expected call of UpdateRuleType.

func (*MockStoreMockRecorder) UpdateSelector

func (mr *MockStoreMockRecorder) UpdateSelector(arg0, arg1 any) *gomock.Call

UpdateSelector indicates an expected call of UpdateSelector.

func (*MockStoreMockRecorder) UpsertAccessToken

func (mr *MockStoreMockRecorder) UpsertAccessToken(arg0, arg1 any) *gomock.Call

UpsertAccessToken indicates an expected call of UpsertAccessToken.

func (*MockStoreMockRecorder) UpsertArtifact

func (mr *MockStoreMockRecorder) UpsertArtifact(arg0, arg1 any) *gomock.Call

UpsertArtifact indicates an expected call of UpsertArtifact.

func (*MockStoreMockRecorder) UpsertBundle

func (mr *MockStoreMockRecorder) UpsertBundle(arg0, arg1 any) *gomock.Call

UpsertBundle indicates an expected call of UpsertBundle.

func (*MockStoreMockRecorder) UpsertInstallationID

func (mr *MockStoreMockRecorder) UpsertInstallationID(arg0, arg1 any) *gomock.Call

UpsertInstallationID indicates an expected call of UpsertInstallationID.

func (*MockStoreMockRecorder) UpsertLatestEvaluationStatus

func (mr *MockStoreMockRecorder) UpsertLatestEvaluationStatus(arg0, arg1 any) *gomock.Call

UpsertLatestEvaluationStatus indicates an expected call of UpsertLatestEvaluationStatus.

func (*MockStoreMockRecorder) UpsertProfileForEntity

func (mr *MockStoreMockRecorder) UpsertProfileForEntity(arg0, arg1 any) *gomock.Call

UpsertProfileForEntity indicates an expected call of UpsertProfileForEntity.

func (*MockStoreMockRecorder) UpsertProperty

func (mr *MockStoreMockRecorder) UpsertProperty(arg0, arg1 any) *gomock.Call

UpsertProperty indicates an expected call of UpsertProperty.

func (*MockStoreMockRecorder) UpsertPropertyValueV1

func (mr *MockStoreMockRecorder) UpsertPropertyValueV1(arg0, arg1 any) *gomock.Call

UpsertPropertyValueV1 indicates an expected call of UpsertPropertyValueV1.

func (*MockStoreMockRecorder) UpsertRuleInstance

func (mr *MockStoreMockRecorder) UpsertRuleInstance(arg0, arg1 any) *gomock.Call

UpsertRuleInstance indicates an expected call of UpsertRuleInstance.

func (*MockStoreMockRecorder) WithTransactionErr

func (mr *MockStoreMockRecorder) WithTransactionErr(arg0 any) *gomock.Call

WithTransactionErr indicates an expected call of WithTransactionErr.

Directories

Path Synopsis
Package fixtures contains code for creating RepositoryService fixtures and is used in various parts of the code.
Package fixtures contains code for creating RepositoryService fixtures and is used in various parts of the code.

Jump to

Keyboard shortcuts

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