获取BEC虚机服务详情
更新时间:2022-05-17
接口描述
本接口用于获取BEC虚机服务详情。
请求结构
GET /v2/vm/service/{serviceId} HTTP/1.1
Host: bec.baidubce.com
Authorization: authorization string
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 |
---|---|---|---|---|
serviceId | 虚机服务ID | path | 是 | string |
响应头域
除公共头域外,无其它特殊头域。
响应参数
参数名称 | 参数说明 | 类型 |
---|---|---|
service | 虚机服务 | BecVmServiceModel |
createTime | 创建时间 | string |
deployInstances | 部署区域列表 | List<DeployInstance> |
purchaseCount | 购买数量 | integer |
regionId | 节点ID | string |
subnetId | 子网ID | string |
vpcId | VPC ID | string |
id | 服务ID | string |
name | 服务名称 | string |
networkCapacityInMbps | 公网带宽,单位为Mbps | integer |
runningInstanceCount | 运行实例数 | integer |
status | 服务状态 | string |
totalCpuCount | CPU数量 | integer |
totalDataDiskSizeInGb | 数据盘容量,单位GB | integer |
totalGpuCount | GPU数量 | integer |
totalInstanceCount | 总实例数 | integer |
totalMemoryCapacityInGB | 内存容量,单位为GB | integer |
totalRootDiskSizeInGb | 系统盘容量,单位GB | integer |
错误码
请参照错误返回章节的内容。
请求示例
GET /v2/vm/service/s-4a3eoswh HTTP/1.1
Host: bec.baidubce.com
Authorization: bce-auth-v1/f81d3b34e48048fbb2634dc7882d7e21/2015-08-11T04:17:29Z/3600/host/74c506f68c65e26c633bfa104c863fffac5190fdec1ec24b7c03eb5d67d2e1de
响应示例
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Date: Wed, 08 Jul 2015 03:28:11 GMT
x-bce-request-id: d8752367-38e8-45e4-b4c7-e53be3137ce5
Server: BWS
{
"service": {
"id": "s-4a3eoswh",
"name": "test",
"status": "NORMAL",
"totalCpuCount": 3,
"totalGpuCount": 0,
"totalMemoryCapacityInGB": 8,
"totalRootDiskSizeInGb": 130,
"totalDataDiskSizeInGb": 130,
"runningInstanceCount": 3,
"totalInstanceCount": 3,
"createTime": "2022-02-21T10:48:09Z",
"deployInstances": [
{
"regionId": "cn-hangzhou-cm",
"purchaseCount": 3
}
],
"networkCapacityInMbps": 0
}
}