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

com.pulumi.azure.keyvault.kotlin.outputs.GetCertificateCertificatePolicyKeyProperty.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.21.0.0
Show newest version
@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