list_firestore_databases
Retrieve all Firestore databases within a specified Google Cloud Platform project using the project ID for efficient database management and oversight.
Instructions
List Firestore databases in a GCP project.
Args:
project_id: The ID of the GCP project to list Firestore databases for
Returns:
List of Firestore databases in the specified GCP project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id"
],
"title": "list_firestore_databasesArguments",
"type": "object"
}