# frozen_string_literal: true # Copyright 2022 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Auto-generated by gapic-generator-ruby. DO NOT EDIT! module Google module Cloud module SecurityCenter module V1 # Represents an operating system process. # @!attribute [rw] name # @return [::String] # The process name visible in utilities like `top` and `ps`; it can # be accessed via `/proc/[pid]/comm` and changed with `prctl(PR_SET_NAME)`. # @!attribute [rw] binary # @return [::Google::Cloud::SecurityCenter::V1::File] # File information for the process executable. # @!attribute [rw] libraries # @return [::Array<::Google::Cloud::SecurityCenter::V1::File>] # File information for libraries loaded by the process. # @!attribute [rw] script # @return [::Google::Cloud::SecurityCenter::V1::File] # 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. # @!attribute [rw] args # @return [::Array<::String>] # Process arguments as JSON encoded strings. # @!attribute [rw] arguments_truncated # @return [::Boolean] # True if `args` is incomplete. # @!attribute [rw] env_variables # @return [::Array<::Google::Cloud::SecurityCenter::V1::EnvironmentVariable>] # Process environment variables. # @!attribute [rw] env_variables_truncated # @return [::Boolean] # True if `env_variables` is incomplete. # @!attribute [rw] pid # @return [::Integer] # The process id. # @!attribute [rw] parent_pid # @return [::Integer] # The parent process id. class Process include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # EnvironmentVariable is a name-value pair to store environment variables for # Process. # @!attribute [rw] name # @return [::String] # Environment variable name as a JSON encoded string. # @!attribute [rw] val # @return [::String] # Environment variable value as a JSON encoded string. class EnvironmentVariable include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end end end end