restore_instance
Restore a Tembo instance by specifying the organization ID, instance name, and recovery target time using the Tembo MCP Server to recover resources efficiently.
Instructions
Restore a Tembo instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instance_name | Yes | ||
org_id | Yes | Organization ID that owns the Tembo instance | |
restore | Yes |
Input Schema (JSON Schema)
{
"properties": {
"instance_name": {
"type": "string"
},
"org_id": {
"description": "Organization ID that owns the Tembo instance",
"type": "string"
},
"restore": {
"properties": {
"instance_id": {
"type": "string"
},
"recovery_target_time": {
"format": "date-time",
"type": "string"
}
},
"required": [
"instance_id"
],
"type": "object"
}
},
"required": [
"org_id",
"instance_name",
"restore"
],
"type": "object"
}