create_logical_database
Create a new logical database within a managed database instance by specifying the database ID and name for the new database.
Instructions
Create a new logical database within a managed database instance.
Args: database_id: The database ID or label name: Name for the new logical database
Returns: Created logical database information
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| database_id | Yes | ||
| name | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "database_id": {
      "title": "Database Id",
      "type": "string"
    },
    "name": {
      "title": "Name",
      "type": "string"
    }
  },
  "required": [
    "database_id",
    "name"
  ],
  "type": "object"
}