ComputeInstanceSshArgs

data class ComputeInstanceSshArgs(val port: Output<Int>? = null, val publicKey: Output<String>, val username: Output<String>? = null) : ConvertibleToJava<ComputeInstanceSshArgs>

Constructors

Link copied to clipboard
constructor(port: Output<Int>? = null, publicKey: Output<String>, username: Output<String>? = null)

Properties

Link copied to clipboard
val port: Output<Int>? = null

Describes the port for connecting through SSH.

Link copied to clipboard
val publicKey: Output<String>

Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.

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

The admin username of this Machine Learning Compute Instance.

Functions

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