Interface SearchVersionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchVersionsResponse
,SearchVersionsResponse.Builder
public interface SearchVersionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
A pagination token returned from a previous call to SearchVersions that indicates from where the listing should continue.com.google.protobuf.ByteString
getNextPageTokenBytes()
A pagination token returned from a previous call to SearchVersions that indicates from where the listing should continue.Version
getVersions(int index)
The `Version` resources computed from the resource context.int
getVersionsCount()
The `Version` resources computed from the resource context.List<Version>
getVersionsList()
The `Version` resources computed from the resource context.VersionOrBuilder
getVersionsOrBuilder(int index)
The `Version` resources computed from the resource context.List<? extends VersionOrBuilder>
getVersionsOrBuilderList()
The `Version` resources computed from the resource context.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVersionsList
List<Version> getVersionsList()
The `Version` resources computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Version versions = 1;
-
getVersions
Version getVersions(int index)
The `Version` resources computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Version versions = 1;
-
getVersionsCount
int getVersionsCount()
The `Version` resources computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Version versions = 1;
-
getVersionsOrBuilderList
List<? extends VersionOrBuilder> getVersionsOrBuilderList()
The `Version` resources computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Version versions = 1;
-
getVersionsOrBuilder
VersionOrBuilder getVersionsOrBuilder(int index)
The `Version` resources computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Version versions = 1;
-
getNextPageToken
String getNextPageToken()
A pagination token returned from a previous call to SearchVersions that indicates from where the 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 SearchVersions that indicates from where the listing should continue.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-