com.pulumi.azure.sentinel.kotlin.outputs.GetAlertRuleAnomalyMultiSelectObservation.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 guid of this Sentinel Alert Rule Template. Either `display_name` or `name` have to be specified.
* @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 GetAlertRuleAnomalyMultiSelectObservation(
public val description: String,
public val name: String,
public val supportedValues: List,
public val values: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.sentinel.outputs.GetAlertRuleAnomalyMultiSelectObservation): GetAlertRuleAnomalyMultiSelectObservation = GetAlertRuleAnomalyMultiSelectObservation(
description = javaType.description(),
name = javaType.name(),
supportedValues = javaType.supportedValues().map({ args0 -> args0 }),
values = javaType.values().map({ args0 -> args0 }),
)
}
}