All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.container.kotlin.inputs.AttachedClusterLoggingConfigArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.12.0.0
Show newest version
@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.AttachedClusterLoggingConfigArgs.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 The configuration of the logging components
 * Structure is documented below.
 */
public data class AttachedClusterLoggingConfigArgs(
    public val componentConfig: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.container.inputs.AttachedClusterLoggingConfigArgs =
        com.pulumi.gcp.container.inputs.AttachedClusterLoggingConfigArgs.builder()
            .componentConfig(
                componentConfig?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            ).build()
}

/**
 * Builder for [AttachedClusterLoggingConfigArgs].
 */
@PulumiTagMarker
public class AttachedClusterLoggingConfigArgsBuilder internal constructor() {
    private var componentConfig: Output? = null

    /**
     * @param value The configuration of the logging components
     * Structure is documented below.
     */
    @JvmName("fapajwnntdxgxack")
    public suspend fun componentConfig(`value`: Output) {
        this.componentConfig = value
    }

    /**
     * @param value The configuration of the logging components
     * Structure is documented below.
     */
    @JvmName("txefxnrxifcjugqv")
    public suspend fun componentConfig(`value`: AttachedClusterLoggingConfigComponentConfigArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.componentConfig = mapped
    }

    /**
     * @param argument The configuration of the logging components
     * Structure is documented below.
     */
    @JvmName("htdceqkdeoffkldy")
    public suspend fun componentConfig(argument: suspend AttachedClusterLoggingConfigComponentConfigArgsBuilder.() -> Unit) {
        val toBeMapped = AttachedClusterLoggingConfigComponentConfigArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.componentConfig = mapped
    }

    internal fun build(): AttachedClusterLoggingConfigArgs = AttachedClusterLoggingConfigArgs(
        componentConfig = componentConfig,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy