@Generated
public interface ReadRowsRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
String |
getAppProfileId()
This value specifies routing for replication.
|
com.google.protobuf.ByteString |
getAppProfileIdBytes()
This value specifies routing for replication.
|
String |
getAuthorizedViewName()
Optional.
|
com.google.protobuf.ByteString |
getAuthorizedViewNameBytes()
Optional.
|
RowFilter |
getFilter()
The filter to apply to the contents of the specified row(s).
|
RowFilterOrBuilder |
getFilterOrBuilder()
The filter to apply to the contents of the specified row(s).
|
String |
getMaterializedViewName()
Optional.
|
com.google.protobuf.ByteString |
getMaterializedViewNameBytes()
Optional.
|
ReadRowsRequest.RequestStatsView |
getRequestStatsView()
The view into RequestStats, as described above.
|
int |
getRequestStatsViewValue()
The view into RequestStats, as described above.
|
boolean |
getReversed()
Experimental API - Please note that this API is currently experimental
and can change in the future.
|
RowSet |
getRows()
The row keys and/or ranges to read sequentially.
|
long |
getRowsLimit()
The read will stop after committing to N rows' worth of results.
|
RowSetOrBuilder |
getRowsOrBuilder()
The row keys and/or ranges to read sequentially.
|
String |
getTableName()
Optional.
|
com.google.protobuf.ByteString |
getTableNameBytes()
Optional.
|
boolean |
hasFilter()
The filter to apply to the contents of the specified row(s).
|
boolean |
hasRows()
The row keys and/or ranges to read sequentially.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofString getTableName()
Optional. The unique name of the table from which to read. Values are of the form `projects/<project>/instances/<instance>/tables/<table>`.
string table_name = 1 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
com.google.protobuf.ByteString getTableNameBytes()
Optional. The unique name of the table from which to read. Values are of the form `projects/<project>/instances/<instance>/tables/<table>`.
string table_name = 1 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
String getAuthorizedViewName()
Optional. The unique name of the AuthorizedView from which to read. Values are of the form `projects/<project>/instances/<instance>/tables/<table>/authorizedViews/<authorized_view>`.
string authorized_view_name = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
com.google.protobuf.ByteString getAuthorizedViewNameBytes()
Optional. The unique name of the AuthorizedView from which to read. Values are of the form `projects/<project>/instances/<instance>/tables/<table>/authorizedViews/<authorized_view>`.
string authorized_view_name = 9 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
String getMaterializedViewName()
Optional. The unique name of the MaterializedView from which to read. Values are of the form `projects/<project>/instances/<instance>/materializedViews/<materialized_view>`.
string materialized_view_name = 11 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
com.google.protobuf.ByteString getMaterializedViewNameBytes()
Optional. The unique name of the MaterializedView from which to read. Values are of the form `projects/<project>/instances/<instance>/materializedViews/<materialized_view>`.
string materialized_view_name = 11 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
String getAppProfileId()
This value specifies routing for replication. If not specified, the "default" application profile will be used.
string app_profile_id = 5;com.google.protobuf.ByteString getAppProfileIdBytes()
This value specifies routing for replication. If not specified, the "default" application profile will be used.
string app_profile_id = 5;boolean hasRows()
The row keys and/or ranges to read sequentially. If not specified, reads from all rows.
.google.bigtable.v2.RowSet rows = 2;RowSet getRows()
The row keys and/or ranges to read sequentially. If not specified, reads from all rows.
.google.bigtable.v2.RowSet rows = 2;RowSetOrBuilder getRowsOrBuilder()
The row keys and/or ranges to read sequentially. If not specified, reads from all rows.
.google.bigtable.v2.RowSet rows = 2;boolean hasFilter()
The filter to apply to the contents of the specified row(s). If unset, reads the entirety of each row.
.google.bigtable.v2.RowFilter filter = 3;RowFilter getFilter()
The filter to apply to the contents of the specified row(s). If unset, reads the entirety of each row.
.google.bigtable.v2.RowFilter filter = 3;RowFilterOrBuilder getFilterOrBuilder()
The filter to apply to the contents of the specified row(s). If unset, reads the entirety of each row.
.google.bigtable.v2.RowFilter filter = 3;long getRowsLimit()
The read will stop after committing to N rows' worth of results. The default (zero) is to return all results.
int64 rows_limit = 4;int getRequestStatsViewValue()
The view into RequestStats, as described above.
.google.bigtable.v2.ReadRowsRequest.RequestStatsView request_stats_view = 6;ReadRowsRequest.RequestStatsView getRequestStatsView()
The view into RequestStats, as described above.
.google.bigtable.v2.ReadRowsRequest.RequestStatsView request_stats_view = 6;boolean getReversed()
Experimental API - Please note that this API is currently experimental
and can change in the future.
Return rows in lexiographical descending order of the row keys. The row
contents will not be affected by this flag.
Example result set:
[
{key: "k2", "f:col1": "v1", "f:col2": "v1"},
{key: "k1", "f:col1": "v2", "f:col2": "v2"}
]
bool reversed = 7;Copyright © 2026 Google LLC. All rights reserved.