Interface ListApisResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListApisResponse
,ListApisResponse.Builder
public interface ListApisResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Api
getApis(int index)
The APIs from the specified publisher.int
getApisCount()
The APIs from the specified publisher.List<Api>
getApisList()
The APIs from the specified publisher.ApiOrBuilder
getApisOrBuilder(int index)
The APIs from the specified publisher.List<? extends ApiOrBuilder>
getApisOrBuilderList()
The APIs from the specified publisher.String
getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
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
-
getApisList
List<Api> getApisList()
The APIs from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.Api apis = 1;
-
getApis
Api getApis(int index)
The APIs from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.Api apis = 1;
-
getApisCount
int getApisCount()
The APIs from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.Api apis = 1;
-
getApisOrBuilderList
List<? extends ApiOrBuilder> getApisOrBuilderList()
The APIs from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.Api apis = 1;
-
getApisOrBuilder
ApiOrBuilder getApisOrBuilder(int index)
The APIs from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.Api apis = 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.
-
-