list_backups
Retrieve available backup snapshots for a managed database by ID, displaying timestamps and sizes for recovery planning.
Instructions
List available backups for a managed database.
Args: database_id: The database ID or label
Returns: List of available backups with timestamps and sizes
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| database_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "database_id": {
      "title": "Database Id",
      "type": "string"
    }
  },
  "required": [
    "database_id"
  ],
  "type": "object"
}