![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.insights.kotlin.inputs.EtwEventConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.insights.kotlin.inputs
import com.pulumi.azurenative.insights.inputs.EtwEventConfigurationArgs.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 kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property filter
* @property id
* @property name
*/
public data class EtwEventConfigurationArgs(
public val filter: Output? = null,
public val id: Output,
public val name: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.insights.inputs.EtwEventConfigurationArgs =
com.pulumi.azurenative.insights.inputs.EtwEventConfigurationArgs.builder()
.filter(filter?.applyValue({ args0 -> args0 }))
.id(id.applyValue({ args0 -> args0 }))
.name(name.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EtwEventConfigurationArgs].
*/
@PulumiTagMarker
public class EtwEventConfigurationArgsBuilder internal constructor() {
private var filter: Output? = null
private var id: Output? = null
private var name: Output? = null
/**
* @param value
*/
@JvmName("guivayxdihxtnhwc")
public suspend fun filter(`value`: Output) {
this.filter = value
}
/**
* @param value
*/
@JvmName("ehqlmmvnkpxypeoa")
public suspend fun id(`value`: Output) {
this.id = value
}
/**
* @param value
*/
@JvmName("foqauvgndvhcosuo")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value
*/
@JvmName("dwnmhkqussniqnjg")
public suspend fun filter(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.filter = mapped
}
/**
* @param value
*/
@JvmName("slexabdxacwmuyjo")
public suspend fun id(`value`: Int) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.id = mapped
}
/**
* @param value
*/
@JvmName("sgxctenqgpbitrgd")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): EtwEventConfigurationArgs = EtwEventConfigurationArgs(
filter = filter,
id = id ?: throw PulumiNullFieldException("id"),
name = name ?: throw PulumiNullFieldException("name"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy