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

LoginProfile

import type { LoginProfile } from "https://googleapis.deno.dev/v1/oslogin:v1.ts";

The user profile information used for logging in to a virtual machine on Google Compute Engine.

interface LoginProfile {
name?: string;
posixAccounts?: PosixAccount[];
sshPublicKeys?: {
[key: string]: SshPublicKey;
}
;
}

§Properties

§
name?: string
[src]

Required. A unique user ID.

§
posixAccounts?: PosixAccount[]
[src]

The list of POSIX accounts associated with the user.

§
sshPublicKeys?: {
[key: string]: SshPublicKey;
}
[src]

A map from SSH public key fingerprint to the associated key object.