Package com.google.cloud.gkebackup.v1
Interface ListBackupsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListBackupsResponse
,ListBackupsResponse.Builder
public interface ListBackupsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Backup
getBackups(int index)
The list of Backups matching the given criteria.int
getBackupsCount()
The list of Backups matching the given criteria.List<Backup>
getBackupsList()
The list of Backups matching the given criteria.BackupOrBuilder
getBackupsOrBuilder(int index)
The list of Backups matching the given criteria.List<? extends BackupOrBuilder>
getBackupsOrBuilderList()
The list of Backups matching the given criteria.String
getNextPageToken()
A token which may be sent as [page_token][google.cloud.gkebackup.v1.ListBackupsRequest.page_token] in a subsequent `ListBackups` call to retrieve the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token which may be sent as [page_token][google.cloud.gkebackup.v1.ListBackupsRequest.page_token] in a subsequent `ListBackups` call to retrieve the next page of results.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBackupsList
List<Backup> getBackupsList()
The list of Backups matching the given criteria.
repeated .google.cloud.gkebackup.v1.Backup backups = 1;
-
getBackups
Backup getBackups(int index)
The list of Backups matching the given criteria.
repeated .google.cloud.gkebackup.v1.Backup backups = 1;
-
getBackupsCount
int getBackupsCount()
The list of Backups matching the given criteria.
repeated .google.cloud.gkebackup.v1.Backup backups = 1;
-
getBackupsOrBuilderList
List<? extends BackupOrBuilder> getBackupsOrBuilderList()
The list of Backups matching the given criteria.
repeated .google.cloud.gkebackup.v1.Backup backups = 1;
-
getBackupsOrBuilder
BackupOrBuilder getBackupsOrBuilder(int index)
The list of Backups matching the given criteria.
repeated .google.cloud.gkebackup.v1.Backup backups = 1;
-
getNextPageToken
String getNextPageToken()
A token which may be sent as [page_token][google.cloud.gkebackup.v1.ListBackupsRequest.page_token] in a subsequent `ListBackups` 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.ListBackupsRequest.page_token] in a subsequent `ListBackups` 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.
-
-