public static final class RestoreBackupRequest.Options extends Object
| Modifier and Type | Field and Description |
|---|---|
static String |
BACKUP_ID
ID of the snapshot to restore.
|
static String |
CHECKSUM
Whether or not to verify checksums for backup files when restoring.
|
static String |
CREATE_SCHEMA_IF_NOT_EXIST
Behavior to apply when the schema containing any database object to
restore does not already exist.
|
static String |
DDL_ONLY
Behavior to apply when restoring tables.
|
static String |
DRY_RUN
Whether or not to perform a dry run of the restoration operation.
|
static String |
FALSE |
static String |
NONE
If an object to be restored already exists with the same name, abort
and return error.
|
static String |
REINGEST
Behavior to apply when restoring table data.
|
static String |
RENAME
If an object to be restored already exists with the same name, move
that existing one to the schema specified by
RENAMED_OBJECTS_SCHEMA. |
static String |
RENAMED_OBJECTS_SCHEMA
If the
RESTORE_POLICY is RENAME, use this schema for relocated existing
objects instead of the default generated one. |
static String |
REPLACE
If an object to be restored already exists with the same name,
replace it with the backup version.
|
static String |
RESTORE_POLICY
Behavior to apply when any database object to restore already
exists.
|
static String |
TRUE |
public static final String BACKUP_ID
public static final String RESTORE_POLICY
NONE: If an object to be restored
already exists with the same name, abort and return error.
REPLACE: If an object to be restored
already exists with the same name, replace it with the
backup version.
RENAME: If an object to be restored
already exists with the same name, move that existing one to
the schema specified by RENAMED_OBJECTS_SCHEMA.
NONE.public static final String NONE
public static final String REPLACE
public static final String RENAME
RENAMED_OBJECTS_SCHEMA.public static final String RENAMED_OBJECTS_SCHEMA
RESTORE_POLICY is RENAME, use this schema for relocated existing
objects instead of the default generated one. The default value is
''.public static final String CREATE_SCHEMA_IF_NOT_EXIST
TRUE: If the schema containing any
restored object does not exist, create it automatically.
FALSE: If the schema containing any
restored object does not exist, return an error.
TRUE.public static final String TRUE
public static final String FALSE
public static final String REINGEST
TRUE: Restore table data by
re-ingesting it. This is the default behavior if the
cluster topology differs from that of the contained backup.
FALSE: Restore the persisted data
files directly.
FALSE.public static final String DDL_ONLY
FALSE.public static final String CHECKSUM
FALSE.public static final String DRY_RUN
FALSE.Copyright © 2025. All rights reserved.