create_instance
Generate a new Tembo instance in the cloud by specifying organization ID, instance name, stack type, CPU, memory, storage, and environment to deploy optimized server resources.
Instructions
Create a new Tembo instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cpu | Yes | ||
environment | Yes | ||
instance_name | Yes | ||
memory | Yes | ||
org_id | Yes | Organization ID that owns the Tembo instance | |
replicas | No | ||
spot | No | ||
stack_type | Yes | ||
storage | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cpu": {
"enum": [
"0.25",
"0.5",
"1",
"2",
"4",
"6",
"8",
"12",
"16",
"32"
],
"type": "string"
},
"environment": {
"enum": [
"dev",
"test",
"prod"
],
"type": "string"
},
"instance_name": {
"type": "string"
},
"memory": {
"enum": [
"512Mi",
"1Gi",
"2Gi",
"4Gi",
"8Gi",
"12Gi",
"16Gi",
"24Gi",
"32Gi",
"64Gi"
],
"type": "string"
},
"org_id": {
"description": "Organization ID that owns the Tembo instance",
"type": "string"
},
"replicas": {
"type": "integer"
},
"spot": {
"type": "boolean"
},
"stack_type": {
"enum": [
"Analytics",
"Geospatial",
"MachineLearning",
"MessageQueue",
"MongoAlternative",
"OLTP",
"ParadeDB",
"Standard",
"Timeseries",
"VectorDB"
],
"type": "string"
},
"storage": {
"enum": [
"10Gi",
"50Gi",
"100Gi",
"200Gi",
"300Gi",
"400Gi",
"500Gi",
"1Ti",
"1.5Ti",
"2Ti"
],
"type": "string"
}
},
"required": [
"org_id",
"instance_name",
"stack_type",
"cpu",
"memory",
"storage",
"environment"
],
"type": "object"
}