Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DatabaseMoveConfig

import type { DatabaseMoveConfig } from "https://googleapis.deno.dev/v1/spanner:v1.ts";

The configuration for each database in the target instance configuration.

interface DatabaseMoveConfig {
databaseId?: string;
encryptionConfig?: InstanceEncryptionConfig;
}

§Properties

§
databaseId?: string
[src]

Required. The unique identifier of the database resource in the Instance. For example if the database uri is projects/foo/instances/bar/databases/baz, the id to supply here is baz.

§

Optional. Encryption configuration to be used for the database in target configuration. Should be specified for every database which currently uses CMEK encryption. If a database currently uses GOOGLE_MANAGED encryption and a target encryption config is not specified, it defaults to GOOGLE_MANAGED. If a database currently uses Google-managed encryption and a target encryption config is specified, the request is rejected. If a database currently uses CMEK encryption, a target encryption config must be specified. You cannot move a CMEK database to a Google-managed encryption database by MoveInstance.