com.pulumi.azure.keyvault.kotlin.inputs.CertificateCertificatePolicyX509CertificatePropertiesSubjectAlternativeNamesArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.keyvault.kotlin.inputs
import com.pulumi.azure.keyvault.inputs.CertificateCertificatePolicyX509CertificatePropertiesSubjectAlternativeNamesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property dnsNames A list of alternative DNS names (FQDNs) identified by the Certificate.
* @property emails A list of email addresses identified by this Certificate.
* @property upns A list of User Principal Names identified by the Certificate.
*/
public data class CertificateCertificatePolicyX509CertificatePropertiesSubjectAlternativeNamesArgs(
public val dnsNames: Output>? = null,
public val emails: Output>? = null,
public val upns: Output>? = null,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.keyvault.inputs.CertificateCertificatePolicyX509CertificatePropertiesSubjectAlternativeNamesArgs =
com.pulumi.azure.keyvault.inputs.CertificateCertificatePolicyX509CertificatePropertiesSubjectAlternativeNamesArgs.builder()
.dnsNames(dnsNames?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.emails(emails?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.upns(upns?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [CertificateCertificatePolicyX509CertificatePropertiesSubjectAlternativeNamesArgs].
*/
@PulumiTagMarker
public class CertificateCertificatePolicyX509CertificatePropertiesSubjectAlternativeNamesArgsBuilder
internal constructor() {
private var dnsNames: Output>? = null
private var emails: Output>? = null
private var upns: Output>? = null
/**
* @param value A list of alternative DNS names (FQDNs) identified by the Certificate.
*/
@JvmName("vtfwvfjyqxdhuqlx")
public suspend fun dnsNames(`value`: Output>) {
this.dnsNames = value
}
@JvmName("vqoybxqpuafaapfn")
public suspend fun dnsNames(vararg values: Output) {
this.dnsNames = Output.all(values.asList())
}
/**
* @param values A list of alternative DNS names (FQDNs) identified by the Certificate.
*/
@JvmName("husvkkcntoamfqeb")
public suspend fun dnsNames(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy