Interface ListApiVersionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListApiVersionsResponse
,ListApiVersionsResponse.Builder
public interface ListApiVersionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApiVersion
getApiVersions(int index)
The versions from the specified publisher.int
getApiVersionsCount()
The versions from the specified publisher.List<ApiVersion>
getApiVersionsList()
The versions from the specified publisher.ApiVersionOrBuilder
getApiVersionsOrBuilder(int index)
The versions from the specified publisher.List<? extends ApiVersionOrBuilder>
getApiVersionsOrBuilderList()
The versions 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
-
getApiVersionsList
List<ApiVersion> getApiVersionsList()
The versions from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.ApiVersion api_versions = 1;
-
getApiVersions
ApiVersion getApiVersions(int index)
The versions from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.ApiVersion api_versions = 1;
-
getApiVersionsCount
int getApiVersionsCount()
The versions from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.ApiVersion api_versions = 1;
-
getApiVersionsOrBuilderList
List<? extends ApiVersionOrBuilder> getApiVersionsOrBuilderList()
The versions from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.ApiVersion api_versions = 1;
-
getApiVersionsOrBuilder
ApiVersionOrBuilder getApiVersionsOrBuilder(int index)
The versions from the specified publisher.
repeated .google.cloud.apigeeregistry.v1.ApiVersion api_versions = 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.
-
-