fork_database
Create a copy of a Vultr database by specifying source database, label, region, plan, and optional VPC for deployment.
Instructions
Fork a database to create a copy.
Args: database_id: The source database ID or label label: Label for the forked database region: Region for the new database plan: Plan ID for the new database vpc_id: VPC ID for the new database
Returns: Information about the forked database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_id | Yes | ||
label | Yes | ||
plan | Yes | ||
region | Yes | ||
vpc_id | No |
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"
},
"vpc_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Vpc Id"
}
},
"required": [
"database_id",
"label",
"region",
"plan"
],
"type": "object"
}