![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.migrate.kotlin.inputs.CollectorAgentPropertiesArgs.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.migrate.kotlin.inputs
import com.pulumi.azurenative.migrate.inputs.CollectorAgentPropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property spnDetails
*/
public data class CollectorAgentPropertiesArgs(
public val spnDetails: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.migrate.inputs.CollectorAgentPropertiesArgs =
com.pulumi.azurenative.migrate.inputs.CollectorAgentPropertiesArgs.builder()
.spnDetails(spnDetails?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [CollectorAgentPropertiesArgs].
*/
@PulumiTagMarker
public class CollectorAgentPropertiesArgsBuilder internal constructor() {
private var spnDetails: Output? = null
/**
* @param value
*/
@JvmName("lfhcaarufibdmqco")
public suspend fun spnDetails(`value`: Output) {
this.spnDetails = value
}
/**
* @param value
*/
@JvmName("sdxfqmuhtdpjmfoc")
public suspend fun spnDetails(`value`: CollectorBodyAgentSpnPropertiesArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.spnDetails = mapped
}
/**
* @param argument
*/
@JvmName("klasdlcobyndbjme")
public suspend fun spnDetails(argument: suspend CollectorBodyAgentSpnPropertiesArgsBuilder.() -> Unit) {
val toBeMapped = CollectorBodyAgentSpnPropertiesArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.spnDetails = mapped
}
internal fun build(): CollectorAgentPropertiesArgs = CollectorAgentPropertiesArgs(
spnDetails = spnDetails,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy