查询工作空间详情
请求方法
GET
请求地址
/api/v1/space/detail
请求参数(query)
参数名 | 参数类型 | 参数释义 |
---|---|---|
space_id | Number | 必传,空间ID |
返回数据
返回数据
参数名 | 参数类型 | 参数释义 |
---|---|---|
code | Number | 错误码,0为正常 |
msg | String | 错误描述 |
data | Data | 数据Object |
Data
参数名 | 参数类型 | 参数释义 |
---|---|---|
space | Space | 空间详情 |
Space
参数名 | 参数类型 | 参数释义 |
---|---|---|
id | Number | 空间 ID |
name | String | 空间名称 |
sku_id | Number | SKU ID |
region | String | 可用区唯一标识 |
status | String | 状态 |
reason | String | 状态原因 |
image | String | 镜像名 |
billing_mode | String | 计费模式 |
auto_renew | Boolean | 是否自动续费(该字段只有计费模式为包周、包月时才有效,对按量计费无效) |
sys_endpoints | []Endpoints | 系统内置访问入口 |
custom_endpoints | []Endpoints | 自定义访问入口 |
custom_envs | []Env | 自定义环境变量 |
command | []String | 自定义启动命令 |
auto_stop_time | String | 自动停止时间。格式为北京时间 YYYY-MM-DD HH:mm:ss |
start_time | String | 开始时间 |
end_time | String | 结束时间 |
fee | String | 已产生费用(元) |
create_time | String | 创建时间 |
Endpoints
参数名 | 参数类型 | 参数释义 |
---|---|---|
name | String | 名称 |
port | Number | 端口号 |
protocal | String | 协议 |
url | String | 访问地址 |
Env
参数名 | 参数类型 | 参数释义 |
---|---|---|
name | String | 变量名 |
value | String | 值 |
请求示例
/api/v1/space/detail?space_id=1
返回示例
{
"code": 0,
"msg": "OK",
"data": {
"space": {
"id": 1,
"name": "space-tk1m5rcij6",
"sku_id": 40,
"region": "t1",
"status": "Stopped",
"reason": "",
"image": "base/pytorch:2.4.0-cuda12.4-cudnn9",
"billing_mode": "ByUsage",
"auto_renew": false,
"sys_endpoints": [
{
"name": "main",
"port": 7860,
"protocal": "TCP",
"url": "https://xx.lanrui.co"
},
{
"name": "jupyter",
"port": 8888,
"protocal": "TCP",
"url": "https://xx.lanrui.co"
},
{
"name": "tensorboard",
"port": 6006,
"protocal": "TCP",
"url": "https://xx.lanrui.co"
},
{
"name": "filebrowser",
"port": 8887,
"protocal": "TCP",
"url": "https://xx.lanrui.co"
},
{
"name": "vscode",
"port": 8889,
"protocal": "TCP",
"url": "https://xx.lanrui.co"
}
],
"custom_endpoints": [
{
"name": "",
"port": 8800,
"protocal": "TCP",
"url": "https://xx.lanrui.co"
}
],
"custom_envs": null,
"command": null,
"auto_stop_time": "",
"start_time": "2024-08-23 14:52:31",
"end_time": "2024-08-26 10:35:12",
"fee": "135.40",
"create_time": "2024-08-23 14:38:49"
}
}
}