Interface ErrorDetailOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ErrorDetail
,ErrorDetail.Builder
public interface ErrorDetailOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.rpc.ErrorInfo
getErrorInfo()
Required.com.google.rpc.ErrorInfoOrBuilder
getErrorInfoOrBuilder()
Required.ErrorLocation
getLocation()
Optional.ErrorLocationOrBuilder
getLocationOrBuilder()
Optional.boolean
hasErrorInfo()
Required.boolean
hasLocation()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasLocation
boolean hasLocation()
Optional. The exact location within the resource (if applicable).
.google.cloud.bigquery.migration.v2.ErrorLocation location = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- Whether the location field is set.
-
getLocation
ErrorLocation getLocation()
Optional. The exact location within the resource (if applicable).
.google.cloud.bigquery.migration.v2.ErrorLocation location = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The location.
-
getLocationOrBuilder
ErrorLocationOrBuilder getLocationOrBuilder()
Optional. The exact location within the resource (if applicable).
.google.cloud.bigquery.migration.v2.ErrorLocation location = 1 [(.google.api.field_behavior) = OPTIONAL];
-
hasErrorInfo
boolean hasErrorInfo()
Required. Describes the cause of the error with structured detail.
.google.rpc.ErrorInfo error_info = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the errorInfo field is set.
-
getErrorInfo
com.google.rpc.ErrorInfo getErrorInfo()
Required. Describes the cause of the error with structured detail.
.google.rpc.ErrorInfo error_info = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The errorInfo.
-
getErrorInfoOrBuilder
com.google.rpc.ErrorInfoOrBuilder getErrorInfoOrBuilder()
Required. Describes the cause of the error with structured detail.
.google.rpc.ErrorInfo error_info = 2 [(.google.api.field_behavior) = REQUIRED];
-
-