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

com.pulumi.azure.containerservice.kotlin.inputs.KubernetesFleetManagerHubProfileArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.containerservice.kotlin.inputs

import com.pulumi.azure.containerservice.inputs.KubernetesFleetManagerHubProfileArgs.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.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property dnsPrefix
 * @property fqdn
 * @property kubernetesVersion
 */
public data class KubernetesFleetManagerHubProfileArgs(
    public val dnsPrefix: Output,
    public val fqdn: Output? = null,
    public val kubernetesVersion: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.containerservice.inputs.KubernetesFleetManagerHubProfileArgs =
        com.pulumi.azure.containerservice.inputs.KubernetesFleetManagerHubProfileArgs.builder()
            .dnsPrefix(dnsPrefix.applyValue({ args0 -> args0 }))
            .fqdn(fqdn?.applyValue({ args0 -> args0 }))
            .kubernetesVersion(kubernetesVersion?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [KubernetesFleetManagerHubProfileArgs].
 */
@PulumiTagMarker
public class KubernetesFleetManagerHubProfileArgsBuilder internal constructor() {
    private var dnsPrefix: Output? = null

    private var fqdn: Output? = null

    private var kubernetesVersion: Output? = null

    /**
     * @param value
     */
    @JvmName("qexwupnvtqaeisas")
    public suspend fun dnsPrefix(`value`: Output) {
        this.dnsPrefix = value
    }

    /**
     * @param value
     */
    @JvmName("mwjdxlxwshgniuub")
    public suspend fun fqdn(`value`: Output) {
        this.fqdn = value
    }

    /**
     * @param value
     */
    @JvmName("mkwupfbsvrxkpajn")
    public suspend fun kubernetesVersion(`value`: Output) {
        this.kubernetesVersion = value
    }

    /**
     * @param value
     */
    @JvmName("gvnwsaplhudxtlpq")
    public suspend fun dnsPrefix(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.dnsPrefix = mapped
    }

    /**
     * @param value
     */
    @JvmName("wwyffuhcgnvslgrl")
    public suspend fun fqdn(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.fqdn = mapped
    }

    /**
     * @param value
     */
    @JvmName("qhefptisyjiypdei")
    public suspend fun kubernetesVersion(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.kubernetesVersion = mapped
    }

    internal fun build(): KubernetesFleetManagerHubProfileArgs = KubernetesFleetManagerHubProfileArgs(
        dnsPrefix = dnsPrefix ?: throw PulumiNullFieldException("dnsPrefix"),
        fqdn = fqdn,
        kubernetesVersion = kubernetesVersion,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy