Google Cloud Security Command Center v1 API - Class Process (3.20.0)

public sealed class Process : IMessage<Process>, IEquatable<Process>, IDeepCloneable<Process>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Security Command Center v1 API class Process.

Represents an operating system process.

Inheritance

object > Process

Namespace

Google.Cloud.SecurityCenter.V1

Assembly

Google.Cloud.SecurityCenter.V1.dll

Constructors

Process()

public Process()

Process(Process)

public Process(Process other)
Parameter
NameDescription
otherProcess

Properties

Args

public RepeatedField<string> Args { get; }

Process arguments as JSON encoded strings.

Property Value
TypeDescription
RepeatedFieldstring

ArgumentsTruncated

public bool ArgumentsTruncated { get; set; }

True if args is incomplete.

Property Value
TypeDescription
bool

Binary

public File Binary { get; set; }

File information for the process executable.

Property Value
TypeDescription
File

EnvVariables

public RepeatedField<EnvironmentVariable> EnvVariables { get; }

Process environment variables.

Property Value
TypeDescription
RepeatedFieldEnvironmentVariable

EnvVariablesTruncated

public bool EnvVariablesTruncated { get; set; }

True if env_variables is incomplete.

Property Value
TypeDescription
bool

Libraries

public RepeatedField<File> Libraries { get; }

File information for libraries loaded by the process.

Property Value
TypeDescription
RepeatedFieldFile

Name

public string Name { get; set; }

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).

Property Value
TypeDescription
string

ParentPid

public long ParentPid { get; set; }

The parent process ID.

Property Value
TypeDescription
long

Pid

public long Pid { get; set; }

The process ID.

Property Value
TypeDescription
long

Script

public File Script { get; set; }

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.

Property Value
TypeDescription
File