Package com.google.bigtable.admin.v2
Interface ListTablesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTablesResponse
,ListTablesResponse.Builder
public interface ListTablesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Set if not all tables could be returned in a single response.com.google.protobuf.ByteString
getNextPageTokenBytes()
Set if not all tables could be returned in a single response.Table
getTables(int index)
The tables present in the requested instance.int
getTablesCount()
The tables present in the requested instance.List<Table>
getTablesList()
The tables present in the requested instance.TableOrBuilder
getTablesOrBuilder(int index)
The tables present in the requested instance.List<? extends TableOrBuilder>
getTablesOrBuilderList()
The tables present in the requested instance.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTablesList
List<Table> getTablesList()
The tables present in the requested instance.
repeated .google.bigtable.admin.v2.Table tables = 1;
-
getTables
Table getTables(int index)
The tables present in the requested instance.
repeated .google.bigtable.admin.v2.Table tables = 1;
-
getTablesCount
int getTablesCount()
The tables present in the requested instance.
repeated .google.bigtable.admin.v2.Table tables = 1;
-
getTablesOrBuilderList
List<? extends TableOrBuilder> getTablesOrBuilderList()
The tables present in the requested instance.
repeated .google.bigtable.admin.v2.Table tables = 1;
-
getTablesOrBuilder
TableOrBuilder getTablesOrBuilder(int index)
The tables present in the requested instance.
repeated .google.bigtable.admin.v2.Table tables = 1;
-
getNextPageToken
String getNextPageToken()
Set if not all tables could be returned in a single response. Pass this value to `page_token` in another request to get the next page of results.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Set if not all tables could be returned in a single response. Pass this value to `page_token` in another request to get the next page of results.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-