com.pulumi.gcp.container.kotlin.inputs.AzureClusterLoggingConfigArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.container.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.container.inputs.AzureClusterLoggingConfigArgs.builder
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 componentConfig Configuration of the logging components.
*/
public data class AzureClusterLoggingConfigArgs(
public val componentConfig: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.container.inputs.AzureClusterLoggingConfigArgs =
com.pulumi.gcp.container.inputs.AzureClusterLoggingConfigArgs.builder()
.componentConfig(
componentConfig?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [AzureClusterLoggingConfigArgs].
*/
@PulumiTagMarker
public class AzureClusterLoggingConfigArgsBuilder internal constructor() {
private var componentConfig: Output? = null
/**
* @param value Configuration of the logging components.
*/
@JvmName("jisghpiugxldfakp")
public suspend fun componentConfig(`value`: Output) {
this.componentConfig = value
}
/**
* @param value Configuration of the logging components.
*/
@JvmName("cnwqjsqyopauvxdw")
public suspend fun componentConfig(`value`: AzureClusterLoggingConfigComponentConfigArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.componentConfig = mapped
}
/**
* @param argument Configuration of the logging components.
*/
@JvmName("bpabivgbnqigdlwk")
public suspend fun componentConfig(argument: suspend AzureClusterLoggingConfigComponentConfigArgsBuilder.() -> Unit) {
val toBeMapped = AzureClusterLoggingConfigComponentConfigArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.componentConfig = mapped
}
internal fun build(): AzureClusterLoggingConfigArgs = AzureClusterLoggingConfigArgs(
componentConfig = componentConfig,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy