Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SSHKey

import type { SSHKey } from "https://googleapis.deno.dev/v1/baremetalsolution:v2.ts";

An SSH key, used for authorizing with the interactive serial console feature.

interface SSHKey {
readonly name?: string;
publicKey?: string;
}

§Properties

§
readonly name?: string
[src]

Output only. The name of this SSH key. Currently, the only valid value for the location is "global".

§
publicKey?: string
[src]

The public SSH key. This must be in OpenSSH .authorized_keys format.