create_read_replica
Create a read replica database to distribute read workloads and improve performance by offloading queries from the primary database.
Instructions
Create a read replica of a database.
Args: database_id: The source database ID or label label: Label for the read replica region: Region for the read replica plan: Plan ID for the read replica
Returns: Information about the created read replica
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| database_id | Yes | ||
| label | Yes | ||
| plan | Yes | ||
| region | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "database_id": {
      "title": "Database Id",
      "type": "string"
    },
    "label": {
      "title": "Label",
      "type": "string"
    },
    "plan": {
      "title": "Plan",
      "type": "string"
    },
    "region": {
      "title": "Region",
      "type": "string"
    }
  },
  "required": [
    "database_id",
    "label",
    "region",
    "plan"
  ],
  "type": "object"
}