Package com.google.cloud.gkebackup.v1
Interface ListVolumeBackupsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListVolumeBackupsResponse,ListVolumeBackupsResponse.Builder
public interface ListVolumeBackupsResponseOrBuilder 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.ListVolumeBackupsRequest.page_token] in a subsequent `ListVolumeBackups` 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.ListVolumeBackupsRequest.page_token] in a subsequent `ListVolumeBackups` call to retrieve the next page of results.VolumeBackupgetVolumeBackups(int index)The list of VolumeBackups matching the given criteria.intgetVolumeBackupsCount()The list of VolumeBackups matching the given criteria.List<VolumeBackup>getVolumeBackupsList()The list of VolumeBackups matching the given criteria.VolumeBackupOrBuildergetVolumeBackupsOrBuilder(int index)The list of VolumeBackups matching the given criteria.List<? extends VolumeBackupOrBuilder>getVolumeBackupsOrBuilderList()The list of VolumeBackups 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
-
getVolumeBackupsList
List<VolumeBackup> getVolumeBackupsList()
The list of VolumeBackups matching the given criteria.
repeated .google.cloud.gkebackup.v1.VolumeBackup volume_backups = 1;
-
getVolumeBackups
VolumeBackup getVolumeBackups(int index)
The list of VolumeBackups matching the given criteria.
repeated .google.cloud.gkebackup.v1.VolumeBackup volume_backups = 1;
-
getVolumeBackupsCount
int getVolumeBackupsCount()
The list of VolumeBackups matching the given criteria.
repeated .google.cloud.gkebackup.v1.VolumeBackup volume_backups = 1;
-
getVolumeBackupsOrBuilderList
List<? extends VolumeBackupOrBuilder> getVolumeBackupsOrBuilderList()
The list of VolumeBackups matching the given criteria.
repeated .google.cloud.gkebackup.v1.VolumeBackup volume_backups = 1;
-
getVolumeBackupsOrBuilder
VolumeBackupOrBuilder getVolumeBackupsOrBuilder(int index)
The list of VolumeBackups matching the given criteria.
repeated .google.cloud.gkebackup.v1.VolumeBackup volume_backups = 1;
-
getNextPageToken
String getNextPageToken()
A token which may be sent as [page_token][google.cloud.gkebackup.v1.ListVolumeBackupsRequest.page_token] in a subsequent `ListVolumeBackups` 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.ListVolumeBackupsRequest.page_token] in a subsequent `ListVolumeBackups` 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.
-
-