All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.sentinel.kotlin.outputs.AlertRuleAnomalyDuplicateMultiSelectObservation.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 multi select observation.
 * @property name The name of the multi select observation.
 * @property supportedValues A list of supported values of the multi select observation.
 * @property values A list of values of the multi select observation.
 */
public data class AlertRuleAnomalyDuplicateMultiSelectObservation(
    public val description: String? = null,
    public val name: String,
    public val supportedValues: List? = null,
    public val values: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.sentinel.outputs.AlertRuleAnomalyDuplicateMultiSelectObservation): AlertRuleAnomalyDuplicateMultiSelectObservation =
            AlertRuleAnomalyDuplicateMultiSelectObservation(
                description = javaType.description().map({ args0 -> args0 }).orElse(null),
                name = javaType.name(),
                supportedValues = javaType.supportedValues().map({ args0 -> args0 }),
                values = javaType.values().map({ args0 -> args0 }),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy