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"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","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](/firestore/docs/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](/firestore/docs/reference/rest/Shared.Types/Operation) can be used to track the progress of the clone, with the Operation's [metadata](/firestore/docs/reference/rest/Shared.Types/Operation#FIELDS.metadata) field type being the [CloneDatabaseMetadata](/firestore/docs/reference/rest/Shared.Types/CloneDatabaseMetadata). The [response](/firestore/docs/reference/rest/Shared.Types/Operation#FIELDS.response) type is the [Database](/firestore/docs/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### Request body\n\nThe request body contains data with the following structure:\n\n### Response body\n\nIf successful, the response body contains an instance of [Operation](/firestore/docs/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 [Authentication Overview](/docs/authentication#authorization-gcp)."]]