Class Backup.Builder
- Enclosing class:
- Backup
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected BackupInfo.Builder
addAllReferencingBackups
(List<String> referencingBackups) Output Only.build()
Builds the backup from this builder.setDatabase
(DatabaseId database) Required for creating a new backup.setEncryptionConfig
(BackupEncryptionConfig encryptionConfig) Optional for creating a new backup.setExpireTime
(com.google.cloud.Timestamp expireTime) Required for creating a new backup.protected BackupInfo.Builder
setMaxExpireTime
(com.google.cloud.Timestamp maxExpireTime) Output Only.setVersionTime
(com.google.cloud.Timestamp versionTime) Optional for creating a new backup.
-
Field Details
-
id
-
-
Method Details
-
build
Description copied from class:BackupInfo.Builder
Builds the backup from this builder.- Specified by:
build
in classBackupInfo.Builder
-
setExpireTime
Description copied from class:BackupInfo.Builder
Required for creating a new backup.Sets the expiration time of the backup. The expiration time of the backup, with microseconds granularity that must be at least 6 hours and at most 366 days from the time the request is received. Once the expireTime has passed, Cloud Spanner will delete the backup and free the resources used by the backup.
- Specified by:
setExpireTime
in classBackupInfo.Builder
-
setVersionTime
Description copied from class:BackupInfo.Builder
Optional for creating a new backup.Specifies the timestamp to have an externally consistent copy of the database. If no version time is specified, it will be automatically set to the backup create time.
The version time can be as far in the past as specified by the database earliest version time (see
Database.getEarliestVersionTime()
).- Specified by:
setVersionTime
in classBackupInfo.Builder
-
setDatabase
Description copied from class:BackupInfo.Builder
Required for creating a new backup.Sets the source database to use for creating the backup.
- Specified by:
setDatabase
in classBackupInfo.Builder
-
setEncryptionConfig
Description copied from class:BackupInfo.Builder
Optional for creating a new backup.The encryption configuration to be used for the backup. The possible configurations are
CustomerManagedEncryption
,GoogleDefaultEncryption
andUseDatabaseEncryption
.If no encryption config is given the backup will be created with the same encryption as set by the database (
UseDatabaseEncryption
).- Specified by:
setEncryptionConfig
in classBackupInfo.Builder
-
setMaxExpireTime
Description copied from class:BackupInfo.Builder
Output Only.Returns the max allowed expiration time of the backup, with microseconds granularity.
- Overrides:
setMaxExpireTime
in classBackupInfo.Builder
-
addAllReferencingBackups
Description copied from class:BackupInfo.Builder
Output Only.Returns the names of the destination backups being created by copying this source backup.
- Overrides:
addAllReferencingBackups
in classBackupInfo.Builder
-