com.google.cloud.datastream.v1.ErrorOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-datastream-v1 Show documentation
Show all versions of proto-google-cloud-datastream-v1 Show documentation
Proto library for google-cloud-datastream
/*
* 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/datastream/v1/datastream_resources.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.datastream.v1;
public interface ErrorOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.datastream.v1.Error)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* A title that explains the reason for the error.
*
*
* string reason = 1;
*
* @return The reason.
*/
java.lang.String getReason();
/**
*
*
*
* A title that explains the reason for the error.
*
*
* string reason = 1;
*
* @return The bytes for reason.
*/
com.google.protobuf.ByteString getReasonBytes();
/**
*
*
*
* A unique identifier for this specific error,
* allowing it to be traced throughout the system in logs and API responses.
*
*
* string error_uuid = 2;
*
* @return The errorUuid.
*/
java.lang.String getErrorUuid();
/**
*
*
*
* A unique identifier for this specific error,
* allowing it to be traced throughout the system in logs and API responses.
*
*
* string error_uuid = 2;
*
* @return The bytes for errorUuid.
*/
com.google.protobuf.ByteString getErrorUuidBytes();
/**
*
*
*
* A message containing more information about the error that occurred.
*
*
* string message = 3;
*
* @return The message.
*/
java.lang.String getMessage();
/**
*
*
*
* A message containing more information about the error that occurred.
*
*
* string message = 3;
*
* @return The bytes for message.
*/
com.google.protobuf.ByteString getMessageBytes();
/**
*
*
*
* The time when the error occurred.
*
*
* .google.protobuf.Timestamp error_time = 4;
*
* @return Whether the errorTime field is set.
*/
boolean hasErrorTime();
/**
*
*
*
* The time when the error occurred.
*
*
* .google.protobuf.Timestamp error_time = 4;
*
* @return The errorTime.
*/
com.google.protobuf.Timestamp getErrorTime();
/**
*
*
*
* The time when the error occurred.
*
*
* .google.protobuf.Timestamp error_time = 4;
*/
com.google.protobuf.TimestampOrBuilder getErrorTimeOrBuilder();
/**
*
*
*
* Additional information about the error.
*
*
* map<string, string> details = 5;
*/
int getDetailsCount();
/**
*
*
*
* Additional information about the error.
*
*
* map<string, string> details = 5;
*/
boolean containsDetails(java.lang.String key);
/** Use {@link #getDetailsMap()} instead. */
@java.lang.Deprecated
java.util.Map getDetails();
/**
*
*
*
* Additional information about the error.
*
*
* map<string, string> details = 5;
*/
java.util.Map getDetailsMap();
/**
*
*
*
* Additional information about the error.
*
*
* map<string, string> details = 5;
*/
/* nullable */
java.lang.String getDetailsOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue);
/**
*
*
*
* Additional information about the error.
*
*
* map<string, string> details = 5;
*/
java.lang.String getDetailsOrThrow(java.lang.String key);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy