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

GoogleCloudSecuritycenterV2Process

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

Represents an operating system process.

interface GoogleCloudSecuritycenterV2Process {
args?: string[];
argumentsTruncated?: boolean;
envVariablesTruncated?: boolean;
name?: string;
parentPid?: bigint;
pid?: bigint;
}

§Properties

§
args?: string[]
[src]

Process arguments as JSON encoded strings.

§
argumentsTruncated?: boolean
[src]

True if args is incomplete.

§

File information for the process executable.

§

Process environment variables.

§
envVariablesTruncated?: boolean
[src]

True if env_variables is incomplete.

§

File information for libraries loaded by the process.

§
name?: string
[src]

The process name, as displayed in utilities like top and ps. This name can be accessed through /proc/[pid]/comm and changed with prctl(PR_SET_NAME).

§
parentPid?: bigint
[src]

The parent process ID.

§
pid?: bigint
[src]

The process ID.

§

When the process represents the invocation of a script, binary provides information about the interpreter, while script provides information about the script file provided to the interpreter.