com.pulumi.azure.network.kotlin.inputs.FirewallPolicyIntrusionDetectionSignatureOverrideArgs.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.network.kotlin.inputs
import com.pulumi.azure.network.inputs.FirewallPolicyIntrusionDetectionSignatureOverrideArgs.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.jvm.JvmName
/**
*
* @property id 12-digit number (id) which identifies your signature.
* @property state state can be any of `Off`, `Alert` or `Deny`.
*/
public data class FirewallPolicyIntrusionDetectionSignatureOverrideArgs(
public val id: Output? = null,
public val state: Output? = null,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.network.inputs.FirewallPolicyIntrusionDetectionSignatureOverrideArgs =
com.pulumi.azure.network.inputs.FirewallPolicyIntrusionDetectionSignatureOverrideArgs.builder()
.id(id?.applyValue({ args0 -> args0 }))
.state(state?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FirewallPolicyIntrusionDetectionSignatureOverrideArgs].
*/
@PulumiTagMarker
public class FirewallPolicyIntrusionDetectionSignatureOverrideArgsBuilder internal constructor() {
private var id: Output? = null
private var state: Output? = null
/**
* @param value 12-digit number (id) which identifies your signature.
*/
@JvmName("tsqkktuxguyiudkg")
public suspend fun id(`value`: Output) {
this.id = value
}
/**
* @param value state can be any of `Off`, `Alert` or `Deny`.
*/
@JvmName("offlvcrgtvatiwuo")
public suspend fun state(`value`: Output) {
this.state = value
}
/**
* @param value 12-digit number (id) which identifies your signature.
*/
@JvmName("ekxbevdxfvjqtasb")
public suspend fun id(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.id = mapped
}
/**
* @param value state can be any of `Off`, `Alert` or `Deny`.
*/
@JvmName("ljwkiwqdsjnidfwk")
public suspend fun state(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.state = mapped
}
internal fun build(): FirewallPolicyIntrusionDetectionSignatureOverrideArgs =
FirewallPolicyIntrusionDetectionSignatureOverrideArgs(
id = id,
state = state,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy