![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.digitalocean.kotlin.outputs.GetSshKeyResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-digitalocean-kotlin Show documentation
Show all versions of pulumi-digitalocean-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.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