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

com.pulumi.azure.batch.kotlin.outputs.GetCertificateResult.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.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.batch.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getCertificate.
 * @property accountName
 * @property format The format of the certificate, such as `Cer` or `Pfx`.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property name
 * @property publicData The public key of the certificate.
 * @property resourceGroupName
 * @property thumbprint The thumbprint of the certificate.
 * @property thumbprintAlgorithm The algorithm of the certificate thumbprint.
 */
public data class GetCertificateResult(
    public val accountName: String,
    public val format: String,
    public val id: String,
    public val name: String,
    public val publicData: String,
    public val resourceGroupName: String,
    public val thumbprint: String,
    public val thumbprintAlgorithm: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetCertificateResult):
            GetCertificateResult = GetCertificateResult(
            accountName = javaType.accountName(),
            format = javaType.format(),
            id = javaType.id(),
            name = javaType.name(),
            publicData = javaType.publicData(),
            resourceGroupName = javaType.resourceGroupName(),
            thumbprint = javaType.thumbprint(),
            thumbprintAlgorithm = javaType.thumbprintAlgorithm(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy