mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 01:16:31 -06:00
33 lines
524 B
CUE
33 lines
524 B
CUE
package core
|
|
|
|
receiver: {
|
|
kind: "Receiver"
|
|
group: "notifications"
|
|
apiResource: {
|
|
groupOverride: "notifications.alerting.grafana.app"
|
|
}
|
|
codegen: {
|
|
frontend: false
|
|
backend: true
|
|
}
|
|
pluralName: "Receivers"
|
|
current: "v0alpha1"
|
|
versions: {
|
|
"v0alpha1": {
|
|
schema: {
|
|
#Integration: {
|
|
uid?: string
|
|
type: string
|
|
disableResolveMessage?: bool
|
|
settings: bytes
|
|
secureFields?: [string]: bool
|
|
}
|
|
spec: {
|
|
title: string
|
|
integrations : [...#Integration]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|