Package com.google.bigtable.v2
Interface MutateRowsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MutateRowsResponse
,MutateRowsResponse.Builder
public interface MutateRowsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MutateRowsResponse.Entry
getEntries(int index)
One or more results for Entries from the batch request.int
getEntriesCount()
One or more results for Entries from the batch request.List<MutateRowsResponse.Entry>
getEntriesList()
One or more results for Entries from the batch request.MutateRowsResponse.EntryOrBuilder
getEntriesOrBuilder(int index)
One or more results for Entries from the batch request.List<? extends MutateRowsResponse.EntryOrBuilder>
getEntriesOrBuilderList()
One or more results for Entries from the batch request.RateLimitInfo
getRateLimitInfo()
Information about how client should limit the rate (QPS).RateLimitInfoOrBuilder
getRateLimitInfoOrBuilder()
Information about how client should limit the rate (QPS).boolean
hasRateLimitInfo()
Information about how client should limit the rate (QPS).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntriesList
List<MutateRowsResponse.Entry> getEntriesList()
One or more results for Entries from the batch request.
repeated .google.bigtable.v2.MutateRowsResponse.Entry entries = 1;
-
getEntries
MutateRowsResponse.Entry getEntries(int index)
One or more results for Entries from the batch request.
repeated .google.bigtable.v2.MutateRowsResponse.Entry entries = 1;
-
getEntriesCount
int getEntriesCount()
One or more results for Entries from the batch request.
repeated .google.bigtable.v2.MutateRowsResponse.Entry entries = 1;
-
getEntriesOrBuilderList
List<? extends MutateRowsResponse.EntryOrBuilder> getEntriesOrBuilderList()
One or more results for Entries from the batch request.
repeated .google.bigtable.v2.MutateRowsResponse.Entry entries = 1;
-
getEntriesOrBuilder
MutateRowsResponse.EntryOrBuilder getEntriesOrBuilder(int index)
One or more results for Entries from the batch request.
repeated .google.bigtable.v2.MutateRowsResponse.Entry entries = 1;
-
hasRateLimitInfo
boolean hasRateLimitInfo()
Information about how client should limit the rate (QPS). Primirily used by supported official Cloud Bigtable clients. If unset, the rate limit info is not provided by the server.
optional .google.bigtable.v2.RateLimitInfo rate_limit_info = 3;
- Returns:
- Whether the rateLimitInfo field is set.
-
getRateLimitInfo
RateLimitInfo getRateLimitInfo()
Information about how client should limit the rate (QPS). Primirily used by supported official Cloud Bigtable clients. If unset, the rate limit info is not provided by the server.
optional .google.bigtable.v2.RateLimitInfo rate_limit_info = 3;
- Returns:
- The rateLimitInfo.
-
getRateLimitInfoOrBuilder
RateLimitInfoOrBuilder getRateLimitInfoOrBuilder()
Information about how client should limit the rate (QPS). Primirily used by supported official Cloud Bigtable clients. If unset, the rate limit info is not provided by the server.
optional .google.bigtable.v2.RateLimitInfo rate_limit_info = 3;
-
-