SshPublicKeyArgs

data class SshPublicKeyArgs(val description: Output<String>? = null, val key: Output<String>? = null) : ConvertibleToJava<SshPublicKeyArgs>

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, key: Output<String>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

Optional. It is used to store the function/usage of the key

Link copied to clipboard
val key: Output<String>? = null

Ssh public key base64 encoded. The format should be: ' ', e.g. ssh-rsa AAAABBBB

Functions

Link copied to clipboard
open override fun toJava(): SshPublicKeyArgs