com.pulumi.azure.sentinel.kotlin.outputs.AlertRuleFusionSource.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.sentinel.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property enabled Whether this source signal is enabled or disabled in Fusion detection? Defaults to `true`.
* @property name The name of the Fusion source signal. Refer to Fusion alert rule template for supported values.
* @property subTypes One or more `sub_type` blocks as defined below.
*/
public data class AlertRuleFusionSource(
public val enabled: Boolean? = null,
public val name: String,
public val subTypes: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.sentinel.outputs.AlertRuleFusionSource):
AlertRuleFusionSource = AlertRuleFusionSource(
enabled = javaType.enabled().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
subTypes = javaType.subTypes().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.sentinel.kotlin.outputs.AlertRuleFusionSourceSubType.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy