get_sql_instance_details
Retrieve comprehensive details about a specific Cloud SQL instance in Google Cloud Platform (GCP) by providing the project ID and instance ID for quick insights and management.
Instructions
Get detailed information about a specific Cloud SQL instance.
Args:
project_id: The ID of the GCP project
instance_id: The ID of the Cloud SQL instance
Returns:
Detailed information about 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": "get_sql_instance_detailsArguments",
"type": "object"
}