delete_instance
Remove a specific Tembo Cloud instance by providing the organization ID and instance ID to manage resources effectively.
Instructions
Delete an existing Tembo instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instance_id | Yes | Delete this instance id | |
org_id | Yes | Organization id of the instance to delete |
Input Schema (JSON Schema)
{
"properties": {
"instance_id": {
"description": "Delete this instance id",
"type": "string"
},
"org_id": {
"description": "Organization id of the instance to delete",
"type": "string"
}
},
"required": [
"org_id",
"instance_id"
],
"type": "object"
}