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

com.pulumi.digitalocean.kotlin.outputs.GetSshKeyResult.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: 4.38.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.digitalocean.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getSshKey.
 * @property fingerprint The fingerprint of the public key of the ssh key.
 * @property id The ID of the ssh key.
 * @property name
 * @property publicKey The public key of the ssh key.
 */
public data class GetSshKeyResult(
    public val fingerprint: String,
    public val id: Int,
    public val name: String,
    public val publicKey: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.digitalocean.outputs.GetSshKeyResult): GetSshKeyResult = GetSshKeyResult(
            fingerprint = javaType.fingerprint(),
            id = javaType.id(),
            name = javaType.name(),
            publicKey = javaType.publicKey(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy