proto_docs/google/cloud/securitycenter/v1/process.rb in google-cloud-security_center-v1-0.29.1 vs proto_docs/google/cloud/securitycenter/v1/process.rb in google-cloud-security_center-v1-0.30.0

- old
+ new

@@ -22,24 +22,24 @@ 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)`. + # 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)`. # @!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. + # 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] @@ -50,20 +50,20 @@ # @!attribute [rw] env_variables_truncated # @return [::Boolean] # True if `env_variables` is incomplete. # @!attribute [rw] pid # @return [::Integer] - # The process id. + # The process ID. # @!attribute [rw] parent_pid # @return [::Integer] - # The parent process id. + # 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. + # A name-value pair representing an environment variable used in an operating + # system process. # @!attribute [rw] name # @return [::String] # Environment variable name as a JSON encoded string. # @!attribute [rw] val # @return [::String]