mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
Co-authored-by: James Carppe <85850129+jamescarppe@users.noreply.github.com> Co-authored-by: Anthony Lapenna <anthony.lapenna@portainer.io> Co-authored-by: andres-portainer <91705312+andres-portainer@users.noreply.github.com> Co-authored-by: Oscar Zhou <100548325+oscarzhou-portainer@users.noreply.github.com> Co-authored-by: Yajith Dayarathna <yajith.dayarathna@portainer.io> Co-authored-by: LP B <xAt0mZ@users.noreply.github.com> Co-authored-by: oscarzhou <oscar.zhou@portainer.io> Co-authored-by: testA113 <aliharriss1995@gmail.com>
36 lines
748 B
Go
36 lines
748 B
Go
package kubernetes
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
)
|
|
|
|
type K8sCronJob struct {
|
|
Id string `json:"Id"`
|
|
Name string `json:"Name"`
|
|
Namespace string `json:"Namespace"`
|
|
Command string `json:"Command"`
|
|
Schedule string `json:"Schedule"`
|
|
Timezone string `json:"Timezone"`
|
|
Suspend bool `json:"Suspend"`
|
|
Jobs []K8sJob `json:"Jobs"`
|
|
IsSystem bool `json:"IsSystem"`
|
|
}
|
|
|
|
type (
|
|
K8sCronJobDeleteRequests map[string][]string
|
|
)
|
|
|
|
func (r K8sCronJobDeleteRequests) Validate(request *http.Request) error {
|
|
if len(r) == 0 {
|
|
return errors.New("missing deletion request list in payload")
|
|
}
|
|
|
|
for ns := range r {
|
|
if len(ns) == 0 {
|
|
return errors.New("deletion given with empty namespace")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|