start_version_upgrade
Initiate a database engine version upgrade by specifying the target version and database identifier to maintain compatibility and security.
Instructions
Start a database engine version upgrade.
Args: database_id: The database ID or label version: Target version to upgrade to
Returns: Status message confirming upgrade start
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_id | Yes | ||
version | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database_id": {
"title": "Database Id",
"type": "string"
},
"version": {
"title": "Version",
"type": "string"
}
},
"required": [
"database_id",
"version"
],
"type": "object"
}