com.pulumi.gcp.certificateauthority.kotlin.outputs.CertificateTemplatePredefinedValuesAdditionalExtension.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.certificateauthority.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property critical Optional. Indicates whether or not this extension is critical (i.e., if the client does not know how to handle this extension, the client should consider this to be an error).
* @property objectId Required. The OID for this X.509 extension.
* @property value Required. The value of this X.509 extension.
*/
public data class CertificateTemplatePredefinedValuesAdditionalExtension(
public val critical: Boolean? = null,
public val objectId: CertificateTemplatePredefinedValuesAdditionalExtensionObjectId,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.certificateauthority.outputs.CertificateTemplatePredefinedValuesAdditionalExtension): CertificateTemplatePredefinedValuesAdditionalExtension =
CertificateTemplatePredefinedValuesAdditionalExtension(
critical = javaType.critical().map({ args0 -> args0 }).orElse(null),
objectId = javaType.objectId().let({ args0 ->
com.pulumi.gcp.certificateauthority.kotlin.outputs.CertificateTemplatePredefinedValuesAdditionalExtensionObjectId.Companion.toKotlin(args0)
}),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy