Files
grafana/apps/alerting/notifications/kinds/timeInterval.cue
2025-07-21 13:32:15 -04:00

29 lines
469 B
CUE

package kinds
import (
"github.com/grafana/grafana/apps/alerting/notifications/kinds/v0alpha1"
)
timeInterval: {
kind: "TimeInterval"
apiResource: {
groupOverride: "notifications.alerting.grafana.app"
}
pluralName: "TimeIntervals"
current: "v0alpha1"
versions: {
"v0alpha1": {
codegen: {
ts: {enabled: false}
go: {enabled: true}
}
schema: {
spec: v0alpha1.TimeIntervalSpec
}
selectableFields: [
"spec.name",
]
}
}
}