GoogleApi.SecurityCenter.V1.Model.GoogleCloudSecuritycenterV2Process (google_api_security_center v0.39.0)
View SourceRepresents an operating system process.
Attributes
-
args(type:list(String.t), default:nil) - Process arguments as JSON encoded strings. -
argumentsTruncated(type:boolean(), default:nil) - True ifargsis incomplete. -
binary(type:GoogleApi.SecurityCenter.V1.Model.GoogleCloudSecuritycenterV2File.t, default:nil) - File information for the process executable. -
envVariables(type:list(GoogleApi.SecurityCenter.V1.Model.GoogleCloudSecuritycenterV2EnvironmentVariable.t), default:nil) - Process environment variables. -
envVariablesTruncated(type:boolean(), default:nil) - True ifenv_variablesis incomplete. -
libraries(type:list(GoogleApi.SecurityCenter.V1.Model.GoogleCloudSecuritycenterV2File.t), default:nil) - File information for libraries loaded by the process. -
name(type:String.t, default:nil) - The process name, as displayed in utilities liketopandps. This name can be accessed through/proc/[pid]/command changed withprctl(PR_SET_NAME). -
parentPid(type:String.t, default:nil) - The parent process ID. -
pid(type:String.t, default:nil) - The process ID. -
script(type:GoogleApi.SecurityCenter.V1.Model.GoogleCloudSecuritycenterV2File.t, default:nil) - When the process represents the invocation of a script,binaryprovides information about the interpreter, whilescriptprovides information about the script file provided to the interpreter.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.SecurityCenter.V1.Model.GoogleCloudSecuritycenterV2Process{ args: [String.t()] | nil, argumentsTruncated: boolean() | nil, binary: GoogleApi.SecurityCenter.V1.Model.GoogleCloudSecuritycenterV2File.t() | nil, envVariables: [ GoogleApi.SecurityCenter.V1.Model.GoogleCloudSecuritycenterV2EnvironmentVariable.t() ] | nil, envVariablesTruncated: boolean() | nil, libraries: [GoogleApi.SecurityCenter.V1.Model.GoogleCloudSecuritycenterV2File.t()] | nil, name: String.t() | nil, parentPid: String.t() | nil, pid: String.t() | nil, script: GoogleApi.SecurityCenter.V1.Model.GoogleCloudSecuritycenterV2File.t() | nil }