public interface DatabaseAdminClient
Client to do admin operations on a Cloud Spanner Database.
Methods
cancelOperation(String name)
public abstract void cancelOperation(String name)
Cancels the specified long-running operation.
Name | Description |
name | String |
createBackup(Backup backup)
public abstract OperationFuture<Backup,CreateBackupMetadata> createBackup(Backup backup)
Creates a new backup from a database in a Cloud Spanner. Any configuration options in the Backup instance will be included in the com.google.spanner.admin.database.v1.CreateBackupRequest.
Example to create an encrypted backup.
BackupId backupId = BackupId.of("project", "instance", "backup-id");
DatabaseId databaseId = DatabaseId.of("project", "instance", "database-id");
Timestamp expireTime = Timestamp.ofTimeMicroseconds(expireTimeMicros);
Timestamp versionTime = Timestamp.ofTimeMicroseconds(versionTimeMicros);
EncryptionConfig encryptionConfig =
EncryptionConfig.ofKey(
"projects/my-project/locations/some-location/keyRings/my-keyring/cryptoKeys/my-key"));
Backup backupToCreate = dbAdminClient
.newBackupBuilder(backupId)
.setDatabase(databaseId)
.setExpireTime(expireTime)
.setVersionTime(versionTime)
.setEncryptionConfig(encryptionConfig)
.build();
OperationFuture
Name | Description |
backup | Backup the backup to be created |
Type | Description |
OperationFuture<Backup,CreateBackupMetadata> |
Type | Description |
SpannerException |
createBackup(String sourceInstanceId, String backupId, String databaseId, Timestamp expireTime)
public abstract OperationFuture<Backup,CreateBackupMetadata> createBackup(String sourceInstanceId, String backupId, String databaseId, Timestamp expireTime)
Creates a new backup from a database in a Cloud Spanner instance.
Example to create a backup.
String instance = my_instance_id;
String backupId = my_backup_id;
String databaseId = my_database_id;
Timestamp expireTime = Timestamp.ofTimeMicroseconds(micros);
OperationFuture
Name | Description |
sourceInstanceId | String the id of the instance where the database to backup is located and where the backup will be created. |
backupId | String the id of the backup which will be created. It must conform to the regular expression a-z*[a-z0-9] and be between 2 and 60 characters in length. |
databaseId | String the id of the database to backup. |
expireTime | com.google.cloud.Timestamp the time that the backup will automatically expire. |
Type | Description |
OperationFuture<Backup,CreateBackupMetadata> |
Type | Description |
SpannerException |
createDatabase(Database database, Iterable<String> statements)
public abstract OperationFuture<Database,CreateDatabaseMetadata> createDatabase(Database database, Iterable<String> statements)
Creates a database in a Cloud Spanner instance. Any configuration options in the Database instance will be included in the CreateDatabaseRequest.
Example to create an encrypted database.
Database dbInfo =
dbClient
.newDatabaseBuilder(DatabaseId.of("my-project", "my-instance", "my-database"))
.setEncryptionConfig(
EncryptionConfig.ofKey(
"projects/my-project/locations/some-location/keyRings/my-keyring/cryptoKeys/my-key"))
.build();
Operation
See Also: also#createDatabase(String, String, Iterable)
Name | Description |
database | Database |
statements | Iterable<String> |
Type | Description |
OperationFuture<Database,CreateDatabaseMetadata> |
Type | Description |
SpannerException |
createDatabase(String instanceId, String databaseId, Iterable<String> statements)
public abstract OperationFuture<Database,CreateDatabaseMetadata> createDatabase(String instanceId, String databaseId, Iterable<String> statements)
Creates a new database in a Cloud Spanner instance.
Example to create database.
String instanceId = my_instance_id;
String databaseId = my_database_id;
Operation
Name | Description |
instanceId | String the id of the instance in which to create the database. |
databaseId | String the id of the database which will be created. It must conform to the regular expression a-z*[a-z0-9] and be between 2 and 30 characters in length |
statements | Iterable<String> DDL statements to run while creating the database, for example |
Type | Description |
OperationFuture<Database,CreateDatabaseMetadata> |
Type | Description |
SpannerException |
deleteBackup(String instanceId, String backupId)
public abstract void deleteBackup(String instanceId, String backupId)
Deletes a pending or completed backup.
Name | Description |
instanceId | String Required. The instance where the backup exists. |
backupId | String Required. The id of the backup to delete. |
dropDatabase(String instanceId, String databaseId)
public abstract void dropDatabase(String instanceId, String databaseId)
Drops a Cloud Spanner database.
Example to drop a Cloud Spanner database.
String instanceId = my_instance_id;
String databaseId = my_database_id;
dbAdminClient.dropDatabase(instanceId, databaseId);
Name | Description |
instanceId | String |
databaseId | String |
Type | Description |
SpannerException |
getBackup(String instanceId, String backupId)
public abstract Backup getBackup(String instanceId, String backupId)
Gets the current state of a Cloud Spanner database backup.
Example to get a backup.
String instanceId = my_instance_id;
String backupId = my_backup_id;
Backup backup = dbAdminClient.getBackup(instanceId, backupId);
Name | Description |
instanceId | String |
backupId | String |
Type | Description |
Backup |
Type | Description |
SpannerException |
getBackupIAMPolicy(String instanceId, String backupId)
public abstract Policy getBackupIAMPolicy(String instanceId, String backupId)
Returns the IAM policy for the given backup.
Name | Description |
instanceId | String |
backupId | String |
Type | Description |
com.google.cloud.Policy |
getDatabase(String instanceId, String databaseId)
public abstract Database getDatabase(String instanceId, String databaseId)
Gets the current state of a Cloud Spanner database.
Example to getDatabase.
String instanceId = my_instance_id;
String databaseId = my_database_id;
Database db = dbAdminClient.getDatabase(instanceId, databaseId);
Name | Description |
instanceId | String |
databaseId | String |
Type | Description |
Database |
Type | Description |
SpannerException |
getDatabaseDdl(String instanceId, String databaseId)
public abstract List<String> getDatabaseDdl(String instanceId, String databaseId)
Returns the schema of a Cloud Spanner database as a list of formatted DDL statements. This method does not show pending schema updates.
Example to get the schema of a Cloud Spanner database.
String instanceId = my_instance_id;
String databaseId = my_database_id;
List<String> statementsInDb = dbAdminClient.getDatabaseDdl(instanceId, databaseId);
Name | Description |
instanceId | String |
databaseId | String |
Type | Description |
List<String> |
getDatabaseIAMPolicy(String instanceId, String databaseId)
public abstract Policy getDatabaseIAMPolicy(String instanceId, String databaseId)
Returns the IAM policy for the given database.
Name | Description |
instanceId | String |
databaseId | String |
Type | Description |
com.google.cloud.Policy |
getOperation(String name)
public abstract Operation getOperation(String name)
Gets the specified long-running operation.
Name | Description |
name | String |
Type | Description |
Operation |
listBackupOperations(String instanceId, Options.ListOption[] options)
public abstract Page<Operation> listBackupOperations(String instanceId, Options.ListOption[] options)
Lists long-running backup operations on the specified instance.
Name | Description |
instanceId | String |
options | ListOption[] |
Type | Description |
Page<Operation> |
listBackups(String instanceId, Options.ListOption[] options)
public abstract Page<Backup> listBackups(String instanceId, Options.ListOption[] options)
Returns the list of Cloud Spanner backups in the given instance.
Example to get the list of Cloud Spanner backups in the given instance.
String instanceId = my_instance_id;
Page<Backup> page = dbAdminClient.listBackups(instanceId, Options.pageSize(1));
List<Backup> backups = new ArrayList<>();
while (page != null) {
Backup backup = Iterables.getOnlyElement(page.getValues());
dbs.add(backup);
page = page.getNextPage();
}
Name | Description |
instanceId | String |
options | ListOption[] |
Type | Description |
Page<Backup> |
listDatabaseOperations(String instanceId, Options.ListOption[] options)
public abstract Page<Operation> listDatabaseOperations(String instanceId, Options.ListOption[] options)
Lists long-running database operations on the specified instance.
Name | Description |
instanceId | String |
options | ListOption[] |
Type | Description |
Page<Operation> |
listDatabases(String instanceId, Options.ListOption[] options)
public abstract Page<Database> listDatabases(String instanceId, Options.ListOption[] options)
Returns the list of Cloud Spanner database in the given instance.
Example to get the list of Cloud Spanner database in the given instance.
String instanceId = my_instance_id;
Page<Database> page = dbAdminClient.listDatabases(instanceId, Options.pageSize(1));
List<Database> dbs = new ArrayList<>();
while (page != null) {
Database db = Iterables.getOnlyElement(page.getValues());
dbs.add(db);
page = page.getNextPage();
}
Name | Description |
instanceId | String |
options | ListOption[] |
Type | Description |
Page<Database> |
newBackupBuilder(BackupId id)
public abstract Backup.Builder newBackupBuilder(BackupId id)
Returns a builder for a Backup
object with the given id.
Name | Description |
id | BackupId |
Type | Description |
Backup.Builder |
newDatabaseBuilder(DatabaseId id)
public abstract Database.Builder newDatabaseBuilder(DatabaseId id)
Returns a builder for a Database
object with the given id.
Name | Description |
id | DatabaseId |
Type | Description |
Database.Builder |
newRestoreBuilder(BackupId source, DatabaseId destination)
public abstract Restore.Builder newRestoreBuilder(BackupId source, DatabaseId destination)
Returns a builder for a Restore object with the given source and destination
Name | Description |
source | BackupId |
destination | DatabaseId |
Type | Description |
Restore.Builder |
restoreDatabase(Restore restore)
public abstract OperationFuture<Database,RestoreDatabaseMetadata> restoreDatabase(Restore restore)
Restore a database from a backup. The database that is restored will be created and may not already exist.
Example to restore an encrypted database.
final Restore restore = dbAdminClient
.newRestoreBuilder(
BackupId.of("my-project", "my-instance", "my-backup"),
DatabaseId.of("my-project", "my-instance", "my-database")
)
.setEncryptionConfig(EncryptionConfig.ofKey(
"projects/my-project/locations/some-location/keyRings/my-keyring/cryptoKeys/my-key"))
.build();
final OperationFuture
Name | Description |
restore | Restore a Restore instance with the backup source and destination database |
Type | Description |
OperationFuture<Database,RestoreDatabaseMetadata> |
Type | Description |
SpannerException |
restoreDatabase(String backupInstanceId, String backupId, String restoreInstanceId, String restoreDatabaseId)
public abstract OperationFuture<Database,RestoreDatabaseMetadata> restoreDatabase(String backupInstanceId, String backupId, String restoreInstanceId, String restoreDatabaseId)
Restore a database from a backup. The database that is restored will be created and may not already exist.
Example to restore a database.
String backupInstanceId = my_instance_id;
String backupId = my_backup_id;
String restoreInstanceId = my_db_instance_id;
String restoreDatabaseId = my_database_id;
OperationFuture
Name | Description |
backupInstanceId | String the id of the instance where the backup is located. |
backupId | String the id of the backup to restore. |
restoreInstanceId | String the id of the instance where the database should be created. This may be a different instance than where the backup is stored. |
restoreDatabaseId | String the id of the database to restore to. |
Type | Description |
OperationFuture<Database,RestoreDatabaseMetadata> |
Type | Description |
SpannerException |
setBackupIAMPolicy(String instanceId, String backupId, Policy policy)
public abstract Policy setBackupIAMPolicy(String instanceId, String backupId, Policy policy)
Updates the IAM policy for the given backup and returns the resulting policy. It is highly recommended to first get the current policy and base the updated policy on the returned policy. See Policy.Builder#setEtag(String) for information on the recommended read-modify-write cycle.
Name | Description |
instanceId | String |
backupId | String |
policy | com.google.cloud.Policy |
Type | Description |
com.google.cloud.Policy |
setDatabaseIAMPolicy(String instanceId, String databaseId, Policy policy)
public abstract Policy setDatabaseIAMPolicy(String instanceId, String databaseId, Policy policy)
Updates the IAM policy for the given database and returns the resulting policy. It is highly recommended to first get the current policy and base the updated policy on the returned policy. See Policy.Builder#setEtag(String) for information on the recommended read-modify-write cycle.
Name | Description |
instanceId | String |
databaseId | String |
policy | com.google.cloud.Policy |
Type | Description |
com.google.cloud.Policy |
testBackupIAMPermissions(String instanceId, String backupId, Iterable<String> permissions)
public abstract Iterable<String> testBackupIAMPermissions(String instanceId, String backupId, Iterable<String> permissions)
Tests for the given permissions on the specified backup for the caller.
Name | Description |
instanceId | String the id of the instance where the backup to test is located. |
backupId | String the id of the backup to test. |
permissions | Iterable<String> the permissions to test for. Permissions with wildcards (such as '', 'spanner.', 'spanner.instances.*') are not allowed. |
Type | Description |
Iterable<String> | the subset of the tested permissions that the caller is allowed. |
testDatabaseIAMPermissions(String instanceId, String databaseId, Iterable<String> permissions)
public abstract Iterable<String> testDatabaseIAMPermissions(String instanceId, String databaseId, Iterable<String> permissions)
Tests for the given permissions on the specified database for the caller.
Name | Description |
instanceId | String the id of the instance where the database to test is located. |
databaseId | String the id of the database to test. |
permissions | Iterable<String> the permissions to test for. Permissions with wildcards (such as '', 'spanner.', 'spanner.instances.*') are not allowed. |
Type | Description |
Iterable<String> | the subset of the tested permissions that the caller is allowed. |
updateBackup(String instanceId, String backupId, Timestamp expireTime)
public abstract Backup updateBackup(String instanceId, String backupId, Timestamp expireTime)
Updates the expire time of a backup.
Name | Description |
instanceId | String Required. The instance of the backup to update. |
backupId | String Required. The backup id of the backup to update. |
expireTime | com.google.cloud.Timestamp Required. The new expire time of the backup to set to. |
Type | Description |
Backup | the updated Backup object. |
updateDatabaseDdl(String instanceId, String databaseId, Iterable<String> statements, String operationId)
public abstract OperationFuture<Void,UpdateDatabaseDdlMetadata> updateDatabaseDdl(String instanceId, String databaseId, Iterable<String> statements, String operationId)
Enqueues the given DDL statements to be applied, in order but not necessarily all at once, to
the database schema at some point (or points) in the future. The server checks that the
statements are executable (syntactically valid, name tables that exist, etc.) before enqueueing
them, but they may still fail upon later execution (e.g., if a statement from another batch of
statements is applied first and it conflicts in some way, or if there is some data-related
problem like a NULL
value in a column to which NOT NULL
would be added). If a statement
fails, all subsequent statements in the batch are automatically cancelled.
If an operation already exists with the given operation id, the operation will be resumed and the returned future will complete when the original operation finishes. See more information in com.google.cloud.spanner.spi.v1.GapicSpannerRpc#updateDatabaseDdl(String, Iterable, String)
Example to update the database DDL.
String instanceId = my_instance_id;
String databaseId = my_database_id;
dbAdminClient.updateDatabaseDdl(instanceId,
databaseId,
Arrays.asList("ALTER TABLE Albums ADD COLUMN MarketingBudget INT64"),
null).waitFor();
Name | Description |
instanceId | String |
databaseId | String |
statements | Iterable<String> |
operationId | String Operation id assigned to this operation. If null, system will autogenerate one. This must be unique within a database abd must be a valid identifier a-zA-Z*. |
Type | Description |
OperationFuture<Void,UpdateDatabaseDdlMetadata> |
Type | Description |
SpannerException |