Interface SearchCatalogsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchCatalogsResponse
,SearchCatalogsResponse.Builder
public interface SearchCatalogsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Catalog
getCatalogs(int index)
The `Catalog`s computed from the resource context.int
getCatalogsCount()
The `Catalog`s computed from the resource context.List<Catalog>
getCatalogsList()
The `Catalog`s computed from the resource context.CatalogOrBuilder
getCatalogsOrBuilder(int index)
The `Catalog`s computed from the resource context.List<? extends CatalogOrBuilder>
getCatalogsOrBuilderList()
The `Catalog`s computed from the resource context.String
getNextPageToken()
A pagination token returned from a previous call to SearchCatalogs that indicates from where listing should continue.com.google.protobuf.ByteString
getNextPageTokenBytes()
A pagination token returned from a previous call to SearchCatalogs that indicates from where listing should continue.-
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 `Catalog`s computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Catalog catalogs = 1;
-
getCatalogs
Catalog getCatalogs(int index)
The `Catalog`s computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Catalog catalogs = 1;
-
getCatalogsCount
int getCatalogsCount()
The `Catalog`s computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Catalog catalogs = 1;
-
getCatalogsOrBuilderList
List<? extends CatalogOrBuilder> getCatalogsOrBuilderList()
The `Catalog`s computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Catalog catalogs = 1;
-
getCatalogsOrBuilder
CatalogOrBuilder getCatalogsOrBuilder(int index)
The `Catalog`s computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Catalog catalogs = 1;
-
getNextPageToken
String getNextPageToken()
A pagination token returned from a previous call to SearchCatalogs that indicates from where listing should continue.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A pagination token returned from a previous call to SearchCatalogs that indicates from where listing should continue.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-