Files
kubesphere/pkg/apiserver/auditing/v1alpha1/event.go
2020-06-14 11:25:28 +08:00

21 lines
346 B
Go

package v1alpha1
import "k8s.io/apiserver/pkg/apis/audit"
type Event struct {
// Devops project
Devops string
// The workspace which this audit event happened
Workspace string
// The cluster which this audit event happened
Cluster string
// Message send to user.
Message string
audit.Event
}
type EventList struct {
Items []Event
}