Class: Google::Bigtable::V2::MutateRowsResponse
- Inherits:
-
Object
- Object
- Google::Bigtable::V2::MutateRowsResponse
- Defined in:
- lib/google/cloud/bigtable/v2/doc/google/bigtable/v2/bigtable.rb
Overview
Response message for BigtableService.MutateRows.
Defined Under Namespace
Classes: Entry
Instance Attribute Summary collapse
-
#entries ⇒ Array<Google::Bigtable::V2::MutateRowsResponse::Entry>
One or more results for Entries from the batch request.
Instance Attribute Details
#entries ⇒ Array<Google::Bigtable::V2::MutateRowsResponse::Entry>
Returns One or more results for Entries from the batch request.
201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/google/cloud/bigtable/v2/doc/google/bigtable/v2/bigtable.rb', line 201 class MutateRowsResponse # @!attribute [rw] index # @return [Integer] # The index into the original request's +entries+ list of the Entry # for which a result is being reported. # @!attribute [rw] status # @return [Google::Rpc::Status] # 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. class Entry; end end |