Package com.google.bigtable.v2
Interface MutateRowsResponse.EntryOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MutateRowsResponse.Entry,MutateRowsResponse.Entry.Builder
- Enclosing class:
- MutateRowsResponse
public static interface MutateRowsResponse.EntryOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionlonggetIndex()The index into the original request's `entries` list of the Entry for which a result is being reported.com.google.rpc.StatusThe result of the request Entry identified by `index`.com.google.rpc.StatusOrBuilderThe result of the request Entry identified by `index`.booleanThe result of the request Entry identified by `index`.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getIndex
long getIndex()The index into the original request's `entries` list of the Entry for which a result is being reported.
int64 index = 1;- Returns:
- The index.
-
hasStatus
boolean hasStatus()The result of the request Entry identified by `index`. Depending on how requests are batched during execution, it is possible for one Entry to fail due to an error with another Entry. In the event that this occurs, the same error will be reported for both entries.
.google.rpc.Status status = 2;- Returns:
- Whether the status field is set.
-
getStatus
com.google.rpc.Status getStatus()The result of the request Entry identified by `index`. Depending on how requests are batched during execution, it is possible for one Entry to fail due to an error with another Entry. In the event that this occurs, the same error will be reported for both entries.
.google.rpc.Status status = 2;- Returns:
- The status.
-
getStatusOrBuilder
com.google.rpc.StatusOrBuilder getStatusOrBuilder()The result of the request Entry identified by `index`. Depending on how requests are batched during execution, it is possible for one Entry to fail due to an error with another Entry. In the event that this occurs, the same error will be reported for both entries.
.google.rpc.Status status = 2;
-