
com.pulumi.azure.sentinel.kotlin.outputs.AlertRuleAnomalyBuiltInMultiSelectObservation.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.sentinel.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property description The description of the threshold observation.
* @property name The Name of the built-in Anomaly Alert Rule.
* @property supportedValues A list of supported values of the single select observation.
* @property values A list of values of the single select observation.
*/
public data class AlertRuleAnomalyBuiltInMultiSelectObservation(
public val description: String? = null,
public val name: String? = null,
public val supportedValues: List? = null,
public val values: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.sentinel.outputs.AlertRuleAnomalyBuiltInMultiSelectObservation): AlertRuleAnomalyBuiltInMultiSelectObservation =
AlertRuleAnomalyBuiltInMultiSelectObservation(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
name = javaType.name().map({ args0 -> args0 }).orElse(null),
supportedValues = javaType.supportedValues().map({ args0 -> args0 }),
values = javaType.values().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy