Documentation ¶
Index ¶
- type MockStore
- func (m *MockStore) AuditJobsExecution(jobsExecutionAuditLog *postgres.JobsExecutionAuditLog) error
- func (m *MockStore) GetEnabledScheduledJobs() ([]postgres.JobsSchedule, error)
- func (m *MockStore) GetJobExecutionStatus(jobName string) (string, error)
- func (m *MockStore) GetScheduledJob(jobID string) ([]postgres.JobsSchedule, error)
- func (m *MockStore) GetScheduledJobs() ([]postgres.JobsSchedule, error)
- func (m *MockStore) InsertScheduledJob(jobName, tags, time, notificationEmails, userEmail, groupName string, ...) (string, error)
- func (m *MockStore) RemoveScheduledJob(jobID string) (int64, error)
- func (m *MockStore) UpdateJobsExecutionAuditLog(JobNameSubmittedForExecution, status string) error
- type Store
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MockStore ¶
func (*MockStore) AuditJobsExecution ¶ added in v0.5.0
func (m *MockStore) AuditJobsExecution(jobsExecutionAuditLog *postgres.JobsExecutionAuditLog) error
func (*MockStore) GetEnabledScheduledJobs ¶ added in v0.5.0
func (m *MockStore) GetEnabledScheduledJobs() ([]postgres.JobsSchedule, error)
func (*MockStore) GetJobExecutionStatus ¶
func (*MockStore) GetScheduledJob ¶ added in v0.5.0
func (m *MockStore) GetScheduledJob(jobID string) ([]postgres.JobsSchedule, error)
func (*MockStore) GetScheduledJobs ¶ added in v0.5.0
func (m *MockStore) GetScheduledJobs() ([]postgres.JobsSchedule, error)
func (*MockStore) InsertScheduledJob ¶ added in v0.5.0
func (*MockStore) RemoveScheduledJob ¶ added in v0.5.0
func (*MockStore) UpdateJobsExecutionAuditLog ¶
type Store ¶
type Store interface { AuditJobsExecution(*postgres.JobsExecutionAuditLog) error UpdateJobsExecutionAuditLog(string, string) error GetJobExecutionStatus(string) (string, error) InsertScheduledJob(string, string, string, string, string, string, map[string]string) (string, error) GetScheduledJobs() ([]postgres.JobsSchedule, error) GetEnabledScheduledJobs() ([]postgres.JobsSchedule, error) GetScheduledJob(string) ([]postgres.JobsSchedule, error) RemoveScheduledJob(string) (int64, error) }
Click to show internal directories.
Click to hide internal directories.