You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/event/event_sys.go

18 lines
486 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package event
// sysVersion defines the version of sys events
const sysVersion = "v0.1"
type sysEvent struct {
Id Id `json:"-"`
Version string `json:"version"`
Op Op `json:"op,omitempty"`
Data map[string]any `json:"data"`
}
// EventType is required for all event types by the eventlogger broker
func (e *sysEvent) EventType() string { return string(SystemType) }