Interface ListApiSpecRevisionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListApiSpecRevisionsResponse,ListApiSpecRevisionsResponse.Builder
public interface ListApiSpecRevisionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApiSpecgetApiSpecs(int index)The revisions of the spec.intgetApiSpecsCount()The revisions of the spec.List<ApiSpec>getApiSpecsList()The revisions of the spec.ApiSpecOrBuildergetApiSpecsOrBuilder(int index)The revisions of the spec.List<? extends ApiSpecOrBuilder>getApiSpecsOrBuilderList()The revisions of the spec.StringgetNextPageToken()A token that can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()A token that 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
-
getApiSpecsList
List<ApiSpec> getApiSpecsList()
The revisions of the spec.
repeated .google.cloud.apigeeregistry.v1.ApiSpec api_specs = 1;
-
getApiSpecs
ApiSpec getApiSpecs(int index)
The revisions of the spec.
repeated .google.cloud.apigeeregistry.v1.ApiSpec api_specs = 1;
-
getApiSpecsCount
int getApiSpecsCount()
The revisions of the spec.
repeated .google.cloud.apigeeregistry.v1.ApiSpec api_specs = 1;
-
getApiSpecsOrBuilderList
List<? extends ApiSpecOrBuilder> getApiSpecsOrBuilderList()
The revisions of the spec.
repeated .google.cloud.apigeeregistry.v1.ApiSpec api_specs = 1;
-
getApiSpecsOrBuilder
ApiSpecOrBuilder getApiSpecsOrBuilder(int index)
The revisions of the spec.
repeated .google.cloud.apigeeregistry.v1.ApiSpec api_specs = 1;
-
getNextPageToken
String getNextPageToken()
A token that 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 that 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.
-
-