![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.keyvault.kotlin.outputs.GetCertificateCertificatePolicyX509CertificateProperty.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.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property extendedKeyUsages A list of Extended/Enhanced Key Usages.
* @property keyUsages A list of uses associated with this Key.
* @property subject The Certificate's Subject.
* @property subjectAlternativeNames A `subject_alternative_names` block as defined below.
* @property validityInMonths The Certificates Validity Period in Months.
*/
public data class GetCertificateCertificatePolicyX509CertificateProperty(
public val extendedKeyUsages: List,
public val keyUsages: List,
public val subject: String,
public val subjectAlternativeNames: List,
public val validityInMonths: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.keyvault.outputs.GetCertificateCertificatePolicyX509CertificateProperty): GetCertificateCertificatePolicyX509CertificateProperty =
GetCertificateCertificatePolicyX509CertificateProperty(
extendedKeyUsages = javaType.extendedKeyUsages().map({ args0 -> args0 }),
keyUsages = javaType.keyUsages().map({ args0 -> args0 }),
subject = javaType.subject(),
subjectAlternativeNames = javaType.subjectAlternativeNames().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.keyvault.kotlin.outputs.GetCertificateCertificatePolicyX509CertificatePropertySubjectAlternativeName.Companion.toKotlin(args0)
})
}),
validityInMonths = javaType.validityInMonths(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy