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

com.pulumi.azure.cdn.kotlin.outputs.FrontdoorSecretSecretCustomerCertificate.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: 6.15.0.0
Show newest version
@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