list_databases
Retrieve a list of databases within a specified Cloud SQL instance on Google Cloud Platform by providing the project ID and instance ID for quick database management.
Instructions
List databases in a Cloud SQL instance.
Args:
project_id: The ID of the GCP project
instance_id: The ID of the Cloud SQL instance
Returns:
List of databases in the specified Cloud SQL instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instance_id | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"instance_id": {
"title": "Instance Id",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"instance_id"
],
"title": "list_databasesArguments",
"type": "object"
}