showBackup
Shows information about one or more backups accessible via the data source specified bydatasourceName.Parameters:request-Requestobject containing the parameters for the operation.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.showBackup
public ShowBackupResponse showBackup(String backupName, String datasourceName, Map<String, String> options) throws GPUdbException Shows information about one or more backups accessible via the data source specified bydatasourceName.Parameters:backupName- Name of the backup. An empty string or ’*’ will show all existing backups. Any text followed by a ’*’ will show backups whose name starts with that text. The default value is ”.datasourceName- Data source through which the backup is accessible.options- Optional parameters.BACKUP_ID: ID of the snapshot to show. Leave empty to show information from the most recent snapshot in the backup. The default value is ”.BACKUP_TYPE: Show backups by type. This option is ignored ifBACKUP_IDis non-empty. Supported values:ALL: Show all backup types.FULL: Show full backups only.INCREMENTAL: Show incremental backups only.DIFFERENTIAL: Show differential backups only.
ALL.SHOW_CONTENTS: Show the contents of the backed-up snapshots. Supported values:NONE: Don’t show snapshot contents.OBJECT_NAMES: Show backed-up object names, and for tables, sizing detail.OBJECT_FILES: Show backed-up object names, and for tables, sizing detail and associated files.
NONE.NO_ERROR_IF_NOT_EXISTS: Whether or not to suppress the error if the specified backup does not exist. Supported values:The default value isFALSE.
Map.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.