com.pulumi.gcp.certificateauthority.kotlin.outputs.CaPoolIssuancePolicyBaselineValuesAdditionalExtension.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 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 Describes values that are relevant in a CA certificate.
* Structure is documented below.
* @property value The value of this X.509 extension. A base64-encoded string.
*/
public data class CaPoolIssuancePolicyBaselineValuesAdditionalExtension(
public val critical: Boolean,
public val objectId: CaPoolIssuancePolicyBaselineValuesAdditionalExtensionObjectId,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.certificateauthority.outputs.CaPoolIssuancePolicyBaselineValuesAdditionalExtension): CaPoolIssuancePolicyBaselineValuesAdditionalExtension =
CaPoolIssuancePolicyBaselineValuesAdditionalExtension(
critical = javaType.critical(),
objectId = javaType.objectId().let({ args0 ->
com.pulumi.gcp.certificateauthority.kotlin.outputs.CaPoolIssuancePolicyBaselineValuesAdditionalExtensionObjectId.Companion.toKotlin(args0)
}),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy