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

RunningProcess

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

Guest OS running process details.

interface RunningProcess {
attributes?: {
[key: string]: string;
}
;
cmdline?: string;
exePath?: string;
pid?: bigint;
user?: string;
}

§Properties

§
attributes?: {
[key: string]: string;
}
[src]

Process extended attributes.

§
cmdline?: string
[src]

Process full command line.

§
exePath?: string
[src]

Process binary path.

§
pid?: bigint
[src]

Process ID.

§
user?: string
[src]

User running the process.