start_migration
Initiate data migration from external databases to Vultr databases by specifying source connection details and destination database ID.
Instructions
Start migrating data from an external database.
Args: database_id: The destination database ID or label host: Source database hostname port: Source database port username: Source database username password: Source database password database: Source database name ssl: Use SSL connection to source
Returns: Status message confirming migration start
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | ||
database_id | Yes | ||
host | Yes | ||
password | Yes | ||
port | Yes | ||
ssl | No | ||
username | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"title": "Database",
"type": "string"
},
"database_id": {
"title": "Database Id",
"type": "string"
},
"host": {
"title": "Host",
"type": "string"
},
"password": {
"title": "Password",
"type": "string"
},
"port": {
"title": "Port",
"type": "integer"
},
"ssl": {
"default": true,
"title": "Ssl",
"type": "boolean"
},
"username": {
"title": "Username",
"type": "string"
}
},
"required": [
"database_id",
"host",
"port",
"username",
"password",
"database"
],
"type": "object"
}