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

RunningService

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

Guest OS running service details.

interface RunningService {
cmdline?: string;
exePath?: string;
pid?: bigint;
serviceName?: string;
startMode?:
| "START_MODE_UNSPECIFIED"
| "BOOT"
| "SYSTEM"
| "AUTO"
| "MANUAL"
| "DISABLED";
state?:
| "STATE_UNSPECIFIED"
| "ACTIVE"
| "PAUSED"
| "STOPPED";
}

§Properties

§
cmdline?: string
[src]

Service command line.

§
exePath?: string
[src]

Service binary path.

§
pid?: bigint
[src]

Service pid.

§
serviceName?: string
[src]

Service name.

§
startMode?: "START_MODE_UNSPECIFIED" | "BOOT" | "SYSTEM" | "AUTO" | "MANUAL" | "DISABLED"
[src]

Service start mode (OS-agnostic).

§
state?: "STATE_UNSPECIFIED" | "ACTIVE" | "PAUSED" | "STOPPED"
[src]

Service state (OS-agnostic).