gepa_restore_backup
Restore system functionality by retrieving data from a specified backup ID, with optional integrity validation and pre-restore backup creation for safety.
Instructions
Restore system from a specific backup
Input Schema
Name | Required | Description | Default |
---|---|---|---|
backupId | Yes | ID of the backup to restore from | |
createPreRestoreBackup | No | Create backup before restoration | |
validateIntegrity | No | Perform integrity validation before restore |
Input Schema (JSON Schema)
{
"properties": {
"backupId": {
"description": "ID of the backup to restore from",
"type": "string"
},
"createPreRestoreBackup": {
"default": true,
"description": "Create backup before restoration",
"type": "boolean"
},
"validateIntegrity": {
"default": true,
"description": "Perform integrity validation before restore",
"type": "boolean"
}
},
"required": [
"backupId"
],
"type": "object"
}