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

com.pulumi.gcp.container.kotlin.inputs.AttachedClusterProxyConfigKubernetesSecretArgs.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.AttachedClusterProxyConfigKubernetesSecretArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property name Name of the kubernetes secret containing the proxy config.
 * @property namespace Namespace of the kubernetes secret containing the proxy config.
 */
public data class AttachedClusterProxyConfigKubernetesSecretArgs(
    public val name: Output,
    public val namespace: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.container.inputs.AttachedClusterProxyConfigKubernetesSecretArgs =
        com.pulumi.gcp.container.inputs.AttachedClusterProxyConfigKubernetesSecretArgs.builder()
            .name(name.applyValue({ args0 -> args0 }))
            .namespace(namespace.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AttachedClusterProxyConfigKubernetesSecretArgs].
 */
@PulumiTagMarker
public class AttachedClusterProxyConfigKubernetesSecretArgsBuilder internal constructor() {
    private var name: Output? = null

    private var namespace: Output? = null

    /**
     * @param value Name of the kubernetes secret containing the proxy config.
     */
    @JvmName("veleqlfqrxiyqpvo")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value Namespace of the kubernetes secret containing the proxy config.
     */
    @JvmName("bdcxrnfqievooydf")
    public suspend fun namespace(`value`: Output) {
        this.namespace = value
    }

    /**
     * @param value Name of the kubernetes secret containing the proxy config.
     */
    @JvmName("mlbhxojmamkughrq")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value Namespace of the kubernetes secret containing the proxy config.
     */
    @JvmName("yqylxxvuvwnidshd")
    public suspend fun namespace(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.namespace = mapped
    }

    internal fun build(): AttachedClusterProxyConfigKubernetesSecretArgs =
        AttachedClusterProxyConfigKubernetesSecretArgs(
            name = name ?: throw PulumiNullFieldException("name"),
            namespace = namespace ?: throw PulumiNullFieldException("namespace"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy