Stay organized with collections
Save and categorize content based on your preferences.
Creates a new database by cloning an existing one.
The new database must be in the same cloud region or multi-region location as the existing database. This behaves similar to FirestoreAdmin.CreateDatabase except instead of creating a new empty database, a new database is created with the database type, index configuration, and documents from an existing database.
The long-running operation can be used to track the progress of the clone, with the Operation's metadata field type being the CloneDatabaseMetadata. The response type is the Database if the clone was successful. The new database is not readable or writeable until the LRO has completed.
HTTP request
POST https://firestore.googleapis.com/v1/{parent=projects/*}/databases:clone
Required. The ID to use for the database, which will become the final component of the database's resource name. This database ID must not be associated with an existing database.
This value should be 4-63 characters. Valid characters are /[a-z][0-9]-/ with first character a letter and the last a letter or a number. Must not be UUID-like /[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}/.
"(default)" database ID is also valid if the database is Standard edition.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-26 UTC."],[],[],null,["# Method: projects.databases.clone\n\nCreates a new database by cloning an existing one.\n\nThe new database must be in the same cloud region or multi-region location as the existing database. This behaves similar to [FirestoreAdmin.CreateDatabase](/docs/firestore/reference/rest/v1/projects.databases/create#google.firestore.admin.v1.FirestoreAdmin.CreateDatabase) except instead of creating a new empty database, a new database is created with the database type, index configuration, and documents from an existing database.\n\nThe [long-running operation](/docs/firestore/reference/rest/Shared.Types/Operation) can be used to track the progress of the clone, with the Operation's [metadata](/docs/firestore/reference/rest/Shared.Types/Operation#FIELDS.metadata) field type being the [CloneDatabaseMetadata](/docs/firestore/reference/rest/Shared.Types/CloneDatabaseMetadata). The [response](/docs/firestore/reference/rest/Shared.Types/Operation#FIELDS.response) type is the [Database](/docs/firestore/reference/rest/v1/projects.databases#Database) if the clone was successful. The new database is not readable or writeable until the LRO has completed.\n\n### HTTP request\n\n`POST https://firestore.googleapis.com/v1/{parent=projects/*}/databases:clone`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Path parameters\n\n| Parameters ||\n|----------|--------------------------------------------------------------------------------------------|\n| `parent` | `string` Required. The project to clone the database in. Format is `projects/{projectId}`. |\n\n### Request body\n\nThe request body contains data with the following structure:\n\n| JSON representation |\n|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"databaseId\": string, \"pitrSnapshot\": { object (/docs/firestore/reference/rest/Shared.Types/CloneDatabaseMetadata#PitrSnapshot) }, \"encryptionConfig\": { object (/docs/firestore/reference/rest/v1/EncryptionConfig) }, \"tags\": { string: string, ... } } ``` |\n\n| Fields ||\n|--------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `databaseId` | `string` Required. The ID to use for the database, which will become the final component of the database's resource name. This database ID must not be associated with an existing database. This value should be 4-63 characters. Valid characters are /\\[a-z\\]\\[0-9\\]-/ with first character a letter and the last a letter or a number. Must not be UUID-like /\\[0-9a-f\\]{8}(-\\[0-9a-f\\]{4}){3}-\\[0-9a-f\\]{12}/. \"(default)\" database ID is also valid. |\n| `pitrSnapshot` | `object (`[PitrSnapshot](/docs/firestore/reference/rest/Shared.Types/CloneDatabaseMetadata#PitrSnapshot)`)` Required. Specification of the PITR data to clone from. The source database must exist. The cloned database will be created in the same location as the source database. |\n| `encryptionConfig` | `object (`[EncryptionConfig](/docs/firestore/reference/rest/v1/EncryptionConfig)`)` Optional. Encryption configuration for the cloned database. If this field is not specified, the cloned database will use the same encryption configuration as the source database, namely [useSourceEncryption](/docs/firestore/reference/rest/v1/EncryptionConfig#FIELDS.use_source_encryption). |\n| `tags` | `map (key: string, value: string)` Optional. Immutable. Tags to be bound to the cloned database. The tags should be provided in the format of `tagKeys/{tag_key_id} -\u003e tagValues/{tag_value_id}`. An object containing a list of `\"key\": value` pairs. Example: `{ \"name\": \"wrench\", \"mass\": \"1.3kg\", \"count\": \"3\" }`. |\n\n### Response body\n\nIf successful, the response body contains an instance of [Operation](/docs/firestore/reference/rest/Shared.Types/Operation).\n\n### Authorization scopes\n\nRequires one of the following OAuth scopes:\n\n- `https://www.googleapis.com/auth/datastore`\n- `https://www.googleapis.com/auth/cloud-platform`\n\nFor more information, see the [OAuth 2.0 Overview](https://developers.google.com/identity/protocols/OAuth2)."]]