0
0
Fork 0
mirror of https://github.com/crazy-max/diun.git synced 2025-03-17 12:52:40 +00:00
crazy-max_diun/internal/model/watch.go
CrazyMax 072e5d6175
Make scheduler optional ()
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
2021-01-02 15:54:08 +00:00

28 lines
946 B
Go

package model
import (
"github.com/crazy-max/diun/v4/pkg/utl"
)
// Watch holds data necessary for watch configuration
type Watch struct {
Workers int `yaml:"workers,omitempty" json:"workers,omitempty" validate:"required,min=1"`
Schedule string `yaml:"schedule,omitempty" json:"schedule,omitempty"`
FirstCheckNotif *bool `yaml:"firstCheckNotif,omitempty" json:"firstCheckNotif,omitempty" validate:"required"`
CompareDigest *bool `yaml:"compareDigest,omitempty" json:"compareDigest,omitempty" validate:"required"`
Healthchecks *Healthchecks `yaml:"healthchecks,omitempty" json:"healthchecks,omitempty"`
}
// GetDefaults gets the default values
func (s *Watch) GetDefaults() *Watch {
n := &Watch{}
n.SetDefaults()
return n
}
// SetDefaults sets the default values
func (s *Watch) SetDefaults() {
s.Workers = 10
s.FirstCheckNotif = utl.NewFalse()
s.CompareDigest = utl.NewTrue()
}