Interface ListCatalogsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListCatalogsResponse,ListCatalogsResponse.Builder
public interface ListCatalogsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CataloggetCatalogs(int index)The catalogs from the specified project.intgetCatalogsCount()The catalogs from the specified project.List<Catalog>getCatalogsList()The catalogs from the specified project.CatalogOrBuildergetCatalogsOrBuilder(int index)The catalogs from the specified project.List<? extends CatalogOrBuilder>getCatalogsOrBuilderList()The catalogs from the specified project.StringgetNextPageToken()A token, which can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()A token, which can be sent as `page_token` to retrieve the next page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCatalogsList
List<Catalog> getCatalogsList()
The catalogs from the specified project.
repeated .google.cloud.bigquery.biglake.v1alpha1.Catalog catalogs = 1;
-
getCatalogs
Catalog getCatalogs(int index)
The catalogs from the specified project.
repeated .google.cloud.bigquery.biglake.v1alpha1.Catalog catalogs = 1;
-
getCatalogsCount
int getCatalogsCount()
The catalogs from the specified project.
repeated .google.cloud.bigquery.biglake.v1alpha1.Catalog catalogs = 1;
-
getCatalogsOrBuilderList
List<? extends CatalogOrBuilder> getCatalogsOrBuilderList()
The catalogs from the specified project.
repeated .google.cloud.bigquery.biglake.v1alpha1.Catalog catalogs = 1;
-
getCatalogsOrBuilder
CatalogOrBuilder getCatalogsOrBuilder(int index)
The catalogs from the specified project.
repeated .google.cloud.bigquery.biglake.v1alpha1.Catalog catalogs = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-