com.pulumi.azure.sentinel.kotlin.inputs.ThreatIntelligenceIndicatorGranularMarkingArgs.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.inputs
import com.pulumi.azure.sentinel.inputs.ThreatIntelligenceIndicatorGranularMarkingArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property language The language of granular marking of the Threat Intelligence Indicator.
* @property markingRef The reference of the granular marking of the Threat Intelligence Indicator.
* @property selectors A list of selectors of the granular marking of the Threat Intelligence Indicator.
*/
public data class ThreatIntelligenceIndicatorGranularMarkingArgs(
public val language: Output? = null,
public val markingRef: Output? = null,
public val selectors: Output>? = null,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.sentinel.inputs.ThreatIntelligenceIndicatorGranularMarkingArgs =
com.pulumi.azure.sentinel.inputs.ThreatIntelligenceIndicatorGranularMarkingArgs.builder()
.language(language?.applyValue({ args0 -> args0 }))
.markingRef(markingRef?.applyValue({ args0 -> args0 }))
.selectors(selectors?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [ThreatIntelligenceIndicatorGranularMarkingArgs].
*/
@PulumiTagMarker
public class ThreatIntelligenceIndicatorGranularMarkingArgsBuilder internal constructor() {
private var language: Output? = null
private var markingRef: Output? = null
private var selectors: Output>? = null
/**
* @param value The language of granular marking of the Threat Intelligence Indicator.
*/
@JvmName("eiyxjrxaocjroiiy")
public suspend fun language(`value`: Output) {
this.language = value
}
/**
* @param value The reference of the granular marking of the Threat Intelligence Indicator.
*/
@JvmName("cehgyeggratihbbb")
public suspend fun markingRef(`value`: Output) {
this.markingRef = value
}
/**
* @param value A list of selectors of the granular marking of the Threat Intelligence Indicator.
*/
@JvmName("lqeciitjfrpfrpsl")
public suspend fun selectors(`value`: Output>) {
this.selectors = value
}
@JvmName("sfabckchnbfbsxjp")
public suspend fun selectors(vararg values: Output) {
this.selectors = Output.all(values.asList())
}
/**
* @param values A list of selectors of the granular marking of the Threat Intelligence Indicator.
*/
@JvmName("kweuuefpxyckbolm")
public suspend fun selectors(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy