All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.securitycenter.v1.ProcessOrBuilder Maven / Gradle / Ivy

There is a newer version: 2.62.0
Show newest version
/*
 * Copyright 2024 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.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/securitycenter/v1/process.proto

// Protobuf Java Version: 3.25.3
package com.google.cloud.securitycenter.v1;

public interface ProcessOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.securitycenter.v1.Process)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * 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)`.
   * 
* * string name = 12; * * @return The name. */ java.lang.String getName(); /** * * *
   * 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)`.
   * 
* * string name = 12; * * @return The bytes for name. */ com.google.protobuf.ByteString getNameBytes(); /** * * *
   * File information for the process executable.
   * 
* * .google.cloud.securitycenter.v1.File binary = 3; * * @return Whether the binary field is set. */ boolean hasBinary(); /** * * *
   * File information for the process executable.
   * 
* * .google.cloud.securitycenter.v1.File binary = 3; * * @return The binary. */ com.google.cloud.securitycenter.v1.File getBinary(); /** * * *
   * File information for the process executable.
   * 
* * .google.cloud.securitycenter.v1.File binary = 3; */ com.google.cloud.securitycenter.v1.FileOrBuilder getBinaryOrBuilder(); /** * * *
   * File information for libraries loaded by the process.
   * 
* * repeated .google.cloud.securitycenter.v1.File libraries = 4; */ java.util.List getLibrariesList(); /** * * *
   * File information for libraries loaded by the process.
   * 
* * repeated .google.cloud.securitycenter.v1.File libraries = 4; */ com.google.cloud.securitycenter.v1.File getLibraries(int index); /** * * *
   * File information for libraries loaded by the process.
   * 
* * repeated .google.cloud.securitycenter.v1.File libraries = 4; */ int getLibrariesCount(); /** * * *
   * File information for libraries loaded by the process.
   * 
* * repeated .google.cloud.securitycenter.v1.File libraries = 4; */ java.util.List getLibrariesOrBuilderList(); /** * * *
   * File information for libraries loaded by the process.
   * 
* * repeated .google.cloud.securitycenter.v1.File libraries = 4; */ com.google.cloud.securitycenter.v1.FileOrBuilder getLibrariesOrBuilder(int index); /** * * *
   * 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.
   * 
* * .google.cloud.securitycenter.v1.File script = 5; * * @return Whether the script field is set. */ boolean hasScript(); /** * * *
   * 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.
   * 
* * .google.cloud.securitycenter.v1.File script = 5; * * @return The script. */ com.google.cloud.securitycenter.v1.File getScript(); /** * * *
   * 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.
   * 
* * .google.cloud.securitycenter.v1.File script = 5; */ com.google.cloud.securitycenter.v1.FileOrBuilder getScriptOrBuilder(); /** * * *
   * Process arguments as JSON encoded strings.
   * 
* * repeated string args = 6; * * @return A list containing the args. */ java.util.List getArgsList(); /** * * *
   * Process arguments as JSON encoded strings.
   * 
* * repeated string args = 6; * * @return The count of args. */ int getArgsCount(); /** * * *
   * Process arguments as JSON encoded strings.
   * 
* * repeated string args = 6; * * @param index The index of the element to return. * @return The args at the given index. */ java.lang.String getArgs(int index); /** * * *
   * Process arguments as JSON encoded strings.
   * 
* * repeated string args = 6; * * @param index The index of the value to return. * @return The bytes of the args at the given index. */ com.google.protobuf.ByteString getArgsBytes(int index); /** * * *
   * True if `args` is incomplete.
   * 
* * bool arguments_truncated = 7; * * @return The argumentsTruncated. */ boolean getArgumentsTruncated(); /** * * *
   * Process environment variables.
   * 
* * repeated .google.cloud.securitycenter.v1.EnvironmentVariable env_variables = 8; */ java.util.List getEnvVariablesList(); /** * * *
   * Process environment variables.
   * 
* * repeated .google.cloud.securitycenter.v1.EnvironmentVariable env_variables = 8; */ com.google.cloud.securitycenter.v1.EnvironmentVariable getEnvVariables(int index); /** * * *
   * Process environment variables.
   * 
* * repeated .google.cloud.securitycenter.v1.EnvironmentVariable env_variables = 8; */ int getEnvVariablesCount(); /** * * *
   * Process environment variables.
   * 
* * repeated .google.cloud.securitycenter.v1.EnvironmentVariable env_variables = 8; */ java.util.List getEnvVariablesOrBuilderList(); /** * * *
   * Process environment variables.
   * 
* * repeated .google.cloud.securitycenter.v1.EnvironmentVariable env_variables = 8; */ com.google.cloud.securitycenter.v1.EnvironmentVariableOrBuilder getEnvVariablesOrBuilder( int index); /** * * *
   * True if `env_variables` is incomplete.
   * 
* * bool env_variables_truncated = 9; * * @return The envVariablesTruncated. */ boolean getEnvVariablesTruncated(); /** * * *
   * The process ID.
   * 
* * int64 pid = 10; * * @return The pid. */ long getPid(); /** * * *
   * The parent process ID.
   * 
* * int64 parent_pid = 11; * * @return The parentPid. */ long getParentPid(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy