/*
* 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.3
package com.google.cloud.dataplex.v1;
public interface DiscoveryEventOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dataplex.v1.DiscoveryEvent)
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 id of the associated lake.
*
*
* string lake_id = 2;
*
* @return The lakeId.
*/
java.lang.String getLakeId();
/**
*
*
*
* The id of the associated lake.
*
*
* string lake_id = 2;
*
* @return The bytes for lakeId.
*/
com.google.protobuf.ByteString getLakeIdBytes();
/**
*
*
*
* The id of the associated zone.
*
*
* string zone_id = 3;
*
* @return The zoneId.
*/
java.lang.String getZoneId();
/**
*
*
*
* The id of the associated zone.
*
*
* string zone_id = 3;
*
* @return The bytes for zoneId.
*/
com.google.protobuf.ByteString getZoneIdBytes();
/**
*
*
*
* The id of the associated asset.
*
*
* string asset_id = 4;
*
* @return The assetId.
*/
java.lang.String getAssetId();
/**
*
*
*
* The id of the associated asset.
*
*
* string asset_id = 4;
*
* @return The bytes for assetId.
*/
com.google.protobuf.ByteString getAssetIdBytes();
/**
*
*
*
* The data location associated with the event.
*
*
* string data_location = 5;
*
* @return The dataLocation.
*/
java.lang.String getDataLocation();
/**
*
*
*
* The data location associated with the event.
*
*
* string data_location = 5;
*
* @return The bytes for dataLocation.
*/
com.google.protobuf.ByteString getDataLocationBytes();
/**
*
*
*
* The type of the event being logged.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.EventType type = 10;
*
* @return The enum numeric value on the wire for type.
*/
int getTypeValue();
/**
*
*
*
* The type of the event being logged.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.EventType type = 10;
*
* @return The type.
*/
com.google.cloud.dataplex.v1.DiscoveryEvent.EventType getType();
/**
*
*
*
* Details about discovery configuration in effect.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.ConfigDetails config = 20;
*
* @return Whether the config field is set.
*/
boolean hasConfig();
/**
*
*
*
* Details about discovery configuration in effect.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.ConfigDetails config = 20;
*
* @return The config.
*/
com.google.cloud.dataplex.v1.DiscoveryEvent.ConfigDetails getConfig();
/**
*
*
*
* Details about discovery configuration in effect.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.ConfigDetails config = 20;
*/
com.google.cloud.dataplex.v1.DiscoveryEvent.ConfigDetailsOrBuilder getConfigOrBuilder();
/**
*
*
*
* Details about the entity associated with the event.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.EntityDetails entity = 21;
*
* @return Whether the entity field is set.
*/
boolean hasEntity();
/**
*
*
*
* Details about the entity associated with the event.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.EntityDetails entity = 21;
*
* @return The entity.
*/
com.google.cloud.dataplex.v1.DiscoveryEvent.EntityDetails getEntity();
/**
*
*
*
* Details about the entity associated with the event.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.EntityDetails entity = 21;
*/
com.google.cloud.dataplex.v1.DiscoveryEvent.EntityDetailsOrBuilder getEntityOrBuilder();
/**
*
*
*
* Details about the partition associated with the event.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.PartitionDetails partition = 22;
*
* @return Whether the partition field is set.
*/
boolean hasPartition();
/**
*
*
*
* Details about the partition associated with the event.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.PartitionDetails partition = 22;
*
* @return The partition.
*/
com.google.cloud.dataplex.v1.DiscoveryEvent.PartitionDetails getPartition();
/**
*
*
*
* Details about the partition associated with the event.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.PartitionDetails partition = 22;
*/
com.google.cloud.dataplex.v1.DiscoveryEvent.PartitionDetailsOrBuilder getPartitionOrBuilder();
/**
*
*
*
* Details about the action associated with the event.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.ActionDetails action = 23;
*
* @return Whether the action field is set.
*/
boolean hasAction();
/**
*
*
*
* Details about the action associated with the event.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.ActionDetails action = 23;
*
* @return The action.
*/
com.google.cloud.dataplex.v1.DiscoveryEvent.ActionDetails getAction();
/**
*
*
*
* Details about the action associated with the event.
*
*
* .google.cloud.dataplex.v1.DiscoveryEvent.ActionDetails action = 23;
*/
com.google.cloud.dataplex.v1.DiscoveryEvent.ActionDetailsOrBuilder getActionOrBuilder();
com.google.cloud.dataplex.v1.DiscoveryEvent.DetailsCase getDetailsCase();
}