public interface ReadRowsRequestOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getAppProfileId()
public abstract String getAppProfileId()
This value specifies routing for replication. If not specified, the "default" application profile will be used.
string app_profile_id = 5;
Type | Description |
String | The appProfileId. |
getAppProfileIdBytes()
public abstract ByteString getAppProfileIdBytes()
This value specifies routing for replication. If not specified, the "default" application profile will be used.
string app_profile_id = 5;
Type | Description |
ByteString | The bytes for appProfileId. |
getFilter()
public abstract 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;
Type | Description |
RowFilter | The filter. |
getFilterOrBuilder()
public abstract 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;
Type | Description |
RowFilterOrBuilder |
getRows()
public abstract RowSet getRows()
The row keys and/or ranges to read. If not specified, reads from all rows.
.google.bigtable.v2.RowSet rows = 2;
Type | Description |
RowSet | The rows. |
getRowsLimit()
public abstract 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;
Type | Description |
long | The rowsLimit. |
getRowsOrBuilder()
public abstract RowSetOrBuilder getRowsOrBuilder()
The row keys and/or ranges to read. If not specified, reads from all rows.
.google.bigtable.v2.RowSet rows = 2;
Type | Description |
RowSetOrBuilder |
getTableName()
public abstract String getTableName()
Required. 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) = REQUIRED, (.google.api.resource_reference) = { ... }
Type | Description |
String | The tableName. |
getTableNameBytes()
public abstract ByteString getTableNameBytes()
Required. 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) = REQUIRED, (.google.api.resource_reference) = { ... }
Type | Description |
ByteString | The bytes for tableName. |
hasFilter()
public abstract 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;
Type | Description |
boolean | Whether the filter field is set. |
hasRows()
public abstract boolean hasRows()
The row keys and/or ranges to read. If not specified, reads from all rows.
.google.bigtable.v2.RowSet rows = 2;
Type | Description |
boolean | Whether the rows field is set. |