Interface ResourceErrorDetailOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ResourceErrorDetail
,ResourceErrorDetail.Builder
public interface ResourceErrorDetailOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getErrorCount()
Required.ErrorDetail
getErrorDetails(int index)
Required.int
getErrorDetailsCount()
Required.List<ErrorDetail>
getErrorDetailsList()
Required.ErrorDetailOrBuilder
getErrorDetailsOrBuilder(int index)
Required.List<? extends ErrorDetailOrBuilder>
getErrorDetailsOrBuilderList()
Required.com.google.rpc.ResourceInfo
getResourceInfo()
Required.com.google.rpc.ResourceInfoOrBuilder
getResourceInfoOrBuilder()
Required.boolean
hasResourceInfo()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasResourceInfo
boolean hasResourceInfo()
Required. Information about the resource where the error is located.
.google.rpc.ResourceInfo resource_info = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the resourceInfo field is set.
-
getResourceInfo
com.google.rpc.ResourceInfo getResourceInfo()
Required. Information about the resource where the error is located.
.google.rpc.ResourceInfo resource_info = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The resourceInfo.
-
getResourceInfoOrBuilder
com.google.rpc.ResourceInfoOrBuilder getResourceInfoOrBuilder()
Required. Information about the resource where the error is located.
.google.rpc.ResourceInfo resource_info = 1 [(.google.api.field_behavior) = REQUIRED];
-
getErrorDetailsList
List<ErrorDetail> getErrorDetailsList()
Required. The error details for the resource.
repeated .google.cloud.bigquery.migration.v2alpha.ErrorDetail error_details = 2 [(.google.api.field_behavior) = REQUIRED];
-
getErrorDetails
ErrorDetail getErrorDetails(int index)
Required. The error details for the resource.
repeated .google.cloud.bigquery.migration.v2alpha.ErrorDetail error_details = 2 [(.google.api.field_behavior) = REQUIRED];
-
getErrorDetailsCount
int getErrorDetailsCount()
Required. The error details for the resource.
repeated .google.cloud.bigquery.migration.v2alpha.ErrorDetail error_details = 2 [(.google.api.field_behavior) = REQUIRED];
-
getErrorDetailsOrBuilderList
List<? extends ErrorDetailOrBuilder> getErrorDetailsOrBuilderList()
Required. The error details for the resource.
repeated .google.cloud.bigquery.migration.v2alpha.ErrorDetail error_details = 2 [(.google.api.field_behavior) = REQUIRED];
-
getErrorDetailsOrBuilder
ErrorDetailOrBuilder getErrorDetailsOrBuilder(int index)
Required. The error details for the resource.
repeated .google.cloud.bigquery.migration.v2alpha.ErrorDetail error_details = 2 [(.google.api.field_behavior) = REQUIRED];
-
getErrorCount
int getErrorCount()
Required. How many errors there are in total for the resource. Truncation can be indicated by having an `error_count` that is higher than the size of `error_details`.
int32 error_count = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The errorCount.
-
-