com.pulumi.gcp.certificateauthority.kotlin.outputs.CertificateConfigSubjectConfigSubjectAltName.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.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property dnsNames Contains only valid, fully-qualified host names.
* @property emailAddresses Contains only valid RFC 2822 E-mail addresses.
* @property ipAddresses Contains only valid 32-bit IPv4 addresses or RFC 4291 IPv6 addresses.
* @property uris Contains only valid RFC 3986 URIs.
*/
public data class CertificateConfigSubjectConfigSubjectAltName(
public val dnsNames: List? = null,
public val emailAddresses: List? = null,
public val ipAddresses: List? = null,
public val uris: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.certificateauthority.outputs.CertificateConfigSubjectConfigSubjectAltName): CertificateConfigSubjectConfigSubjectAltName = CertificateConfigSubjectConfigSubjectAltName(
dnsNames = javaType.dnsNames().map({ args0 -> args0 }),
emailAddresses = javaType.emailAddresses().map({ args0 -> args0 }),
ipAddresses = javaType.ipAddresses().map({ args0 -> args0 }),
uris = javaType.uris().map({ args0 -> args0 }),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy