com.pulumi.gcp.container.kotlin.inputs.ClusterMeshCertificatesArgs.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.ClusterMeshCertificatesArgs.builder
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 enableCertificates Controls the issuance of workload mTLS certificates. It is enabled by default. Workload Identity is required, see workload_config.
*/
public data class ClusterMeshCertificatesArgs(
public val enableCertificates: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.container.inputs.ClusterMeshCertificatesArgs =
com.pulumi.gcp.container.inputs.ClusterMeshCertificatesArgs.builder()
.enableCertificates(enableCertificates.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ClusterMeshCertificatesArgs].
*/
@PulumiTagMarker
public class ClusterMeshCertificatesArgsBuilder internal constructor() {
private var enableCertificates: Output? = null
/**
* @param value Controls the issuance of workload mTLS certificates. It is enabled by default. Workload Identity is required, see workload_config.
*/
@JvmName("jlloqaommgykmhir")
public suspend fun enableCertificates(`value`: Output) {
this.enableCertificates = value
}
/**
* @param value Controls the issuance of workload mTLS certificates. It is enabled by default. Workload Identity is required, see workload_config.
*/
@JvmName("ftlgdogillwjuhwg")
public suspend fun enableCertificates(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.enableCertificates = mapped
}
internal fun build(): ClusterMeshCertificatesArgs = ClusterMeshCertificatesArgs(
enableCertificates = enableCertificates ?: throw PulumiNullFieldException("enableCertificates"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy