com.google.cloud.securitycenter.v2.Process Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-securitycenter-v2 Show documentation
Show all versions of proto-google-cloud-securitycenter-v2 Show documentation
Proto library for google-cloud-securitycenter
/*
* 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/v2/process.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.securitycenter.v2;
/**
*
*
*
* Represents an operating system process.
*
*
* Protobuf type {@code google.cloud.securitycenter.v2.Process}
*/
public final class Process extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.securitycenter.v2.Process)
ProcessOrBuilder {
private static final long serialVersionUID = 0L;
// Use Process.newBuilder() to construct.
private Process(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Process() {
name_ = "";
libraries_ = java.util.Collections.emptyList();
args_ = com.google.protobuf.LazyStringArrayList.emptyList();
envVariables_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new Process();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.securitycenter.v2.ProcessProto
.internal_static_google_cloud_securitycenter_v2_Process_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.securitycenter.v2.ProcessProto
.internal_static_google_cloud_securitycenter_v2_Process_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.securitycenter.v2.Process.class,
com.google.cloud.securitycenter.v2.Process.Builder.class);
}
private int bitField0_;
public static final int NAME_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object 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)`.
*
*
* string name = 1;
*
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
}
}
/**
*
*
*
* 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 = 1;
*
* @return The bytes for name.
*/
@java.lang.Override
public com.google.protobuf.ByteString getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int BINARY_FIELD_NUMBER = 2;
private com.google.cloud.securitycenter.v2.File binary_;
/**
*
*
*
* File information for the process executable.
*
*
* .google.cloud.securitycenter.v2.File binary = 2;
*
* @return Whether the binary field is set.
*/
@java.lang.Override
public boolean hasBinary() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* File information for the process executable.
*
*
* .google.cloud.securitycenter.v2.File binary = 2;
*
* @return The binary.
*/
@java.lang.Override
public com.google.cloud.securitycenter.v2.File getBinary() {
return binary_ == null ? com.google.cloud.securitycenter.v2.File.getDefaultInstance() : binary_;
}
/**
*
*
*
* File information for the process executable.
*
*
* .google.cloud.securitycenter.v2.File binary = 2;
*/
@java.lang.Override
public com.google.cloud.securitycenter.v2.FileOrBuilder getBinaryOrBuilder() {
return binary_ == null ? com.google.cloud.securitycenter.v2.File.getDefaultInstance() : binary_;
}
public static final int LIBRARIES_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private java.util.List libraries_;
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
@java.lang.Override
public java.util.List getLibrariesList() {
return libraries_;
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
@java.lang.Override
public java.util.List extends com.google.cloud.securitycenter.v2.FileOrBuilder>
getLibrariesOrBuilderList() {
return libraries_;
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
@java.lang.Override
public int getLibrariesCount() {
return libraries_.size();
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
@java.lang.Override
public com.google.cloud.securitycenter.v2.File getLibraries(int index) {
return libraries_.get(index);
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
@java.lang.Override
public com.google.cloud.securitycenter.v2.FileOrBuilder getLibrariesOrBuilder(int index) {
return libraries_.get(index);
}
public static final int SCRIPT_FIELD_NUMBER = 4;
private com.google.cloud.securitycenter.v2.File script_;
/**
*
*
*
* 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.v2.File script = 4;
*
* @return Whether the script field is set.
*/
@java.lang.Override
public boolean hasScript() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* 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.v2.File script = 4;
*
* @return The script.
*/
@java.lang.Override
public com.google.cloud.securitycenter.v2.File getScript() {
return script_ == null ? com.google.cloud.securitycenter.v2.File.getDefaultInstance() : script_;
}
/**
*
*
*
* 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.v2.File script = 4;
*/
@java.lang.Override
public com.google.cloud.securitycenter.v2.FileOrBuilder getScriptOrBuilder() {
return script_ == null ? com.google.cloud.securitycenter.v2.File.getDefaultInstance() : script_;
}
public static final int ARGS_FIELD_NUMBER = 5;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList args_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @return A list containing the args.
*/
public com.google.protobuf.ProtocolStringList getArgsList() {
return args_;
}
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @return The count of args.
*/
public int getArgsCount() {
return args_.size();
}
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @param index The index of the element to return.
* @return The args at the given index.
*/
public java.lang.String getArgs(int index) {
return args_.get(index);
}
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @param index The index of the value to return.
* @return The bytes of the args at the given index.
*/
public com.google.protobuf.ByteString getArgsBytes(int index) {
return args_.getByteString(index);
}
public static final int ARGUMENTS_TRUNCATED_FIELD_NUMBER = 6;
private boolean argumentsTruncated_ = false;
/**
*
*
*
* True if `args` is incomplete.
*
*
* bool arguments_truncated = 6;
*
* @return The argumentsTruncated.
*/
@java.lang.Override
public boolean getArgumentsTruncated() {
return argumentsTruncated_;
}
public static final int ENV_VARIABLES_FIELD_NUMBER = 7;
@SuppressWarnings("serial")
private java.util.List envVariables_;
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
@java.lang.Override
public java.util.List
getEnvVariablesList() {
return envVariables_;
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
@java.lang.Override
public java.util.List extends com.google.cloud.securitycenter.v2.EnvironmentVariableOrBuilder>
getEnvVariablesOrBuilderList() {
return envVariables_;
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
@java.lang.Override
public int getEnvVariablesCount() {
return envVariables_.size();
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
@java.lang.Override
public com.google.cloud.securitycenter.v2.EnvironmentVariable getEnvVariables(int index) {
return envVariables_.get(index);
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
@java.lang.Override
public com.google.cloud.securitycenter.v2.EnvironmentVariableOrBuilder getEnvVariablesOrBuilder(
int index) {
return envVariables_.get(index);
}
public static final int ENV_VARIABLES_TRUNCATED_FIELD_NUMBER = 8;
private boolean envVariablesTruncated_ = false;
/**
*
*
*
* True if `env_variables` is incomplete.
*
*
* bool env_variables_truncated = 8;
*
* @return The envVariablesTruncated.
*/
@java.lang.Override
public boolean getEnvVariablesTruncated() {
return envVariablesTruncated_;
}
public static final int PID_FIELD_NUMBER = 9;
private long pid_ = 0L;
/**
*
*
*
* The process ID.
*
*
* int64 pid = 9;
*
* @return The pid.
*/
@java.lang.Override
public long getPid() {
return pid_;
}
public static final int PARENT_PID_FIELD_NUMBER = 10;
private long parentPid_ = 0L;
/**
*
*
*
* The parent process ID.
*
*
* int64 parent_pid = 10;
*
* @return The parentPid.
*/
@java.lang.Override
public long getParentPid() {
return parentPid_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_);
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(2, getBinary());
}
for (int i = 0; i < libraries_.size(); i++) {
output.writeMessage(3, libraries_.get(i));
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(4, getScript());
}
for (int i = 0; i < args_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, args_.getRaw(i));
}
if (argumentsTruncated_ != false) {
output.writeBool(6, argumentsTruncated_);
}
for (int i = 0; i < envVariables_.size(); i++) {
output.writeMessage(7, envVariables_.get(i));
}
if (envVariablesTruncated_ != false) {
output.writeBool(8, envVariablesTruncated_);
}
if (pid_ != 0L) {
output.writeInt64(9, pid_);
}
if (parentPid_ != 0L) {
output.writeInt64(10, parentPid_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_);
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getBinary());
}
for (int i = 0; i < libraries_.size(); i++) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, libraries_.get(i));
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, getScript());
}
{
int dataSize = 0;
for (int i = 0; i < args_.size(); i++) {
dataSize += computeStringSizeNoTag(args_.getRaw(i));
}
size += dataSize;
size += 1 * getArgsList().size();
}
if (argumentsTruncated_ != false) {
size += com.google.protobuf.CodedOutputStream.computeBoolSize(6, argumentsTruncated_);
}
for (int i = 0; i < envVariables_.size(); i++) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(7, envVariables_.get(i));
}
if (envVariablesTruncated_ != false) {
size += com.google.protobuf.CodedOutputStream.computeBoolSize(8, envVariablesTruncated_);
}
if (pid_ != 0L) {
size += com.google.protobuf.CodedOutputStream.computeInt64Size(9, pid_);
}
if (parentPid_ != 0L) {
size += com.google.protobuf.CodedOutputStream.computeInt64Size(10, parentPid_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.securitycenter.v2.Process)) {
return super.equals(obj);
}
com.google.cloud.securitycenter.v2.Process other =
(com.google.cloud.securitycenter.v2.Process) obj;
if (!getName().equals(other.getName())) return false;
if (hasBinary() != other.hasBinary()) return false;
if (hasBinary()) {
if (!getBinary().equals(other.getBinary())) return false;
}
if (!getLibrariesList().equals(other.getLibrariesList())) return false;
if (hasScript() != other.hasScript()) return false;
if (hasScript()) {
if (!getScript().equals(other.getScript())) return false;
}
if (!getArgsList().equals(other.getArgsList())) return false;
if (getArgumentsTruncated() != other.getArgumentsTruncated()) return false;
if (!getEnvVariablesList().equals(other.getEnvVariablesList())) return false;
if (getEnvVariablesTruncated() != other.getEnvVariablesTruncated()) return false;
if (getPid() != other.getPid()) return false;
if (getParentPid() != other.getParentPid()) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
if (hasBinary()) {
hash = (37 * hash) + BINARY_FIELD_NUMBER;
hash = (53 * hash) + getBinary().hashCode();
}
if (getLibrariesCount() > 0) {
hash = (37 * hash) + LIBRARIES_FIELD_NUMBER;
hash = (53 * hash) + getLibrariesList().hashCode();
}
if (hasScript()) {
hash = (37 * hash) + SCRIPT_FIELD_NUMBER;
hash = (53 * hash) + getScript().hashCode();
}
if (getArgsCount() > 0) {
hash = (37 * hash) + ARGS_FIELD_NUMBER;
hash = (53 * hash) + getArgsList().hashCode();
}
hash = (37 * hash) + ARGUMENTS_TRUNCATED_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getArgumentsTruncated());
if (getEnvVariablesCount() > 0) {
hash = (37 * hash) + ENV_VARIABLES_FIELD_NUMBER;
hash = (53 * hash) + getEnvVariablesList().hashCode();
}
hash = (37 * hash) + ENV_VARIABLES_TRUNCATED_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getEnvVariablesTruncated());
hash = (37 * hash) + PID_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getPid());
hash = (37 * hash) + PARENT_PID_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getParentPid());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.securitycenter.v2.Process parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.securitycenter.v2.Process parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.securitycenter.v2.Process parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.securitycenter.v2.Process parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.securitycenter.v2.Process parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.securitycenter.v2.Process parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.securitycenter.v2.Process parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.securitycenter.v2.Process parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.securitycenter.v2.Process parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.securitycenter.v2.Process parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.securitycenter.v2.Process parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.securitycenter.v2.Process parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.cloud.securitycenter.v2.Process prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Represents an operating system process.
*
*
* Protobuf type {@code google.cloud.securitycenter.v2.Process}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.securitycenter.v2.Process)
com.google.cloud.securitycenter.v2.ProcessOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.securitycenter.v2.ProcessProto
.internal_static_google_cloud_securitycenter_v2_Process_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.securitycenter.v2.ProcessProto
.internal_static_google_cloud_securitycenter_v2_Process_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.securitycenter.v2.Process.class,
com.google.cloud.securitycenter.v2.Process.Builder.class);
}
// Construct using com.google.cloud.securitycenter.v2.Process.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getBinaryFieldBuilder();
getLibrariesFieldBuilder();
getScriptFieldBuilder();
getEnvVariablesFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
name_ = "";
binary_ = null;
if (binaryBuilder_ != null) {
binaryBuilder_.dispose();
binaryBuilder_ = null;
}
if (librariesBuilder_ == null) {
libraries_ = java.util.Collections.emptyList();
} else {
libraries_ = null;
librariesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
script_ = null;
if (scriptBuilder_ != null) {
scriptBuilder_.dispose();
scriptBuilder_ = null;
}
args_ = com.google.protobuf.LazyStringArrayList.emptyList();
argumentsTruncated_ = false;
if (envVariablesBuilder_ == null) {
envVariables_ = java.util.Collections.emptyList();
} else {
envVariables_ = null;
envVariablesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000040);
envVariablesTruncated_ = false;
pid_ = 0L;
parentPid_ = 0L;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.securitycenter.v2.ProcessProto
.internal_static_google_cloud_securitycenter_v2_Process_descriptor;
}
@java.lang.Override
public com.google.cloud.securitycenter.v2.Process getDefaultInstanceForType() {
return com.google.cloud.securitycenter.v2.Process.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.securitycenter.v2.Process build() {
com.google.cloud.securitycenter.v2.Process result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.securitycenter.v2.Process buildPartial() {
com.google.cloud.securitycenter.v2.Process result =
new com.google.cloud.securitycenter.v2.Process(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartialRepeatedFields(com.google.cloud.securitycenter.v2.Process result) {
if (librariesBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)) {
libraries_ = java.util.Collections.unmodifiableList(libraries_);
bitField0_ = (bitField0_ & ~0x00000004);
}
result.libraries_ = libraries_;
} else {
result.libraries_ = librariesBuilder_.build();
}
if (envVariablesBuilder_ == null) {
if (((bitField0_ & 0x00000040) != 0)) {
envVariables_ = java.util.Collections.unmodifiableList(envVariables_);
bitField0_ = (bitField0_ & ~0x00000040);
}
result.envVariables_ = envVariables_;
} else {
result.envVariables_ = envVariablesBuilder_.build();
}
}
private void buildPartial0(com.google.cloud.securitycenter.v2.Process result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.name_ = name_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000002) != 0)) {
result.binary_ = binaryBuilder_ == null ? binary_ : binaryBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.script_ = scriptBuilder_ == null ? script_ : scriptBuilder_.build();
to_bitField0_ |= 0x00000002;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
args_.makeImmutable();
result.args_ = args_;
}
if (((from_bitField0_ & 0x00000020) != 0)) {
result.argumentsTruncated_ = argumentsTruncated_;
}
if (((from_bitField0_ & 0x00000080) != 0)) {
result.envVariablesTruncated_ = envVariablesTruncated_;
}
if (((from_bitField0_ & 0x00000100) != 0)) {
result.pid_ = pid_;
}
if (((from_bitField0_ & 0x00000200) != 0)) {
result.parentPid_ = parentPid_;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.securitycenter.v2.Process) {
return mergeFrom((com.google.cloud.securitycenter.v2.Process) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.securitycenter.v2.Process other) {
if (other == com.google.cloud.securitycenter.v2.Process.getDefaultInstance()) return this;
if (!other.getName().isEmpty()) {
name_ = other.name_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.hasBinary()) {
mergeBinary(other.getBinary());
}
if (librariesBuilder_ == null) {
if (!other.libraries_.isEmpty()) {
if (libraries_.isEmpty()) {
libraries_ = other.libraries_;
bitField0_ = (bitField0_ & ~0x00000004);
} else {
ensureLibrariesIsMutable();
libraries_.addAll(other.libraries_);
}
onChanged();
}
} else {
if (!other.libraries_.isEmpty()) {
if (librariesBuilder_.isEmpty()) {
librariesBuilder_.dispose();
librariesBuilder_ = null;
libraries_ = other.libraries_;
bitField0_ = (bitField0_ & ~0x00000004);
librariesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
? getLibrariesFieldBuilder()
: null;
} else {
librariesBuilder_.addAllMessages(other.libraries_);
}
}
}
if (other.hasScript()) {
mergeScript(other.getScript());
}
if (!other.args_.isEmpty()) {
if (args_.isEmpty()) {
args_ = other.args_;
bitField0_ |= 0x00000010;
} else {
ensureArgsIsMutable();
args_.addAll(other.args_);
}
onChanged();
}
if (other.getArgumentsTruncated() != false) {
setArgumentsTruncated(other.getArgumentsTruncated());
}
if (envVariablesBuilder_ == null) {
if (!other.envVariables_.isEmpty()) {
if (envVariables_.isEmpty()) {
envVariables_ = other.envVariables_;
bitField0_ = (bitField0_ & ~0x00000040);
} else {
ensureEnvVariablesIsMutable();
envVariables_.addAll(other.envVariables_);
}
onChanged();
}
} else {
if (!other.envVariables_.isEmpty()) {
if (envVariablesBuilder_.isEmpty()) {
envVariablesBuilder_.dispose();
envVariablesBuilder_ = null;
envVariables_ = other.envVariables_;
bitField0_ = (bitField0_ & ~0x00000040);
envVariablesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
? getEnvVariablesFieldBuilder()
: null;
} else {
envVariablesBuilder_.addAllMessages(other.envVariables_);
}
}
}
if (other.getEnvVariablesTruncated() != false) {
setEnvVariablesTruncated(other.getEnvVariablesTruncated());
}
if (other.getPid() != 0L) {
setPid(other.getPid());
}
if (other.getParentPid() != 0L) {
setParentPid(other.getParentPid());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
name_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
input.readMessage(getBinaryFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
case 26:
{
com.google.cloud.securitycenter.v2.File m =
input.readMessage(
com.google.cloud.securitycenter.v2.File.parser(), extensionRegistry);
if (librariesBuilder_ == null) {
ensureLibrariesIsMutable();
libraries_.add(m);
} else {
librariesBuilder_.addMessage(m);
}
break;
} // case 26
case 34:
{
input.readMessage(getScriptFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000008;
break;
} // case 34
case 42:
{
java.lang.String s = input.readStringRequireUtf8();
ensureArgsIsMutable();
args_.add(s);
break;
} // case 42
case 48:
{
argumentsTruncated_ = input.readBool();
bitField0_ |= 0x00000020;
break;
} // case 48
case 58:
{
com.google.cloud.securitycenter.v2.EnvironmentVariable m =
input.readMessage(
com.google.cloud.securitycenter.v2.EnvironmentVariable.parser(),
extensionRegistry);
if (envVariablesBuilder_ == null) {
ensureEnvVariablesIsMutable();
envVariables_.add(m);
} else {
envVariablesBuilder_.addMessage(m);
}
break;
} // case 58
case 64:
{
envVariablesTruncated_ = input.readBool();
bitField0_ |= 0x00000080;
break;
} // case 64
case 72:
{
pid_ = input.readInt64();
bitField0_ |= 0x00000100;
break;
} // case 72
case 80:
{
parentPid_ = input.readInt64();
bitField0_ |= 0x00000200;
break;
} // case 80
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object 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)`.
*
*
* string name = 1;
*
* @return The name.
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* 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 = 1;
*
* @return The bytes for name.
*/
public com.google.protobuf.ByteString getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* 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 = 1;
*
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
name_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* 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 = 1;
*
* @return This builder for chaining.
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* 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 = 1;
*
* @param value The bytes for name to set.
* @return This builder for chaining.
*/
public Builder setNameBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
name_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private com.google.cloud.securitycenter.v2.File binary_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.securitycenter.v2.File,
com.google.cloud.securitycenter.v2.File.Builder,
com.google.cloud.securitycenter.v2.FileOrBuilder>
binaryBuilder_;
/**
*
*
*
* File information for the process executable.
*
*
* .google.cloud.securitycenter.v2.File binary = 2;
*
* @return Whether the binary field is set.
*/
public boolean hasBinary() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* File information for the process executable.
*
*
* .google.cloud.securitycenter.v2.File binary = 2;
*
* @return The binary.
*/
public com.google.cloud.securitycenter.v2.File getBinary() {
if (binaryBuilder_ == null) {
return binary_ == null
? com.google.cloud.securitycenter.v2.File.getDefaultInstance()
: binary_;
} else {
return binaryBuilder_.getMessage();
}
}
/**
*
*
*
* File information for the process executable.
*
*
* .google.cloud.securitycenter.v2.File binary = 2;
*/
public Builder setBinary(com.google.cloud.securitycenter.v2.File value) {
if (binaryBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
binary_ = value;
} else {
binaryBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* File information for the process executable.
*
*
* .google.cloud.securitycenter.v2.File binary = 2;
*/
public Builder setBinary(com.google.cloud.securitycenter.v2.File.Builder builderForValue) {
if (binaryBuilder_ == null) {
binary_ = builderForValue.build();
} else {
binaryBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* File information for the process executable.
*
*
* .google.cloud.securitycenter.v2.File binary = 2;
*/
public Builder mergeBinary(com.google.cloud.securitycenter.v2.File value) {
if (binaryBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)
&& binary_ != null
&& binary_ != com.google.cloud.securitycenter.v2.File.getDefaultInstance()) {
getBinaryBuilder().mergeFrom(value);
} else {
binary_ = value;
}
} else {
binaryBuilder_.mergeFrom(value);
}
if (binary_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
*
*
*
* File information for the process executable.
*
*
* .google.cloud.securitycenter.v2.File binary = 2;
*/
public Builder clearBinary() {
bitField0_ = (bitField0_ & ~0x00000002);
binary_ = null;
if (binaryBuilder_ != null) {
binaryBuilder_.dispose();
binaryBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* File information for the process executable.
*
*
* .google.cloud.securitycenter.v2.File binary = 2;
*/
public com.google.cloud.securitycenter.v2.File.Builder getBinaryBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getBinaryFieldBuilder().getBuilder();
}
/**
*
*
*
* File information for the process executable.
*
*
* .google.cloud.securitycenter.v2.File binary = 2;
*/
public com.google.cloud.securitycenter.v2.FileOrBuilder getBinaryOrBuilder() {
if (binaryBuilder_ != null) {
return binaryBuilder_.getMessageOrBuilder();
} else {
return binary_ == null
? com.google.cloud.securitycenter.v2.File.getDefaultInstance()
: binary_;
}
}
/**
*
*
*
* File information for the process executable.
*
*
* .google.cloud.securitycenter.v2.File binary = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.securitycenter.v2.File,
com.google.cloud.securitycenter.v2.File.Builder,
com.google.cloud.securitycenter.v2.FileOrBuilder>
getBinaryFieldBuilder() {
if (binaryBuilder_ == null) {
binaryBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.securitycenter.v2.File,
com.google.cloud.securitycenter.v2.File.Builder,
com.google.cloud.securitycenter.v2.FileOrBuilder>(
getBinary(), getParentForChildren(), isClean());
binary_ = null;
}
return binaryBuilder_;
}
private java.util.List libraries_ =
java.util.Collections.emptyList();
private void ensureLibrariesIsMutable() {
if (!((bitField0_ & 0x00000004) != 0)) {
libraries_ = new java.util.ArrayList(libraries_);
bitField0_ |= 0x00000004;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.securitycenter.v2.File,
com.google.cloud.securitycenter.v2.File.Builder,
com.google.cloud.securitycenter.v2.FileOrBuilder>
librariesBuilder_;
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public java.util.List getLibrariesList() {
if (librariesBuilder_ == null) {
return java.util.Collections.unmodifiableList(libraries_);
} else {
return librariesBuilder_.getMessageList();
}
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public int getLibrariesCount() {
if (librariesBuilder_ == null) {
return libraries_.size();
} else {
return librariesBuilder_.getCount();
}
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public com.google.cloud.securitycenter.v2.File getLibraries(int index) {
if (librariesBuilder_ == null) {
return libraries_.get(index);
} else {
return librariesBuilder_.getMessage(index);
}
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public Builder setLibraries(int index, com.google.cloud.securitycenter.v2.File value) {
if (librariesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLibrariesIsMutable();
libraries_.set(index, value);
onChanged();
} else {
librariesBuilder_.setMessage(index, value);
}
return this;
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public Builder setLibraries(
int index, com.google.cloud.securitycenter.v2.File.Builder builderForValue) {
if (librariesBuilder_ == null) {
ensureLibrariesIsMutable();
libraries_.set(index, builderForValue.build());
onChanged();
} else {
librariesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public Builder addLibraries(com.google.cloud.securitycenter.v2.File value) {
if (librariesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLibrariesIsMutable();
libraries_.add(value);
onChanged();
} else {
librariesBuilder_.addMessage(value);
}
return this;
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public Builder addLibraries(int index, com.google.cloud.securitycenter.v2.File value) {
if (librariesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLibrariesIsMutable();
libraries_.add(index, value);
onChanged();
} else {
librariesBuilder_.addMessage(index, value);
}
return this;
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public Builder addLibraries(com.google.cloud.securitycenter.v2.File.Builder builderForValue) {
if (librariesBuilder_ == null) {
ensureLibrariesIsMutable();
libraries_.add(builderForValue.build());
onChanged();
} else {
librariesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public Builder addLibraries(
int index, com.google.cloud.securitycenter.v2.File.Builder builderForValue) {
if (librariesBuilder_ == null) {
ensureLibrariesIsMutable();
libraries_.add(index, builderForValue.build());
onChanged();
} else {
librariesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public Builder addAllLibraries(
java.lang.Iterable extends com.google.cloud.securitycenter.v2.File> values) {
if (librariesBuilder_ == null) {
ensureLibrariesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, libraries_);
onChanged();
} else {
librariesBuilder_.addAllMessages(values);
}
return this;
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public Builder clearLibraries() {
if (librariesBuilder_ == null) {
libraries_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
} else {
librariesBuilder_.clear();
}
return this;
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public Builder removeLibraries(int index) {
if (librariesBuilder_ == null) {
ensureLibrariesIsMutable();
libraries_.remove(index);
onChanged();
} else {
librariesBuilder_.remove(index);
}
return this;
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public com.google.cloud.securitycenter.v2.File.Builder getLibrariesBuilder(int index) {
return getLibrariesFieldBuilder().getBuilder(index);
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public com.google.cloud.securitycenter.v2.FileOrBuilder getLibrariesOrBuilder(int index) {
if (librariesBuilder_ == null) {
return libraries_.get(index);
} else {
return librariesBuilder_.getMessageOrBuilder(index);
}
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public java.util.List extends com.google.cloud.securitycenter.v2.FileOrBuilder>
getLibrariesOrBuilderList() {
if (librariesBuilder_ != null) {
return librariesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(libraries_);
}
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public com.google.cloud.securitycenter.v2.File.Builder addLibrariesBuilder() {
return getLibrariesFieldBuilder()
.addBuilder(com.google.cloud.securitycenter.v2.File.getDefaultInstance());
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public com.google.cloud.securitycenter.v2.File.Builder addLibrariesBuilder(int index) {
return getLibrariesFieldBuilder()
.addBuilder(index, com.google.cloud.securitycenter.v2.File.getDefaultInstance());
}
/**
*
*
*
* File information for libraries loaded by the process.
*
*
* repeated .google.cloud.securitycenter.v2.File libraries = 3;
*/
public java.util.List
getLibrariesBuilderList() {
return getLibrariesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.securitycenter.v2.File,
com.google.cloud.securitycenter.v2.File.Builder,
com.google.cloud.securitycenter.v2.FileOrBuilder>
getLibrariesFieldBuilder() {
if (librariesBuilder_ == null) {
librariesBuilder_ =
new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.securitycenter.v2.File,
com.google.cloud.securitycenter.v2.File.Builder,
com.google.cloud.securitycenter.v2.FileOrBuilder>(
libraries_, ((bitField0_ & 0x00000004) != 0), getParentForChildren(), isClean());
libraries_ = null;
}
return librariesBuilder_;
}
private com.google.cloud.securitycenter.v2.File script_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.securitycenter.v2.File,
com.google.cloud.securitycenter.v2.File.Builder,
com.google.cloud.securitycenter.v2.FileOrBuilder>
scriptBuilder_;
/**
*
*
*
* 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.v2.File script = 4;
*
* @return Whether the script field is set.
*/
public boolean hasScript() {
return ((bitField0_ & 0x00000008) != 0);
}
/**
*
*
*
* 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.v2.File script = 4;
*
* @return The script.
*/
public com.google.cloud.securitycenter.v2.File getScript() {
if (scriptBuilder_ == null) {
return script_ == null
? com.google.cloud.securitycenter.v2.File.getDefaultInstance()
: script_;
} else {
return scriptBuilder_.getMessage();
}
}
/**
*
*
*
* 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.v2.File script = 4;
*/
public Builder setScript(com.google.cloud.securitycenter.v2.File value) {
if (scriptBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
script_ = value;
} else {
scriptBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* 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.v2.File script = 4;
*/
public Builder setScript(com.google.cloud.securitycenter.v2.File.Builder builderForValue) {
if (scriptBuilder_ == null) {
script_ = builderForValue.build();
} else {
scriptBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* 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.v2.File script = 4;
*/
public Builder mergeScript(com.google.cloud.securitycenter.v2.File value) {
if (scriptBuilder_ == null) {
if (((bitField0_ & 0x00000008) != 0)
&& script_ != null
&& script_ != com.google.cloud.securitycenter.v2.File.getDefaultInstance()) {
getScriptBuilder().mergeFrom(value);
} else {
script_ = value;
}
} else {
scriptBuilder_.mergeFrom(value);
}
if (script_ != null) {
bitField0_ |= 0x00000008;
onChanged();
}
return this;
}
/**
*
*
*
* 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.v2.File script = 4;
*/
public Builder clearScript() {
bitField0_ = (bitField0_ & ~0x00000008);
script_ = null;
if (scriptBuilder_ != null) {
scriptBuilder_.dispose();
scriptBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* 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.v2.File script = 4;
*/
public com.google.cloud.securitycenter.v2.File.Builder getScriptBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getScriptFieldBuilder().getBuilder();
}
/**
*
*
*
* 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.v2.File script = 4;
*/
public com.google.cloud.securitycenter.v2.FileOrBuilder getScriptOrBuilder() {
if (scriptBuilder_ != null) {
return scriptBuilder_.getMessageOrBuilder();
} else {
return script_ == null
? com.google.cloud.securitycenter.v2.File.getDefaultInstance()
: script_;
}
}
/**
*
*
*
* 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.v2.File script = 4;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.securitycenter.v2.File,
com.google.cloud.securitycenter.v2.File.Builder,
com.google.cloud.securitycenter.v2.FileOrBuilder>
getScriptFieldBuilder() {
if (scriptBuilder_ == null) {
scriptBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.securitycenter.v2.File,
com.google.cloud.securitycenter.v2.File.Builder,
com.google.cloud.securitycenter.v2.FileOrBuilder>(
getScript(), getParentForChildren(), isClean());
script_ = null;
}
return scriptBuilder_;
}
private com.google.protobuf.LazyStringArrayList args_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureArgsIsMutable() {
if (!args_.isModifiable()) {
args_ = new com.google.protobuf.LazyStringArrayList(args_);
}
bitField0_ |= 0x00000010;
}
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @return A list containing the args.
*/
public com.google.protobuf.ProtocolStringList getArgsList() {
args_.makeImmutable();
return args_;
}
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @return The count of args.
*/
public int getArgsCount() {
return args_.size();
}
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @param index The index of the element to return.
* @return The args at the given index.
*/
public java.lang.String getArgs(int index) {
return args_.get(index);
}
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @param index The index of the value to return.
* @return The bytes of the args at the given index.
*/
public com.google.protobuf.ByteString getArgsBytes(int index) {
return args_.getByteString(index);
}
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @param index The index to set the value at.
* @param value The args to set.
* @return This builder for chaining.
*/
public Builder setArgs(int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureArgsIsMutable();
args_.set(index, value);
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @param value The args to add.
* @return This builder for chaining.
*/
public Builder addArgs(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureArgsIsMutable();
args_.add(value);
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @param values The args to add.
* @return This builder for chaining.
*/
public Builder addAllArgs(java.lang.Iterable values) {
ensureArgsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, args_);
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @return This builder for chaining.
*/
public Builder clearArgs() {
args_ = com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000010);
;
onChanged();
return this;
}
/**
*
*
*
* Process arguments as JSON encoded strings.
*
*
* repeated string args = 5;
*
* @param value The bytes of the args to add.
* @return This builder for chaining.
*/
public Builder addArgsBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureArgsIsMutable();
args_.add(value);
bitField0_ |= 0x00000010;
onChanged();
return this;
}
private boolean argumentsTruncated_;
/**
*
*
*
* True if `args` is incomplete.
*
*
* bool arguments_truncated = 6;
*
* @return The argumentsTruncated.
*/
@java.lang.Override
public boolean getArgumentsTruncated() {
return argumentsTruncated_;
}
/**
*
*
*
* True if `args` is incomplete.
*
*
* bool arguments_truncated = 6;
*
* @param value The argumentsTruncated to set.
* @return This builder for chaining.
*/
public Builder setArgumentsTruncated(boolean value) {
argumentsTruncated_ = value;
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
*
*
* True if `args` is incomplete.
*
*
* bool arguments_truncated = 6;
*
* @return This builder for chaining.
*/
public Builder clearArgumentsTruncated() {
bitField0_ = (bitField0_ & ~0x00000020);
argumentsTruncated_ = false;
onChanged();
return this;
}
private java.util.List envVariables_ =
java.util.Collections.emptyList();
private void ensureEnvVariablesIsMutable() {
if (!((bitField0_ & 0x00000040) != 0)) {
envVariables_ =
new java.util.ArrayList(
envVariables_);
bitField0_ |= 0x00000040;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.securitycenter.v2.EnvironmentVariable,
com.google.cloud.securitycenter.v2.EnvironmentVariable.Builder,
com.google.cloud.securitycenter.v2.EnvironmentVariableOrBuilder>
envVariablesBuilder_;
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public java.util.List
getEnvVariablesList() {
if (envVariablesBuilder_ == null) {
return java.util.Collections.unmodifiableList(envVariables_);
} else {
return envVariablesBuilder_.getMessageList();
}
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public int getEnvVariablesCount() {
if (envVariablesBuilder_ == null) {
return envVariables_.size();
} else {
return envVariablesBuilder_.getCount();
}
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public com.google.cloud.securitycenter.v2.EnvironmentVariable getEnvVariables(int index) {
if (envVariablesBuilder_ == null) {
return envVariables_.get(index);
} else {
return envVariablesBuilder_.getMessage(index);
}
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public Builder setEnvVariables(
int index, com.google.cloud.securitycenter.v2.EnvironmentVariable value) {
if (envVariablesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureEnvVariablesIsMutable();
envVariables_.set(index, value);
onChanged();
} else {
envVariablesBuilder_.setMessage(index, value);
}
return this;
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public Builder setEnvVariables(
int index, com.google.cloud.securitycenter.v2.EnvironmentVariable.Builder builderForValue) {
if (envVariablesBuilder_ == null) {
ensureEnvVariablesIsMutable();
envVariables_.set(index, builderForValue.build());
onChanged();
} else {
envVariablesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public Builder addEnvVariables(com.google.cloud.securitycenter.v2.EnvironmentVariable value) {
if (envVariablesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureEnvVariablesIsMutable();
envVariables_.add(value);
onChanged();
} else {
envVariablesBuilder_.addMessage(value);
}
return this;
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public Builder addEnvVariables(
int index, com.google.cloud.securitycenter.v2.EnvironmentVariable value) {
if (envVariablesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureEnvVariablesIsMutable();
envVariables_.add(index, value);
onChanged();
} else {
envVariablesBuilder_.addMessage(index, value);
}
return this;
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public Builder addEnvVariables(
com.google.cloud.securitycenter.v2.EnvironmentVariable.Builder builderForValue) {
if (envVariablesBuilder_ == null) {
ensureEnvVariablesIsMutable();
envVariables_.add(builderForValue.build());
onChanged();
} else {
envVariablesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public Builder addEnvVariables(
int index, com.google.cloud.securitycenter.v2.EnvironmentVariable.Builder builderForValue) {
if (envVariablesBuilder_ == null) {
ensureEnvVariablesIsMutable();
envVariables_.add(index, builderForValue.build());
onChanged();
} else {
envVariablesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public Builder addAllEnvVariables(
java.lang.Iterable extends com.google.cloud.securitycenter.v2.EnvironmentVariable>
values) {
if (envVariablesBuilder_ == null) {
ensureEnvVariablesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, envVariables_);
onChanged();
} else {
envVariablesBuilder_.addAllMessages(values);
}
return this;
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public Builder clearEnvVariables() {
if (envVariablesBuilder_ == null) {
envVariables_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000040);
onChanged();
} else {
envVariablesBuilder_.clear();
}
return this;
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public Builder removeEnvVariables(int index) {
if (envVariablesBuilder_ == null) {
ensureEnvVariablesIsMutable();
envVariables_.remove(index);
onChanged();
} else {
envVariablesBuilder_.remove(index);
}
return this;
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public com.google.cloud.securitycenter.v2.EnvironmentVariable.Builder getEnvVariablesBuilder(
int index) {
return getEnvVariablesFieldBuilder().getBuilder(index);
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public com.google.cloud.securitycenter.v2.EnvironmentVariableOrBuilder getEnvVariablesOrBuilder(
int index) {
if (envVariablesBuilder_ == null) {
return envVariables_.get(index);
} else {
return envVariablesBuilder_.getMessageOrBuilder(index);
}
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public java.util.List extends com.google.cloud.securitycenter.v2.EnvironmentVariableOrBuilder>
getEnvVariablesOrBuilderList() {
if (envVariablesBuilder_ != null) {
return envVariablesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(envVariables_);
}
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public com.google.cloud.securitycenter.v2.EnvironmentVariable.Builder addEnvVariablesBuilder() {
return getEnvVariablesFieldBuilder()
.addBuilder(com.google.cloud.securitycenter.v2.EnvironmentVariable.getDefaultInstance());
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public com.google.cloud.securitycenter.v2.EnvironmentVariable.Builder addEnvVariablesBuilder(
int index) {
return getEnvVariablesFieldBuilder()
.addBuilder(
index, com.google.cloud.securitycenter.v2.EnvironmentVariable.getDefaultInstance());
}
/**
*
*
*
* Process environment variables.
*
*
* repeated .google.cloud.securitycenter.v2.EnvironmentVariable env_variables = 7;
*/
public java.util.List
getEnvVariablesBuilderList() {
return getEnvVariablesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.securitycenter.v2.EnvironmentVariable,
com.google.cloud.securitycenter.v2.EnvironmentVariable.Builder,
com.google.cloud.securitycenter.v2.EnvironmentVariableOrBuilder>
getEnvVariablesFieldBuilder() {
if (envVariablesBuilder_ == null) {
envVariablesBuilder_ =
new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.securitycenter.v2.EnvironmentVariable,
com.google.cloud.securitycenter.v2.EnvironmentVariable.Builder,
com.google.cloud.securitycenter.v2.EnvironmentVariableOrBuilder>(
envVariables_, ((bitField0_ & 0x00000040) != 0), getParentForChildren(), isClean());
envVariables_ = null;
}
return envVariablesBuilder_;
}
private boolean envVariablesTruncated_;
/**
*
*
*
* True if `env_variables` is incomplete.
*
*
* bool env_variables_truncated = 8;
*
* @return The envVariablesTruncated.
*/
@java.lang.Override
public boolean getEnvVariablesTruncated() {
return envVariablesTruncated_;
}
/**
*
*
*
* True if `env_variables` is incomplete.
*
*
* bool env_variables_truncated = 8;
*
* @param value The envVariablesTruncated to set.
* @return This builder for chaining.
*/
public Builder setEnvVariablesTruncated(boolean value) {
envVariablesTruncated_ = value;
bitField0_ |= 0x00000080;
onChanged();
return this;
}
/**
*
*
*
* True if `env_variables` is incomplete.
*
*
* bool env_variables_truncated = 8;
*
* @return This builder for chaining.
*/
public Builder clearEnvVariablesTruncated() {
bitField0_ = (bitField0_ & ~0x00000080);
envVariablesTruncated_ = false;
onChanged();
return this;
}
private long pid_;
/**
*
*
*
* The process ID.
*
*
* int64 pid = 9;
*
* @return The pid.
*/
@java.lang.Override
public long getPid() {
return pid_;
}
/**
*
*
*
* The process ID.
*
*
* int64 pid = 9;
*
* @param value The pid to set.
* @return This builder for chaining.
*/
public Builder setPid(long value) {
pid_ = value;
bitField0_ |= 0x00000100;
onChanged();
return this;
}
/**
*
*
*
* The process ID.
*
*
* int64 pid = 9;
*
* @return This builder for chaining.
*/
public Builder clearPid() {
bitField0_ = (bitField0_ & ~0x00000100);
pid_ = 0L;
onChanged();
return this;
}
private long parentPid_;
/**
*
*
*
* The parent process ID.
*
*
* int64 parent_pid = 10;
*
* @return The parentPid.
*/
@java.lang.Override
public long getParentPid() {
return parentPid_;
}
/**
*
*
*
* The parent process ID.
*
*
* int64 parent_pid = 10;
*
* @param value The parentPid to set.
* @return This builder for chaining.
*/
public Builder setParentPid(long value) {
parentPid_ = value;
bitField0_ |= 0x00000200;
onChanged();
return this;
}
/**
*
*
*
* The parent process ID.
*
*
* int64 parent_pid = 10;
*
* @return This builder for chaining.
*/
public Builder clearParentPid() {
bitField0_ = (bitField0_ & ~0x00000200);
parentPid_ = 0L;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.cloud.securitycenter.v2.Process)
}
// @@protoc_insertion_point(class_scope:google.cloud.securitycenter.v2.Process)
private static final com.google.cloud.securitycenter.v2.Process DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.securitycenter.v2.Process();
}
public static com.google.cloud.securitycenter.v2.Process getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Process parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.securitycenter.v2.Process getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy