[][src]Struct gcp_client::google::spanner::admin::database::v1::database_admin_client::DatabaseAdminClient

pub struct DatabaseAdminClient<T> { /* fields omitted */ }

Cloud Spanner Database Admin API

The Cloud Spanner Database Admin API can be used to create, drop, and list databases. It also enables updating the schema of pre-existing databases. It can be also used to create, delete and list backups for a database and to restore from an existing backup.

Implementations

impl<T> DatabaseAdminClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn list_databases<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListDatabasesRequest>
) -> Result<Response<ListDatabasesResponse>, Status>
[src]

Lists Cloud Spanner databases.

pub async fn create_database<'_>(
    &'_ mut self,
    request: impl IntoRequest<CreateDatabaseRequest>
) -> Result<Response<Operation>, Status>
[src]

Creates a new Cloud Spanner database and starts to prepare it for serving. The returned [long-running operation][google.longrunning.Operation] will have a name of the format <database_name>/operations/<operation_id> and can be used to track preparation of the database. The [metadata][google.longrunning.Operation.metadata] field type is [CreateDatabaseMetadata][google.spanner.admin.database.v1.CreateDatabaseMetadata]. The [response][google.longrunning.Operation.response] field type is [Database][google.spanner.admin.database.v1.Database], if successful.

pub async fn get_database<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetDatabaseRequest>
) -> Result<Response<Database>, Status>
[src]

Gets the state of a Cloud Spanner database.

pub async fn update_database_ddl<'_>(
    &'_ mut self,
    request: impl IntoRequest<UpdateDatabaseDdlRequest>
) -> Result<Response<Operation>, Status>
[src]

Updates the schema of a Cloud Spanner database by creating/altering/dropping tables, columns, indexes, etc. The returned [long-running operation][google.longrunning.Operation] will have a name of the format <database_name>/operations/<operation_id> and can be used to track execution of the schema change(s). The [metadata][google.longrunning.Operation.metadata] field type is [UpdateDatabaseDdlMetadata][google.spanner.admin.database.v1.UpdateDatabaseDdlMetadata]. The operation has no response.

pub async fn drop_database<'_>(
    &'_ mut self,
    request: impl IntoRequest<DropDatabaseRequest>
) -> Result<Response<()>, Status>
[src]

Drops (aka deletes) a Cloud Spanner database. Completed backups for the database will be retained according to their expire_time.

pub async fn get_database_ddl<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetDatabaseDdlRequest>
) -> Result<Response<GetDatabaseDdlResponse>, Status>
[src]

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][google.longrunning.Operations] API.

pub async fn set_iam_policy<'_>(
    &'_ mut self,
    request: impl IntoRequest<SetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
[src]

Sets the access control policy on a database or backup resource. Replaces any existing policy.

Authorization requires spanner.databases.setIamPolicy permission on [resource][google.iam.v1.SetIamPolicyRequest.resource]. For backups, authorization requires spanner.backups.setIamPolicy permission on [resource][google.iam.v1.SetIamPolicyRequest.resource].

pub async fn get_iam_policy<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
[src]

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][google.iam.v1.GetIamPolicyRequest.resource]. For backups, authorization requires spanner.backups.getIamPolicy permission on [resource][google.iam.v1.GetIamPolicyRequest.resource].

pub async fn test_iam_permissions<'_>(
    &'_ mut self,
    request: impl IntoRequest<TestIamPermissionsRequest>
) -> Result<Response<TestIamPermissionsResponse>, Status>
[src]

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.

pub async fn create_backup<'_>(
    &'_ mut self,
    request: impl IntoRequest<CreateBackupRequest>
) -> Result<Response<Operation>, Status>
[src]

Starts creating a new Cloud Spanner Backup. The returned backup [long-running operation][google.longrunning.Operation] will have a name of the format projects/<project>/instances/<instance>/backups/<backup>/operations/<operation_id> and can be used to track creation of the backup. The [metadata][google.longrunning.Operation.metadata] field type is [CreateBackupMetadata][google.spanner.admin.database.v1.CreateBackupMetadata]. The [response][google.longrunning.Operation.response] field type is [Backup][google.spanner.admin.database.v1.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.

pub async fn get_backup<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetBackupRequest>
) -> Result<Response<Backup>, Status>
[src]

Gets metadata on a pending or completed [Backup][google.spanner.admin.database.v1.Backup].

pub async fn update_backup<'_>(
    &'_ mut self,
    request: impl IntoRequest<UpdateBackupRequest>
) -> Result<Response<Backup>, Status>
[src]

Updates a pending or completed [Backup][google.spanner.admin.database.v1.Backup].

pub async fn delete_backup<'_>(
    &'_ mut self,
    request: impl IntoRequest<DeleteBackupRequest>
) -> Result<Response<()>, Status>
[src]

Deletes a pending or completed [Backup][google.spanner.admin.database.v1.Backup].

pub async fn list_backups<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListBackupsRequest>
) -> Result<Response<ListBackupsResponse>, Status>
[src]

Lists completed and pending backups. Backups returned are ordered by create_time in descending order, starting from the most recent create_time.

pub async fn restore_database<'_>(
    &'_ mut self,
    request: impl IntoRequest<RestoreDatabaseRequest>
) -> Result<Response<Operation>, Status>
[src]

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][google.longrunning.Operation] has a name of the format projects/<project>/instances/<instance>/databases/<database>/operations/<operation_id>, and can be used to track the progress of the operation, and to cancel it. The [metadata][google.longrunning.Operation.metadata] field type is [RestoreDatabaseMetadata][google.spanner.admin.database.v1.RestoreDatabaseMetadata]. The [response][google.longrunning.Operation.response] type is [Database][google.spanner.admin.database.v1.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.

pub async fn list_database_operations<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListDatabaseOperationsRequest>
) -> Result<Response<ListDatabaseOperationsResponse>, Status>
[src]

Lists database [longrunning-operations][google.longrunning.Operation]. A database operation has a name of the form projects/<project>/instances/<instance>/databases/<database>/operations/<operation>. The long-running operation [metadata][google.longrunning.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.

pub async fn list_backup_operations<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListBackupOperationsRequest>
) -> Result<Response<ListBackupOperationsResponse>, Status>
[src]

Lists the backup [long-running operations][google.longrunning.Operation] in the given instance. A backup operation has a name of the form projects/<project>/instances/<instance>/backups/<backup>/operations/<operation>. The long-running operation [metadata][google.longrunning.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.

Trait Implementations

impl<T: Clone> Clone for DatabaseAdminClient<T>[src]

impl<T> Debug for DatabaseAdminClient<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for DatabaseAdminClient<T>

impl<T> Send for DatabaseAdminClient<T> where
    T: Send

impl<T> Sync for DatabaseAdminClient<T> where
    T: Sync

impl<T> Unpin for DatabaseAdminClient<T> where
    T: Unpin

impl<T> !UnwindSafe for DatabaseAdminClient<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]