net.nemerosa.ontrack.kdsl.spec.extension.av.AutoVersioningNotification.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-kdsl Show documentation
Show all versions of ontrack-kdsl Show documentation
Ontrack module: ontrack-kdsl
package net.nemerosa.ontrack.kdsl.spec.extension.av
import com.fasterxml.jackson.databind.JsonNode
/**
* Subscription to an auto versioning event.
*
* @property scope List of events to listen to
* @property channel ID of the channel to listen to
* @property config JSON configuration for the subscription
*/
data class AutoVersioningNotification(
val channel: String,
val config: JsonNode,
val scope: List = listOf(AutoVersioningNotificationScope.ALL),
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy