15fab1cb99
* add VersionedNotifierPlugin and method that converts NotifierPlugin to it * return new schema if query parameter version=2 * add version to k8s model of integration * fix open api snapshot * add version to IntegrationConfig * use current version on conversion * create versioned integrations for test
18 lines
275 B
CUE
18 lines
275 B
CUE
package v0alpha1
|
|
|
|
ReceiverSpec: {
|
|
title: string
|
|
integrations: [...#Integration]
|
|
}
|
|
|
|
#Integration: {
|
|
uid?: string
|
|
type: string
|
|
version: string
|
|
disableResolveMessage?: bool
|
|
settings: {
|
|
[string]: _
|
|
}
|
|
secureFields?: [string]: bool
|
|
}
|