
com.pulumi.azure.keyvault.kotlin.outputs.CertificateCertificateAttribute.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.keyvault.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property created The create time of the Key Vault Certificate.
* @property enabled whether the Key Vault Certificate is enabled.
* @property expires The expires time of the Key Vault Certificate.
* @property notBefore The not before valid time of the Key Vault Certificate.
* @property recoveryLevel The deletion recovery level of the Key Vault Certificate.
* @property updated The recent update time of the Key Vault Certificate.
*/
public data class CertificateCertificateAttribute(
public val created: String? = null,
public val enabled: Boolean? = null,
public val expires: String? = null,
public val notBefore: String? = null,
public val recoveryLevel: String? = null,
public val updated: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.keyvault.outputs.CertificateCertificateAttribute): CertificateCertificateAttribute = CertificateCertificateAttribute(
created = javaType.created().map({ args0 -> args0 }).orElse(null),
enabled = javaType.enabled().map({ args0 -> args0 }).orElse(null),
expires = javaType.expires().map({ args0 -> args0 }).orElse(null),
notBefore = javaType.notBefore().map({ args0 -> args0 }).orElse(null),
recoveryLevel = javaType.recoveryLevel().map({ args0 -> args0 }).orElse(null),
updated = javaType.updated().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy