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

PosixAccount

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

The POSIX account information associated with a Google account.

interface PosixAccount {
readonly accountId?: string;
gecos?: string;
gid?: bigint;
homeDirectory?: string;
readonly name?: string;
operatingSystemType?: "OPERATING_SYSTEM_TYPE_UNSPECIFIED" | "LINUX" | "WINDOWS";
primary?: boolean;
shell?: string;
systemId?: string;
uid?: bigint;
username?: string;
}

§Properties

§
readonly accountId?: string
[src]

Output only. A POSIX account identifier.

§
gecos?: string
[src]

The GECOS (user information) entry for this account.

§
gid?: bigint
[src]

The default group ID.

§
homeDirectory?: string
[src]

The path to the home directory for this account.

§
readonly name?: string
[src]

Output only. The canonical resource name.

§
operatingSystemType?: "OPERATING_SYSTEM_TYPE_UNSPECIFIED" | "LINUX" | "WINDOWS"
[src]

The operating system type where this account applies.

§
primary?: boolean
[src]

Only one POSIX account can be marked as primary.

§
shell?: string
[src]

The path to the logic shell for this account.

§
systemId?: string
[src]

System identifier for which account the username or uid applies to. By default, the empty value is used.

§
uid?: bigint
[src]

The user ID.

§
username?: string
[src]

The username of the POSIX account.