com.pulumi.gcp.certificatemanager.kotlin.outputs.TrustConfigTrustStore.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.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property intermediateCas Set of intermediate CA certificates used for the path building phase of chain validation.
* The field is currently not supported if trust config is used for the workload certificate feature.
* Structure is documented below.
* @property trustAnchors List of Trust Anchors to be used while performing validation against a given TrustStore.
* Structure is documented below.
*/
public data class TrustConfigTrustStore(
public val intermediateCas: List? = null,
public val trustAnchors: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.certificatemanager.outputs.TrustConfigTrustStore): TrustConfigTrustStore = TrustConfigTrustStore(
intermediateCas = javaType.intermediateCas().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.certificatemanager.kotlin.outputs.TrustConfigTrustStoreIntermediateCa.Companion.toKotlin(args0)
})
}),
trustAnchors = javaType.trustAnchors().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.certificatemanager.kotlin.outputs.TrustConfigTrustStoreTrustAnchor.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy