public interface ReadRowsRequestOrBuilder extends MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAppProfileId()
This is a private alpha release of Cloud Bigtable replication.
|
ByteString |
getAppProfileIdBytes()
This is a private alpha release of Cloud Bigtable replication.
|
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).
|
RowSet |
getRows()
The row keys and/or ranges to read.
|
long |
getRowsLimit()
The read will terminate after committing to N rows' worth of results.
|
RowSetOrBuilder |
getRowsOrBuilder()
The row keys and/or ranges to read.
|
java.lang.String |
getTableName()
The unique name of the table from which to read.
|
ByteString |
getTableNameBytes()
The unique name of the table from which to read.
|
boolean |
hasFilter()
The filter to apply to the contents of the specified row(s).
|
boolean |
hasRows()
The row keys and/or ranges to read.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
isInitialized
java.lang.String getTableName()
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;
ByteString getTableNameBytes()
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;
java.lang.String getAppProfileId()
This is a private alpha release of Cloud Bigtable replication. This feature is not currently available to most Cloud Bigtable customers. This feature might be changed in backward-incompatible ways and is not recommended for production use. It is not subject to any SLA or deprecation policy. This value specifies routing for replication. If not specified, the "default" application profile will be used.
string app_profile_id = 5;
ByteString getAppProfileIdBytes()
This is a private alpha release of Cloud Bigtable replication. This feature is not currently available to most Cloud Bigtable customers. This feature might be changed in backward-incompatible ways and is not recommended for production use. It is not subject to any SLA or deprecation policy. 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. If not specified, reads from all rows.
.google.bigtable.v2.RowSet rows = 2;
RowSet getRows()
The row keys and/or ranges to read. If not specified, reads from all rows.
.google.bigtable.v2.RowSet rows = 2;
RowSetOrBuilder getRowsOrBuilder()
The row keys and/or ranges to read. 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 terminate after committing to N rows' worth of results. The default (zero) is to return all results.
int64 rows_limit = 4;