search_bare_metal_plans
Find bare metal server plans based on CPU cores, RAM, storage, and budget requirements to match specific infrastructure needs.
Instructions
Search bare metal plans by specifications.
Args: min_vcpus: Minimum number of vCPUs min_ram: Minimum RAM in GB min_disk: Minimum disk space in GB max_monthly_cost: Maximum monthly cost in USD
Returns: List of plans matching the criteria
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_monthly_cost | No | ||
min_disk | No | ||
min_ram | No | ||
min_vcpus | No |
Input Schema (JSON Schema)
{
"properties": {
"max_monthly_cost": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Max Monthly Cost"
},
"min_disk": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Min Disk"
},
"min_ram": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Min Ram"
},
"min_vcpus": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Min Vcpus"
}
},
"type": "object"
}