Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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/dataplex/v1/logs.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dataplex.v1;
/**
*
*
*
* Payload associated with Governance related log events.
*
*
* Protobuf type {@code google.cloud.dataplex.v1.GovernanceEvent}
*/
public final class GovernanceEvent extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.dataplex.v1.GovernanceEvent)
GovernanceEventOrBuilder {
private static final long serialVersionUID = 0L;
// Use GovernanceEvent.newBuilder() to construct.
private GovernanceEvent(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private GovernanceEvent() {
message_ = "";
eventType_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new GovernanceEvent();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dataplex.v1.LogsProto
.internal_static_google_cloud_dataplex_v1_GovernanceEvent_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dataplex.v1.LogsProto
.internal_static_google_cloud_dataplex_v1_GovernanceEvent_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dataplex.v1.GovernanceEvent.class,
com.google.cloud.dataplex.v1.GovernanceEvent.Builder.class);
}
/**
*
*
*
*
* EVENT_TYPE_UNSPECIFIED = 0;
*/
public static final int EVENT_TYPE_UNSPECIFIED_VALUE = 0;
/**
*
*
*
* Resource IAM policy update event.
*
*
* RESOURCE_IAM_POLICY_UPDATE = 1;
*/
public static final int RESOURCE_IAM_POLICY_UPDATE_VALUE = 1;
/**
*
*
*
* BigQuery table create event.
*
*
* BIGQUERY_TABLE_CREATE = 2;
*/
public static final int BIGQUERY_TABLE_CREATE_VALUE = 2;
/**
*
*
*
* BigQuery table update event.
*
*
* BIGQUERY_TABLE_UPDATE = 3;
*/
public static final int BIGQUERY_TABLE_UPDATE_VALUE = 3;
/**
*
*
*
* BigQuery table delete event.
*
*
* BIGQUERY_TABLE_DELETE = 4;
*/
public static final int BIGQUERY_TABLE_DELETE_VALUE = 4;
/**
*
*
*
* BigQuery connection create event.
*
*
* BIGQUERY_CONNECTION_CREATE = 5;
*/
public static final int BIGQUERY_CONNECTION_CREATE_VALUE = 5;
/**
*
*
*
* BigQuery connection update event.
*
*
* BIGQUERY_CONNECTION_UPDATE = 6;
*/
public static final int BIGQUERY_CONNECTION_UPDATE_VALUE = 6;
/**
*
*
*
* BigQuery connection delete event.
*
*
* BIGQUERY_CONNECTION_DELETE = 7;
*/
public static final int BIGQUERY_CONNECTION_DELETE_VALUE = 7;
/**
*
*
*
* BigQuery taxonomy created.
*
*
* BIGQUERY_TAXONOMY_CREATE = 10;
*/
public static final int BIGQUERY_TAXONOMY_CREATE_VALUE = 10;
/**
*
*
*
* BigQuery policy tag created.
*
*
* BIGQUERY_POLICY_TAG_CREATE = 11;
*/
public static final int BIGQUERY_POLICY_TAG_CREATE_VALUE = 11;
/**
*
*
*
* BigQuery policy tag deleted.
*
*
* BIGQUERY_POLICY_TAG_DELETE = 12;
*/
public static final int BIGQUERY_POLICY_TAG_DELETE_VALUE = 12;
/**
*
*
*
* BigQuery set iam policy for policy tag.
*
*
* BIGQUERY_POLICY_TAG_SET_IAM_POLICY = 13;
*/
public static final int BIGQUERY_POLICY_TAG_SET_IAM_POLICY_VALUE = 13;
/**
*
*
*
* Access policy update event.
*
*
* ACCESS_POLICY_UPDATE = 14;
*/
public static final int ACCESS_POLICY_UPDATE_VALUE = 14;
/**
*
*
*
* Number of resources matched with particular Query.
*
*
* GOVERNANCE_RULE_MATCHED_RESOURCES = 15;
*/
public static final int GOVERNANCE_RULE_MATCHED_RESOURCES_VALUE = 15;
/**
*
*
*
* Rule processing exceeds the allowed limit.
*
*
* GOVERNANCE_RULE_SEARCH_LIMIT_EXCEEDS = 16;
*/
public static final int GOVERNANCE_RULE_SEARCH_LIMIT_EXCEEDS_VALUE = 16;
/**
*
*
*
* Rule processing errors.
*
*
* GOVERNANCE_RULE_ERRORS = 17;
*/
public static final int GOVERNANCE_RULE_ERRORS_VALUE = 17;
/**
*
*
*
* Governance rule processing Event.
*
*
* GOVERNANCE_RULE_PROCESSING = 18;
*/
public static final int GOVERNANCE_RULE_PROCESSING_VALUE = 18;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static EventType valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static EventType forNumber(int value) {
switch (value) {
case 0:
return EVENT_TYPE_UNSPECIFIED;
case 1:
return RESOURCE_IAM_POLICY_UPDATE;
case 2:
return BIGQUERY_TABLE_CREATE;
case 3:
return BIGQUERY_TABLE_UPDATE;
case 4:
return BIGQUERY_TABLE_DELETE;
case 5:
return BIGQUERY_CONNECTION_CREATE;
case 6:
return BIGQUERY_CONNECTION_UPDATE;
case 7:
return BIGQUERY_CONNECTION_DELETE;
case 10:
return BIGQUERY_TAXONOMY_CREATE;
case 11:
return BIGQUERY_POLICY_TAG_CREATE;
case 12:
return BIGQUERY_POLICY_TAG_DELETE;
case 13:
return BIGQUERY_POLICY_TAG_SET_IAM_POLICY;
case 14:
return ACCESS_POLICY_UPDATE;
case 15:
return GOVERNANCE_RULE_MATCHED_RESOURCES;
case 16:
return GOVERNANCE_RULE_SEARCH_LIMIT_EXCEEDS;
case 17:
return GOVERNANCE_RULE_ERRORS;
case 18:
return GOVERNANCE_RULE_PROCESSING;
default:
return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public EventType findValueByNumber(int number) {
return EventType.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
return com.google.cloud.dataplex.v1.GovernanceEvent.getDescriptor().getEnumTypes().get(0);
}
private static final EventType[] VALUES = values();
public static EventType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private EventType(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.cloud.dataplex.v1.GovernanceEvent.EventType)
}
public interface EntityOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dataplex.v1.GovernanceEvent.Entity)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The Entity resource the log event is associated with.
* Format:
* `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`
*
* The Entity resource the log event is associated with.
* Format:
* `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType entity_type = 2;
*
* @return The enum numeric value on the wire for entityType.
*/
int getEntityTypeValue();
/**
*
*
*
*
* ENTITY_TYPE_UNSPECIFIED = 0;
*/
public static final int ENTITY_TYPE_UNSPECIFIED_VALUE = 0;
/**
*
*
*
* Table entity type.
*
*
* TABLE = 1;
*/
public static final int TABLE_VALUE = 1;
/**
*
*
*
* Fileset entity type.
*
*
* FILESET = 2;
*/
public static final int FILESET_VALUE = 2;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static EntityType valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static EntityType forNumber(int value) {
switch (value) {
case 0:
return ENTITY_TYPE_UNSPECIFIED;
case 1:
return TABLE;
case 2:
return FILESET;
default:
return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public EntityType findValueByNumber(int number) {
return EntityType.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
return com.google.cloud.dataplex.v1.GovernanceEvent.Entity.getDescriptor()
.getEnumTypes()
.get(0);
}
private static final EntityType[] VALUES = values();
public static EntityType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private EntityType(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType)
}
public static final int ENTITY_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object entity_ = "";
/**
*
*
*
* The Entity resource the log event is associated with.
* Format:
* `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`
*
* The Entity resource the log event is associated with.
* Format:
* `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`
*
*
* string entity = 1 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for entity.
*/
@java.lang.Override
public com.google.protobuf.ByteString getEntityBytes() {
java.lang.Object ref = entity_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
entity_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int ENTITY_TYPE_FIELD_NUMBER = 2;
private int entityType_ = 0;
/**
*
*
*
* Type of entity.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType entity_type = 2;
*
* @return The enum numeric value on the wire for entityType.
*/
@java.lang.Override
public int getEntityTypeValue() {
return entityType_;
}
/**
*
*
*
* Type of entity.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType entity_type = 2;
*
* @return The entityType.
*/
@java.lang.Override
public com.google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType getEntityType() {
com.google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType result =
com.google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType.forNumber(entityType_);
return result == null
? com.google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType.UNRECOGNIZED
: result;
}
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(entity_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, entity_);
}
if (entityType_
!= com.google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType.ENTITY_TYPE_UNSPECIFIED
.getNumber()) {
output.writeEnum(2, entityType_);
}
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(entity_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, entity_);
}
if (entityType_
!= com.google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType.ENTITY_TYPE_UNSPECIFIED
.getNumber()) {
size += com.google.protobuf.CodedOutputStream.computeEnumSize(2, entityType_);
}
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.dataplex.v1.GovernanceEvent.Entity)) {
return super.equals(obj);
}
com.google.cloud.dataplex.v1.GovernanceEvent.Entity other =
(com.google.cloud.dataplex.v1.GovernanceEvent.Entity) obj;
if (!getEntity().equals(other.getEntity())) return false;
if (entityType_ != other.entityType_) 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) + ENTITY_FIELD_NUMBER;
hash = (53 * hash) + getEntity().hashCode();
hash = (37 * hash) + ENTITY_TYPE_FIELD_NUMBER;
hash = (53 * hash) + entityType_;
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.dataplex.v1.GovernanceEvent.Entity parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dataplex.v1.GovernanceEvent.Entity 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.dataplex.v1.GovernanceEvent.Entity parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dataplex.v1.GovernanceEvent.Entity 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.dataplex.v1.GovernanceEvent.Entity parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dataplex.v1.GovernanceEvent.Entity parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dataplex.v1.GovernanceEvent.Entity parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dataplex.v1.GovernanceEvent.Entity 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.dataplex.v1.GovernanceEvent.Entity parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.dataplex.v1.GovernanceEvent.Entity 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.dataplex.v1.GovernanceEvent.Entity parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dataplex.v1.GovernanceEvent.Entity 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.dataplex.v1.GovernanceEvent.Entity 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;
}
/**
*
*
*
* Information about Entity resource that the log event is associated with.
*
*
* Protobuf type {@code google.cloud.dataplex.v1.GovernanceEvent.Entity}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.dataplex.v1.GovernanceEvent.Entity)
com.google.cloud.dataplex.v1.GovernanceEvent.EntityOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dataplex.v1.LogsProto
.internal_static_google_cloud_dataplex_v1_GovernanceEvent_Entity_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dataplex.v1.LogsProto
.internal_static_google_cloud_dataplex_v1_GovernanceEvent_Entity_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dataplex.v1.GovernanceEvent.Entity.class,
com.google.cloud.dataplex.v1.GovernanceEvent.Entity.Builder.class);
}
// Construct using com.google.cloud.dataplex.v1.GovernanceEvent.Entity.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
entity_ = "";
entityType_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.dataplex.v1.LogsProto
.internal_static_google_cloud_dataplex_v1_GovernanceEvent_Entity_descriptor;
}
@java.lang.Override
public com.google.cloud.dataplex.v1.GovernanceEvent.Entity getDefaultInstanceForType() {
return com.google.cloud.dataplex.v1.GovernanceEvent.Entity.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.dataplex.v1.GovernanceEvent.Entity build() {
com.google.cloud.dataplex.v1.GovernanceEvent.Entity result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.dataplex.v1.GovernanceEvent.Entity buildPartial() {
com.google.cloud.dataplex.v1.GovernanceEvent.Entity result =
new com.google.cloud.dataplex.v1.GovernanceEvent.Entity(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.dataplex.v1.GovernanceEvent.Entity result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.entity_ = entity_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.entityType_ = entityType_;
}
}
@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.dataplex.v1.GovernanceEvent.Entity) {
return mergeFrom((com.google.cloud.dataplex.v1.GovernanceEvent.Entity) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.dataplex.v1.GovernanceEvent.Entity other) {
if (other == com.google.cloud.dataplex.v1.GovernanceEvent.Entity.getDefaultInstance())
return this;
if (!other.getEntity().isEmpty()) {
entity_ = other.entity_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.entityType_ != 0) {
setEntityTypeValue(other.getEntityTypeValue());
}
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:
{
entity_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 16:
{
entityType_ = input.readEnum();
bitField0_ |= 0x00000002;
break;
} // case 16
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 entity_ = "";
/**
*
*
*
* The Entity resource the log event is associated with.
* Format:
* `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`
*
* The Entity resource the log event is associated with.
* Format:
* `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`
*
* The Entity resource the log event is associated with.
* Format:
* `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`
*
*
* string entity = 1 [(.google.api.resource_reference) = { ... }
*
* @param value The entity to set.
* @return This builder for chaining.
*/
public Builder setEntity(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
entity_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The Entity resource the log event is associated with.
* Format:
* `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`
*
* The Entity resource the log event is associated with.
* Format:
* `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`
*
*
* string entity = 1 [(.google.api.resource_reference) = { ... }
*
* @param value The bytes for entity to set.
* @return This builder for chaining.
*/
public Builder setEntityBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
entity_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private int entityType_ = 0;
/**
*
*
*
* Type of entity.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType entity_type = 2;
*
* @return The enum numeric value on the wire for entityType.
*/
@java.lang.Override
public int getEntityTypeValue() {
return entityType_;
}
/**
*
*
*
* Type of entity.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType entity_type = 2;
*
* @param value The enum numeric value on the wire for entityType to set.
* @return This builder for chaining.
*/
public Builder setEntityTypeValue(int value) {
entityType_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Type of entity.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType entity_type = 2;
*
* @return The entityType.
*/
@java.lang.Override
public com.google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType getEntityType() {
com.google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType result =
com.google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType.forNumber(entityType_);
return result == null
? com.google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType.UNRECOGNIZED
: result;
}
/**
*
*
*
* Type of entity.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType entity_type = 2;
*
* @param value The entityType to set.
* @return This builder for chaining.
*/
public Builder setEntityType(
com.google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
entityType_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* Type of entity.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.Entity.EntityType entity_type = 2;
*
* @return This builder for chaining.
*/
public Builder clearEntityType() {
bitField0_ = (bitField0_ & ~0x00000002);
entityType_ = 0;
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.dataplex.v1.GovernanceEvent.Entity)
}
// @@protoc_insertion_point(class_scope:google.cloud.dataplex.v1.GovernanceEvent.Entity)
private static final com.google.cloud.dataplex.v1.GovernanceEvent.Entity DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.dataplex.v1.GovernanceEvent.Entity();
}
public static com.google.cloud.dataplex.v1.GovernanceEvent.Entity getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Entity 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.dataplex.v1.GovernanceEvent.Entity getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int bitField0_;
public static final int MESSAGE_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object message_ = "";
/**
*
*
*
*
* string message = 1;
*
* @return The bytes for message.
*/
@java.lang.Override
public com.google.protobuf.ByteString getMessageBytes() {
java.lang.Object ref = message_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
message_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int EVENT_TYPE_FIELD_NUMBER = 2;
private int eventType_ = 0;
/**
*
*
*
* The type of the event.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.EventType event_type = 2;
*
* @return The enum numeric value on the wire for eventType.
*/
@java.lang.Override
public int getEventTypeValue() {
return eventType_;
}
/**
*
*
*
* The type of the event.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.EventType event_type = 2;
*
* @return The eventType.
*/
@java.lang.Override
public com.google.cloud.dataplex.v1.GovernanceEvent.EventType getEventType() {
com.google.cloud.dataplex.v1.GovernanceEvent.EventType result =
com.google.cloud.dataplex.v1.GovernanceEvent.EventType.forNumber(eventType_);
return result == null
? com.google.cloud.dataplex.v1.GovernanceEvent.EventType.UNRECOGNIZED
: result;
}
public static final int ENTITY_FIELD_NUMBER = 3;
private com.google.cloud.dataplex.v1.GovernanceEvent.Entity entity_;
/**
*
*
*
* Entity resource information if the log event is associated with a
* specific entity.
*
*
* optional .google.cloud.dataplex.v1.GovernanceEvent.Entity entity = 3;
*
* @return Whether the entity field is set.
*/
@java.lang.Override
public boolean hasEntity() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* Entity resource information if the log event is associated with a
* specific entity.
*
*
* string message = 1;
*
* @param value The bytes for message to set.
* @return This builder for chaining.
*/
public Builder setMessageBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
message_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private int eventType_ = 0;
/**
*
*
*
* The type of the event.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.EventType event_type = 2;
*
* @return The enum numeric value on the wire for eventType.
*/
@java.lang.Override
public int getEventTypeValue() {
return eventType_;
}
/**
*
*
*
* The type of the event.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.EventType event_type = 2;
*
* @param value The enum numeric value on the wire for eventType to set.
* @return This builder for chaining.
*/
public Builder setEventTypeValue(int value) {
eventType_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* The type of the event.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.EventType event_type = 2;
*
* @return The eventType.
*/
@java.lang.Override
public com.google.cloud.dataplex.v1.GovernanceEvent.EventType getEventType() {
com.google.cloud.dataplex.v1.GovernanceEvent.EventType result =
com.google.cloud.dataplex.v1.GovernanceEvent.EventType.forNumber(eventType_);
return result == null
? com.google.cloud.dataplex.v1.GovernanceEvent.EventType.UNRECOGNIZED
: result;
}
/**
*
*
*
* The type of the event.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.EventType event_type = 2;
*
* @param value The eventType to set.
* @return This builder for chaining.
*/
public Builder setEventType(com.google.cloud.dataplex.v1.GovernanceEvent.EventType value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
eventType_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*