com.google.cloud.securitycenter.v1.ToxicCombination 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-v1 Show documentation
Show all versions of proto-google-cloud-securitycenter-v1 Show documentation
PROTO library for proto-google-cloud-securitycenter-v1
The 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/toxic_combination.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.securitycenter.v1;
/**
*
*
*
* Contains details about a group of security issues that, when the issues
* occur together, represent a greater risk than when the issues occur
* independently. A group of such issues is referred to as a toxic combination.
*
*
* Protobuf type {@code google.cloud.securitycenter.v1.ToxicCombination}
*/
public final class ToxicCombination extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.securitycenter.v1.ToxicCombination)
ToxicCombinationOrBuilder {
private static final long serialVersionUID = 0L;
// Use ToxicCombination.newBuilder() to construct.
private ToxicCombination(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ToxicCombination() {
relatedFindings_ = com.google.protobuf.LazyStringArrayList.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new ToxicCombination();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.securitycenter.v1.ToxicCombinationProto
.internal_static_google_cloud_securitycenter_v1_ToxicCombination_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.securitycenter.v1.ToxicCombinationProto
.internal_static_google_cloud_securitycenter_v1_ToxicCombination_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.securitycenter.v1.ToxicCombination.class,
com.google.cloud.securitycenter.v1.ToxicCombination.Builder.class);
}
public static final int ATTACK_EXPOSURE_SCORE_FIELD_NUMBER = 1;
private double attackExposureScore_ = 0D;
/**
*
*
*
* The
* [Attack exposure
* score](https://cloud.google.com/security-command-center/docs/attack-exposure-learn#attack_exposure_scores)
* of this toxic combination. The score is a measure of how much this toxic
* combination exposes one or more high-value resources to potential attack.
*
*
* double attack_exposure_score = 1;
*
* @return The attackExposureScore.
*/
@java.lang.Override
public double getAttackExposureScore() {
return attackExposureScore_;
}
public static final int RELATED_FINDINGS_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList relatedFindings_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @return A list containing the relatedFindings.
*/
public com.google.protobuf.ProtocolStringList getRelatedFindingsList() {
return relatedFindings_;
}
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @return The count of relatedFindings.
*/
public int getRelatedFindingsCount() {
return relatedFindings_.size();
}
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @param index The index of the element to return.
* @return The relatedFindings at the given index.
*/
public java.lang.String getRelatedFindings(int index) {
return relatedFindings_.get(index);
}
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @param index The index of the value to return.
* @return The bytes of the relatedFindings at the given index.
*/
public com.google.protobuf.ByteString getRelatedFindingsBytes(int index) {
return relatedFindings_.getByteString(index);
}
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 (java.lang.Double.doubleToRawLongBits(attackExposureScore_) != 0) {
output.writeDouble(1, attackExposureScore_);
}
for (int i = 0; i < relatedFindings_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, relatedFindings_.getRaw(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (java.lang.Double.doubleToRawLongBits(attackExposureScore_) != 0) {
size += com.google.protobuf.CodedOutputStream.computeDoubleSize(1, attackExposureScore_);
}
{
int dataSize = 0;
for (int i = 0; i < relatedFindings_.size(); i++) {
dataSize += computeStringSizeNoTag(relatedFindings_.getRaw(i));
}
size += dataSize;
size += 1 * getRelatedFindingsList().size();
}
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.v1.ToxicCombination)) {
return super.equals(obj);
}
com.google.cloud.securitycenter.v1.ToxicCombination other =
(com.google.cloud.securitycenter.v1.ToxicCombination) obj;
if (java.lang.Double.doubleToLongBits(getAttackExposureScore())
!= java.lang.Double.doubleToLongBits(other.getAttackExposureScore())) return false;
if (!getRelatedFindingsList().equals(other.getRelatedFindingsList())) 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) + ATTACK_EXPOSURE_SCORE_FIELD_NUMBER;
hash =
(53 * hash)
+ com.google.protobuf.Internal.hashLong(
java.lang.Double.doubleToLongBits(getAttackExposureScore()));
if (getRelatedFindingsCount() > 0) {
hash = (37 * hash) + RELATED_FINDINGS_FIELD_NUMBER;
hash = (53 * hash) + getRelatedFindingsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.securitycenter.v1.ToxicCombination parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.securitycenter.v1.ToxicCombination 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.v1.ToxicCombination parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.securitycenter.v1.ToxicCombination 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.v1.ToxicCombination parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.securitycenter.v1.ToxicCombination parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.securitycenter.v1.ToxicCombination parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.securitycenter.v1.ToxicCombination 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.v1.ToxicCombination parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.securitycenter.v1.ToxicCombination 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.v1.ToxicCombination parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.securitycenter.v1.ToxicCombination 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.v1.ToxicCombination 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;
}
/**
*
*
*
* Contains details about a group of security issues that, when the issues
* occur together, represent a greater risk than when the issues occur
* independently. A group of such issues is referred to as a toxic combination.
*
*
* Protobuf type {@code google.cloud.securitycenter.v1.ToxicCombination}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.securitycenter.v1.ToxicCombination)
com.google.cloud.securitycenter.v1.ToxicCombinationOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.securitycenter.v1.ToxicCombinationProto
.internal_static_google_cloud_securitycenter_v1_ToxicCombination_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.securitycenter.v1.ToxicCombinationProto
.internal_static_google_cloud_securitycenter_v1_ToxicCombination_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.securitycenter.v1.ToxicCombination.class,
com.google.cloud.securitycenter.v1.ToxicCombination.Builder.class);
}
// Construct using com.google.cloud.securitycenter.v1.ToxicCombination.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
attackExposureScore_ = 0D;
relatedFindings_ = com.google.protobuf.LazyStringArrayList.emptyList();
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.securitycenter.v1.ToxicCombinationProto
.internal_static_google_cloud_securitycenter_v1_ToxicCombination_descriptor;
}
@java.lang.Override
public com.google.cloud.securitycenter.v1.ToxicCombination getDefaultInstanceForType() {
return com.google.cloud.securitycenter.v1.ToxicCombination.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.securitycenter.v1.ToxicCombination build() {
com.google.cloud.securitycenter.v1.ToxicCombination result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.securitycenter.v1.ToxicCombination buildPartial() {
com.google.cloud.securitycenter.v1.ToxicCombination result =
new com.google.cloud.securitycenter.v1.ToxicCombination(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.securitycenter.v1.ToxicCombination result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.attackExposureScore_ = attackExposureScore_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
relatedFindings_.makeImmutable();
result.relatedFindings_ = relatedFindings_;
}
}
@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.v1.ToxicCombination) {
return mergeFrom((com.google.cloud.securitycenter.v1.ToxicCombination) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.securitycenter.v1.ToxicCombination other) {
if (other == com.google.cloud.securitycenter.v1.ToxicCombination.getDefaultInstance())
return this;
if (other.getAttackExposureScore() != 0D) {
setAttackExposureScore(other.getAttackExposureScore());
}
if (!other.relatedFindings_.isEmpty()) {
if (relatedFindings_.isEmpty()) {
relatedFindings_ = other.relatedFindings_;
bitField0_ |= 0x00000002;
} else {
ensureRelatedFindingsIsMutable();
relatedFindings_.addAll(other.relatedFindings_);
}
onChanged();
}
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 9:
{
attackExposureScore_ = input.readDouble();
bitField0_ |= 0x00000001;
break;
} // case 9
case 18:
{
java.lang.String s = input.readStringRequireUtf8();
ensureRelatedFindingsIsMutable();
relatedFindings_.add(s);
break;
} // case 18
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 double attackExposureScore_;
/**
*
*
*
* The
* [Attack exposure
* score](https://cloud.google.com/security-command-center/docs/attack-exposure-learn#attack_exposure_scores)
* of this toxic combination. The score is a measure of how much this toxic
* combination exposes one or more high-value resources to potential attack.
*
*
* double attack_exposure_score = 1;
*
* @return The attackExposureScore.
*/
@java.lang.Override
public double getAttackExposureScore() {
return attackExposureScore_;
}
/**
*
*
*
* The
* [Attack exposure
* score](https://cloud.google.com/security-command-center/docs/attack-exposure-learn#attack_exposure_scores)
* of this toxic combination. The score is a measure of how much this toxic
* combination exposes one or more high-value resources to potential attack.
*
*
* double attack_exposure_score = 1;
*
* @param value The attackExposureScore to set.
* @return This builder for chaining.
*/
public Builder setAttackExposureScore(double value) {
attackExposureScore_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The
* [Attack exposure
* score](https://cloud.google.com/security-command-center/docs/attack-exposure-learn#attack_exposure_scores)
* of this toxic combination. The score is a measure of how much this toxic
* combination exposes one or more high-value resources to potential attack.
*
*
* double attack_exposure_score = 1;
*
* @return This builder for chaining.
*/
public Builder clearAttackExposureScore() {
bitField0_ = (bitField0_ & ~0x00000001);
attackExposureScore_ = 0D;
onChanged();
return this;
}
private com.google.protobuf.LazyStringArrayList relatedFindings_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureRelatedFindingsIsMutable() {
if (!relatedFindings_.isModifiable()) {
relatedFindings_ = new com.google.protobuf.LazyStringArrayList(relatedFindings_);
}
bitField0_ |= 0x00000002;
}
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @return A list containing the relatedFindings.
*/
public com.google.protobuf.ProtocolStringList getRelatedFindingsList() {
relatedFindings_.makeImmutable();
return relatedFindings_;
}
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @return The count of relatedFindings.
*/
public int getRelatedFindingsCount() {
return relatedFindings_.size();
}
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @param index The index of the element to return.
* @return The relatedFindings at the given index.
*/
public java.lang.String getRelatedFindings(int index) {
return relatedFindings_.get(index);
}
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @param index The index of the value to return.
* @return The bytes of the relatedFindings at the given index.
*/
public com.google.protobuf.ByteString getRelatedFindingsBytes(int index) {
return relatedFindings_.getByteString(index);
}
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @param index The index to set the value at.
* @param value The relatedFindings to set.
* @return This builder for chaining.
*/
public Builder setRelatedFindings(int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureRelatedFindingsIsMutable();
relatedFindings_.set(index, value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @param value The relatedFindings to add.
* @return This builder for chaining.
*/
public Builder addRelatedFindings(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureRelatedFindingsIsMutable();
relatedFindings_.add(value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @param values The relatedFindings to add.
* @return This builder for chaining.
*/
public Builder addAllRelatedFindings(java.lang.Iterable values) {
ensureRelatedFindingsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, relatedFindings_);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @return This builder for chaining.
*/
public Builder clearRelatedFindings() {
relatedFindings_ = com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
;
onChanged();
return this;
}
/**
*
*
*
* List of resource names of findings associated with this toxic combination.
* For example, `organizations/123/sources/456/findings/789`.
*
*
* repeated string related_findings = 2;
*
* @param value The bytes of the relatedFindings to add.
* @return This builder for chaining.
*/
public Builder addRelatedFindingsBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureRelatedFindingsIsMutable();
relatedFindings_.add(value);
bitField0_ |= 0x00000002;
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.v1.ToxicCombination)
}
// @@protoc_insertion_point(class_scope:google.cloud.securitycenter.v1.ToxicCombination)
private static final com.google.cloud.securitycenter.v1.ToxicCombination DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.securitycenter.v1.ToxicCombination();
}
public static com.google.cloud.securitycenter.v1.ToxicCombination getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ToxicCombination 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.v1.ToxicCombination getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy