zeabur-server-catalog
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseZeabur Server Catalog
Zeabur Server Catalog
Always useto invoke Zeabur CLI. Never usenpx zeabur@latestdirectly or any other installation method. Ifzeaburis not available, install Node.js first.npx
请始终使用调用 Zeabur CLI。 切勿直接使用npx zeabur@latest或其他任何安装方式。如果没有zeabur,请先安装 Node.js。npx
Get All Available Options (JSON)
获取所有可用选项(JSON格式)
bash
npx zeabur@latest server catalog -i=falseReturns JSON with all providers, regions, and plans:
json
{
"providers": [
{
"code": "HETZNER",
"name": "Hetzner",
"regions": [
{
"id": "nbg1",
"name": "Nuremberg",
"city": "",
"country": "DE",
"continent": "",
"plans": [
{
"name": "cpx22",
"cpu": 2,
"memory": 4,
"disk": 80,
"egress": 20000,
"price": 6,
"originalPrice": 7.46,
"available": true
}
]
}
]
}
]
}Notes:
- is in USD per month (integer or float).
priceshows the provider's list price before Zeabur discount.originalPrice - is in GB (not MB).
memory - is monthly bandwidth in GB.
egress - is uppercase (e.g.
code,HETZNER), butVULTRfilter accepts lowercase.--provider
bash
npx zeabur@latest server catalog -i=false返回包含所有服务商、区域和方案的JSON数据:
json
{
"providers": [
{
"code": "HETZNER",
"name": "Hetzner",
"regions": [
{
"id": "nbg1",
"name": "Nuremberg",
"city": "",
"country": "DE",
"continent": "",
"plans": [
{
"name": "cpx22",
"cpu": 2,
"memory": 4,
"disk": 80,
"egress": 20000,
"price": 6,
"originalPrice": 7.46,
"available": true
}
]
}
]
}
]
}注意事项:
- 单位为美元/月(整数或浮点数)。
price显示服务商原价(未享受Zeabur折扣前的价格)。originalPrice - 单位为GB(非MB)。
memory - 为每月带宽,单位GB。
egress - 为大写格式(例如
code、HETZNER),但VULTR过滤器接受小写输入。--provider
Filter Options
过滤选项
| Flag | Example | Description |
|---|---|---|
| | Filter by provider code |
| | Filter by country code |
| | Minimum CPU cores |
| | Minimum memory in MB (note: JSON output uses GB) |
| | Only GPU plans |
bash
undefined| 参数 | 示例 | 说明 |
|---|---|---|
| | 按服务商代码过滤 |
| | 按国家代码过滤 |
| | 最小CPU核心数 |
| | 最小内存(单位MB,注意:JSON输出使用GB) |
| | 仅显示GPU方案 |
bash
undefinedExample: 4+ core servers in Germany
示例:德国地区4核及以上的服务器
npx zeabur@latest server catalog --country DE --min-cpu 4 -i=false
undefinednpx zeabur@latest server catalog --country DE --min-cpu 4 -i=false
undefinedUse With Server Rent
结合服务器租用功能使用
Parse the catalog JSON to extract , , and values, then use the skill to rent:
providerregionplanzeabur-server-rentbash
npx zeabur@latest server rent --provider <code> --region <id> --plan <name> -y -i=false解析目录JSON数据,提取 、 和 的值,然后使用 功能进行租用:
providerregionplanzeabur-server-rentbash
npx zeabur@latest server rent --provider <code> --region <id> --plan <name> -y -i=false