com.google.cloud.dataplex.v1.GovernanceEventOrBuilder Maven / Gradle / Ivy
/*
* 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.4
package com.google.cloud.dataplex.v1;
public interface GovernanceEventOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dataplex.v1.GovernanceEvent)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The log message.
*
*
* string message = 1;
*
* @return The message.
*/
java.lang.String getMessage();
/**
*
*
*
* The log message.
*
*
* string message = 1;
*
* @return The bytes for message.
*/
com.google.protobuf.ByteString getMessageBytes();
/**
*
*
*
* The type of the event.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.EventType event_type = 2;
*
* @return The enum numeric value on the wire for eventType.
*/
int getEventTypeValue();
/**
*
*
*
* The type of the event.
*
*
* .google.cloud.dataplex.v1.GovernanceEvent.EventType event_type = 2;
*
* @return The eventType.
*/
com.google.cloud.dataplex.v1.GovernanceEvent.EventType getEventType();
/**
*
*
*
* 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.
*/
boolean hasEntity();
/**
*
*
*
* Entity resource information if the log event is associated with a
* specific entity.
*
*
* optional .google.cloud.dataplex.v1.GovernanceEvent.Entity entity = 3;
*
* @return The entity.
*/
com.google.cloud.dataplex.v1.GovernanceEvent.Entity getEntity();
/**
*
*
*
* Entity resource information if the log event is associated with a
* specific entity.
*
*
* optional .google.cloud.dataplex.v1.GovernanceEvent.Entity entity = 3;
*/
com.google.cloud.dataplex.v1.GovernanceEvent.EntityOrBuilder getEntityOrBuilder();
}