![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.cdn.kotlin.outputs.FrontdoorSecretSecretCustomerCertificate.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.cdn.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property keyVaultCertificateId The ID of the Key Vault certificate resource to use. Changing this forces a new Front Door Secret to be created.
* ->**NOTE:** If you would like to use the **latest version** of the Key Vault Certificate use the Key Vault Certificates `versionless_id` attribute as the `key_vault_certificate_id` fields value(e.g. `key_vault_certificate_id = azurerm_key_vault_certificate.example.versionless_id`).
* @property subjectAlternativeNames One or more `subject alternative names` contained within the key vault certificate.
*/
public data class FrontdoorSecretSecretCustomerCertificate(
public val keyVaultCertificateId: String,
public val subjectAlternativeNames: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.cdn.outputs.FrontdoorSecretSecretCustomerCertificate): FrontdoorSecretSecretCustomerCertificate = FrontdoorSecretSecretCustomerCertificate(
keyVaultCertificateId = javaType.keyVaultCertificateId(),
subjectAlternativeNames = javaType.subjectAlternativeNames().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy