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

com.pulumi.azure.keyvault.kotlin.outputs.CertifiateCertificateAttribute.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.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 CertifiateCertificateAttribute(
    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.CertifiateCertificateAttribute): CertifiateCertificateAttribute = CertifiateCertificateAttribute(
            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