
com.pulumi.gcp.certificatemanager.kotlin.inputs.TrustConfigTrustStoreIntermediateCaArgs.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.certificatemanager.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.certificatemanager.inputs.TrustConfigTrustStoreIntermediateCaArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property pemCertificate PEM intermediate certificate used for building up paths for validation.
* Each certificate provided in PEM format may occupy up to 5kB.
* **Note**: This property is sensitive and will not be displayed in the plan.
*/
public data class TrustConfigTrustStoreIntermediateCaArgs(
public val pemCertificate: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.certificatemanager.inputs.TrustConfigTrustStoreIntermediateCaArgs =
com.pulumi.gcp.certificatemanager.inputs.TrustConfigTrustStoreIntermediateCaArgs.builder()
.pemCertificate(pemCertificate?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TrustConfigTrustStoreIntermediateCaArgs].
*/
@PulumiTagMarker
public class TrustConfigTrustStoreIntermediateCaArgsBuilder internal constructor() {
private var pemCertificate: Output? = null
/**
* @param value PEM intermediate certificate used for building up paths for validation.
* Each certificate provided in PEM format may occupy up to 5kB.
* **Note**: This property is sensitive and will not be displayed in the plan.
*/
@JvmName("wihwrfpmxnclqhjg")
public suspend fun pemCertificate(`value`: Output) {
this.pemCertificate = value
}
/**
* @param value PEM intermediate certificate used for building up paths for validation.
* Each certificate provided in PEM format may occupy up to 5kB.
* **Note**: This property is sensitive and will not be displayed in the plan.
*/
@JvmName("qtkwmattstdbvnvv")
public suspend fun pemCertificate(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.pemCertificate = mapped
}
internal fun build(): TrustConfigTrustStoreIntermediateCaArgs =
TrustConfigTrustStoreIntermediateCaArgs(
pemCertificate = pemCertificate,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy