event.go 347 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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.s
	Message string

	audit.Event
}

type EventList struct {
	Items []Event
}