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

com.pulumi.azure.containerservice.kotlin.inputs.KubernetesClusterConfidentialComputingArgs.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

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

/**
 *
 * @property sgxQuoteHelperEnabled Should the SGX quote helper be enabled?
 */
public data class KubernetesClusterConfidentialComputingArgs(
    public val sgxQuoteHelperEnabled: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.containerservice.inputs.KubernetesClusterConfidentialComputingArgs =
        com.pulumi.azure.containerservice.inputs.KubernetesClusterConfidentialComputingArgs.builder()
            .sgxQuoteHelperEnabled(sgxQuoteHelperEnabled.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [KubernetesClusterConfidentialComputingArgs].
 */
@PulumiTagMarker
public class KubernetesClusterConfidentialComputingArgsBuilder internal constructor() {
    private var sgxQuoteHelperEnabled: Output? = null

    /**
     * @param value Should the SGX quote helper be enabled?
     */
    @JvmName("khanpprmjcfhbcvn")
    public suspend fun sgxQuoteHelperEnabled(`value`: Output) {
        this.sgxQuoteHelperEnabled = value
    }

    /**
     * @param value Should the SGX quote helper be enabled?
     */
    @JvmName("onfgnjativdantho")
    public suspend fun sgxQuoteHelperEnabled(`value`: Boolean) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.sgxQuoteHelperEnabled = mapped
    }

    internal fun build(): KubernetesClusterConfidentialComputingArgs =
        KubernetesClusterConfidentialComputingArgs(
            sgxQuoteHelperEnabled = sgxQuoteHelperEnabled ?: throw
                PulumiNullFieldException("sgxQuoteHelperEnabled"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy