
com.pulumi.azure.keyvault.kotlin.outputs.GetCertificateCertificatePolicyKeyProperty.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.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property curve
* @property exportable Is this Certificate Exportable?
* @property keySize The size of the Key used in the Certificate.
* @property keyType Specifies the Type of Key, for example `RSA`.
* @property reuseKey Is the key reusable?
*/
public data class GetCertificateCertificatePolicyKeyProperty(
public val curve: String,
public val exportable: Boolean,
public val keySize: Int,
public val keyType: String,
public val reuseKey: Boolean,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.keyvault.outputs.GetCertificateCertificatePolicyKeyProperty):
GetCertificateCertificatePolicyKeyProperty = GetCertificateCertificatePolicyKeyProperty(
curve = javaType.curve(),
exportable = javaType.exportable(),
keySize = javaType.keySize(),
keyType = javaType.keyType(),
reuseKey = javaType.reuseKey(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy