All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.certificateauthority.kotlin.outputs.CertificateCertificateDescriptionSubjectDescriptionSubjectAltNameCustomSan.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.certificateauthority.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property critical (Output)
 * Indicates whether or not the name constraints are marked critical.
 * @property obectIds (Output)
 * Describes how some of the technical fields in a certificate should be populated.
 * Structure is documented below.
 * @property value The value of this X.509 extension. A base64-encoded string.
 */
public data class CertificateCertificateDescriptionSubjectDescriptionSubjectAltNameCustomSan(
    public val critical: Boolean? = null,
    public val obectIds: List? =
        null,
    public val `value`: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.certificateauthority.outputs.CertificateCertificateDescriptionSubjectDescriptionSubjectAltNameCustomSan): CertificateCertificateDescriptionSubjectDescriptionSubjectAltNameCustomSan =
            CertificateCertificateDescriptionSubjectDescriptionSubjectAltNameCustomSan(
                critical = javaType.critical().map({ args0 -> args0 }).orElse(null),
                obectIds = javaType.obectIds().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.gcp.certificateauthority.kotlin.outputs.CertificateCertificateDescriptionSubjectDescriptionSubjectAltNameCustomSanObectId.Companion.toKotlin(args0)
                    })
                }),
                `value` = javaType.`value`().map({ args0 -> args0 }).orElse(null),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy