Package com.google.cloud.gkebackup.v1
Interface ListVolumeRestoresResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListVolumeRestoresResponse,ListVolumeRestoresResponse.Builder
public interface ListVolumeRestoresResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()A token which may be sent as [page_token][google.cloud.gkebackup.v1.ListVolumeRestoresRequest.page_token] in a subsequent `ListVolumeRestores` call to retrieve the next page of results.com.google.protobuf.ByteStringgetNextPageTokenBytes()A token which may be sent as [page_token][google.cloud.gkebackup.v1.ListVolumeRestoresRequest.page_token] in a subsequent `ListVolumeRestores` call to retrieve the next page of results.VolumeRestoregetVolumeRestores(int index)The list of VolumeRestores matching the given criteria.intgetVolumeRestoresCount()The list of VolumeRestores matching the given criteria.List<VolumeRestore>getVolumeRestoresList()The list of VolumeRestores matching the given criteria.VolumeRestoreOrBuildergetVolumeRestoresOrBuilder(int index)The list of VolumeRestores matching the given criteria.List<? extends VolumeRestoreOrBuilder>getVolumeRestoresOrBuilderList()The list of VolumeRestores matching the given criteria.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVolumeRestoresList
List<VolumeRestore> getVolumeRestoresList()
The list of VolumeRestores matching the given criteria.
repeated .google.cloud.gkebackup.v1.VolumeRestore volume_restores = 1;
-
getVolumeRestores
VolumeRestore getVolumeRestores(int index)
The list of VolumeRestores matching the given criteria.
repeated .google.cloud.gkebackup.v1.VolumeRestore volume_restores = 1;
-
getVolumeRestoresCount
int getVolumeRestoresCount()
The list of VolumeRestores matching the given criteria.
repeated .google.cloud.gkebackup.v1.VolumeRestore volume_restores = 1;
-
getVolumeRestoresOrBuilderList
List<? extends VolumeRestoreOrBuilder> getVolumeRestoresOrBuilderList()
The list of VolumeRestores matching the given criteria.
repeated .google.cloud.gkebackup.v1.VolumeRestore volume_restores = 1;
-
getVolumeRestoresOrBuilder
VolumeRestoreOrBuilder getVolumeRestoresOrBuilder(int index)
The list of VolumeRestores matching the given criteria.
repeated .google.cloud.gkebackup.v1.VolumeRestore volume_restores = 1;
-
getNextPageToken
String getNextPageToken()
A token which may be sent as [page_token][google.cloud.gkebackup.v1.ListVolumeRestoresRequest.page_token] in a subsequent `ListVolumeRestores` call to retrieve the next page of results. If this field is omitted or empty, then there are no more results to return.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token which may be sent as [page_token][google.cloud.gkebackup.v1.ListVolumeRestoresRequest.page_token] in a subsequent `ListVolumeRestores` call to retrieve the next page of results. If this field is omitted or empty, then there are no more results to return.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-