com.pulumi.azure.securitycenter.kotlin.inputs.AutomationSourceRuleSetArgs.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.securitycenter.kotlin.inputs
import com.pulumi.azure.securitycenter.inputs.AutomationSourceRuleSetArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property rules One or more `rule` blocks as defined below.
* > **NOTE:** This automation will trigger when all of the `rule`s in this `rule_set` are evaluated as 'true'. This is equivalent to a logical 'AND'.
*/
public data class AutomationSourceRuleSetArgs(
public val rules: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.securitycenter.inputs.AutomationSourceRuleSetArgs =
com.pulumi.azure.securitycenter.inputs.AutomationSourceRuleSetArgs.builder()
.rules(
rules.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [AutomationSourceRuleSetArgs].
*/
@PulumiTagMarker
public class AutomationSourceRuleSetArgsBuilder internal constructor() {
private var rules: Output>? = null
/**
* @param value One or more `rule` blocks as defined below.
* > **NOTE:** This automation will trigger when all of the `rule`s in this `rule_set` are evaluated as 'true'. This is equivalent to a logical 'AND'.
*/
@JvmName("umpmiqfofekanhso")
public suspend fun rules(`value`: Output>) {
this.rules = value
}
@JvmName("wglygisnwbiauard")
public suspend fun rules(vararg values: Output) {
this.rules = Output.all(values.asList())
}
/**
* @param values One or more `rule` blocks as defined below.
* > **NOTE:** This automation will trigger when all of the `rule`s in this `rule_set` are evaluated as 'true'. This is equivalent to a logical 'AND'.
*/
@JvmName("tpeerbucveqaskru")
public suspend fun rules(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy