mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -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]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|