public static final class DatabaseAdminGrpc.DatabaseAdminStub extends AbstractAsyncStub.DatabaseAdminStub>
Cloud Spanner Database Admin API
The Cloud Spanner Database Admin API can be used to:
- create, drop, and list databases
- update the schema of pre-existing databases
- create, delete and list backups for a database
- restore a database from an existing backup
Inheritance
java.lang.Object >
io.grpc.stub.AbstractStub >
io.grpc.stub.AbstractAsyncStub >
DatabaseAdminGrpc.DatabaseAdminStub
Inherited Members
io.grpc.stub.AbstractAsyncStub.newStub(io.grpc.stub.AbstractStub.StubFactory,io.grpc.Channel)
io.grpc.stub.AbstractAsyncStub.newStub(io.grpc.stub.AbstractStub.StubFactory,io.grpc.Channel,io.grpc.CallOptions)
io.grpc.stub.AbstractStub.withOption(io.grpc.CallOptions.Key,T)
io.grpc.stub.AbstractStub.build(io.grpc.Channel,io.grpc.CallOptions)
io.grpc.stub.AbstractStub.getCallOptions()
io.grpc.stub.AbstractStub.getChannel()
io.grpc.stub.AbstractStub.withCallCredentials(io.grpc.CallCredentials)
io.grpc.stub.AbstractStub.withChannel(io.grpc.Channel)
io.grpc.stub.AbstractStub.withCompression(java.lang.String)
io.grpc.stub.AbstractStub.withDeadline(io.grpc.Deadline)
io.grpc.stub.AbstractStub.withDeadlineAfter(long,java.util.concurrent.TimeUnit)
io.grpc.stub.AbstractStub.withExecutor(java.util.concurrent.Executor)
io.grpc.stub.AbstractStub.withInterceptors(io.grpc.ClientInterceptor...)
io.grpc.stub.AbstractStub.withMaxInboundMessageSize(int)
io.grpc.stub.AbstractStub.withMaxOutboundMessageSize(int)
io.grpc.stub.AbstractStub.withWaitForReady()
Methods
build(Channel channel, CallOptions callOptions)
protected DatabaseAdminGrpc.DatabaseAdminStub build(Channel channel, CallOptions callOptions)
Parameters |
Name |
Description |
channel |
io.grpc.Channel
|
callOptions |
io.grpc.CallOptions
|
Overrides
io.grpc.stub.AbstractStub.build(io.grpc.Channel,io.grpc.CallOptions)
copyBackup(CopyBackupRequest request, StreamObserver responseObserver)
public void copyBackup(CopyBackupRequest request, StreamObserver responseObserver)
Starts copying a Cloud Spanner Backup.
The returned backup long-running operation
will have a name of the format
projects//instances//backups//operations/
and can be used to track copying of the backup. The operation is associated
with the destination backup.
The metadata field type is
CopyBackupMetadata.
The response field type is
Backup, if successful. Cancelling the returned operation will stop the
copying and delete the backup.
Concurrent CopyBackup requests can run on the same source backup.
createBackup(CreateBackupRequest request, StreamObserver responseObserver)
public void createBackup(CreateBackupRequest request, StreamObserver responseObserver)
Starts creating a new Cloud Spanner Backup.
The returned backup long-running operation
will have a name of the format
projects//instances//backups//operations/
and can be used to track creation of the backup. The
metadata field type is
CreateBackupMetadata. The
response field type is
Backup, if successful. Cancelling the returned operation will stop the
creation and delete the backup.
There can be only one pending backup creation per database. Backup creation
of different databases can run concurrently.
createDatabase(CreateDatabaseRequest request, StreamObserver responseObserver)
public void createDatabase(CreateDatabaseRequest request, StreamObserver responseObserver)
Creates a new Cloud Spanner database and starts to prepare it for serving.
The returned long-running operation will
have a name of the format /operations/
and
can be used to track preparation of the database. The
metadata field type is
CreateDatabaseMetadata. The
response field type is
Database, if successful.
deleteBackup(DeleteBackupRequest request, StreamObserver responseObserver)
public void deleteBackup(DeleteBackupRequest request, StreamObserver responseObserver)
Deletes a pending or completed Backup.
dropDatabase(DropDatabaseRequest request, StreamObserver responseObserver)
public void dropDatabase(DropDatabaseRequest request, StreamObserver responseObserver)
Drops (aka deletes) a Cloud Spanner database.
Completed backups for the database will be retained according to their
expire_time
.
Note: Cloud Spanner might continue to accept requests for a few seconds
after the database has been deleted.
getBackup(GetBackupRequest request, StreamObserver responseObserver)
public void getBackup(GetBackupRequest request, StreamObserver responseObserver)
Gets metadata on a pending or completed Backup.
getDatabase(GetDatabaseRequest request, StreamObserver responseObserver)
public void getDatabase(GetDatabaseRequest request, StreamObserver responseObserver)
Gets the state of a Cloud Spanner database.
getDatabaseDdl(GetDatabaseDdlRequest request, StreamObserver responseObserver)
public void getDatabaseDdl(GetDatabaseDdlRequest request, StreamObserver responseObserver)
Returns the schema of a Cloud Spanner database as a list of formatted
DDL statements. This method does not show pending schema updates, those may
be queried using the Operations API.
getIamPolicy(GetIamPolicyRequest request, StreamObserver responseObserver)
public void getIamPolicy(GetIamPolicyRequest request, StreamObserver responseObserver)
Gets the access control policy for a database or backup resource.
Returns an empty policy if a database or backup exists but does not have a
policy set.
Authorization requires spanner.databases.getIamPolicy
permission on
resource.
For backups, authorization requires spanner.backups.getIamPolicy
permission on resource.
Parameters |
Name |
Description |
request |
com.google.iam.v1.GetIamPolicyRequest
|
responseObserver |
io.grpc.stub.StreamObserver<com.google.iam.v1.Policy>
|
listBackupOperations(ListBackupOperationsRequest request, StreamObserver responseObserver)
public void listBackupOperations(ListBackupOperationsRequest request, StreamObserver responseObserver)
Lists the backup long-running operations in
the given instance. A backup operation has a name of the form
projects//instances//backups//operations/
.
The long-running operation
metadata field type
metadata.type_url
describes the type of the metadata. Operations returned
include those that have completed/failed/canceled within the last 7 days,
and pending operations. Operations returned are ordered by
operation.metadata.value.progress.start_time
in descending order starting
from the most recently started operation.
listBackups(ListBackupsRequest request, StreamObserver responseObserver)
public void listBackups(ListBackupsRequest request, StreamObserver responseObserver)
Lists completed and pending backups.
Backups returned are ordered by create_time
in descending order,
starting from the most recent create_time
.
listDatabaseOperations(ListDatabaseOperationsRequest request, StreamObserver responseObserver)
public void listDatabaseOperations(ListDatabaseOperationsRequest request, StreamObserver responseObserver)
Lists database longrunning-operations.
A database operation has a name of the form
projects//instances//databases//operations/
.
The long-running operation
metadata field type
metadata.type_url
describes the type of the metadata. Operations returned
include those that have completed/failed/canceled within the last 7 days,
and pending operations.
listDatabases(ListDatabasesRequest request, StreamObserver responseObserver)
public void listDatabases(ListDatabasesRequest request, StreamObserver responseObserver)
Lists Cloud Spanner databases.
restoreDatabase(RestoreDatabaseRequest request, StreamObserver responseObserver)
public void restoreDatabase(RestoreDatabaseRequest request, StreamObserver responseObserver)
Create a new database by restoring from a completed backup. The new
database must be in the same project and in an instance with the same
instance configuration as the instance containing
the backup. The returned database long-running
operation has a name of the format
projects//instances//databases//operations/
,
and can be used to track the progress of the operation, and to cancel it.
The metadata field type is
RestoreDatabaseMetadata.
The response type
is Database, if
successful. Cancelling the returned operation will stop the restore and
delete the database.
There can be only one database being restored into an instance at a time.
Once the restore operation completes, a new restore operation can be
initiated, without waiting for the optimize operation associated with the
first restore to complete.
setIamPolicy(SetIamPolicyRequest request, StreamObserver responseObserver)
public void setIamPolicy(SetIamPolicyRequest request, StreamObserver responseObserver)
Sets the access control policy on a database or backup resource.
Replaces any existing policy.
Authorization requires spanner.databases.setIamPolicy
permission on resource.
For backups, authorization requires spanner.backups.setIamPolicy
permission on resource.
Parameters |
Name |
Description |
request |
com.google.iam.v1.SetIamPolicyRequest
|
responseObserver |
io.grpc.stub.StreamObserver<com.google.iam.v1.Policy>
|
testIamPermissions(TestIamPermissionsRequest request, StreamObserver responseObserver)
public void testIamPermissions(TestIamPermissionsRequest request, StreamObserver responseObserver)
Returns permissions that the caller has on the specified database or backup
resource.
Attempting this RPC on a non-existent Cloud Spanner database will
result in a NOT_FOUND error if the user has
spanner.databases.list
permission on the containing Cloud
Spanner instance. Otherwise returns an empty set of permissions.
Calling this method on a backup that does not exist will
result in a NOT_FOUND error if the user has
spanner.backups.list
permission on the containing instance.
Parameters |
Name |
Description |
request |
com.google.iam.v1.TestIamPermissionsRequest
|
responseObserver |
io.grpc.stub.StreamObserver<com.google.iam.v1.TestIamPermissionsResponse>
|
updateBackup(UpdateBackupRequest request, StreamObserver responseObserver)
public void updateBackup(UpdateBackupRequest request, StreamObserver responseObserver)
Updates a pending or completed Backup.
updateDatabaseDdl(UpdateDatabaseDdlRequest request, StreamObserver responseObserver)
public void updateDatabaseDdl(UpdateDatabaseDdlRequest request, StreamObserver responseObserver)
Updates the schema of a Cloud Spanner database by
creating/altering/dropping tables, columns, indexes, etc. The returned
long-running operation will have a name of
the format /operations/
and can be used to
track execution of the schema change(s). The
metadata field type is
UpdateDatabaseDdlMetadata. The operation has no response.