com.pulumi.azure.keyvault.kotlin.outputs.GetCertificatesCertificate.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.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
*
* @property enabled Whether this certificate is enabled.
* @property id The ID of this certificate.
* @property name The name of certificate.
* @property tags The tags of this certificate.
*/
public data class GetCertificatesCertificate(
public val enabled: Boolean,
public val id: String,
public val name: String,
public val tags: Map,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.keyvault.outputs.GetCertificatesCertificate):
GetCertificatesCertificate = GetCertificatesCertificate(
enabled = javaType.enabled(),
id = javaType.id(),
name = javaType.name(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy