1. 创建云服务器询价
本接口用于创建云服务器询价。
- 本接口为同步接口。
1.1. 接口说明
本接口所属服务类型为 ecs
本接口操作类型为 InquirePriceRunInstances
1.1.1. 请求路径
POST {baseUrl}/v3/ecs/InquirePriceRunInstances
1.1.2. 请求体
云服务器创建前询价请求体和创建请求体一致
请参考RunInstances
⚠️
询价请求体必须包含系统盘的信息,也就是必须包括创建云服务器参数中的rootDiskType和rootDiskSize
1.1.3. 返回内容
{
"code": 200,
"message": "询价成功",
"data": {
"cashBalance": 5714.14019,
"items": [{
"originPrice": 0.1,
"resourceType": "Ecs",
"subResourceType": "ecs.cpu.calc.4c8g"
}, {
"originPrice": 0.00097656,
"resourceType": "Eip",
"size": 10,
"subResourceType": "Flow"
}, {
"attr": ["Data"],
"originPrice": 2.0,
"resourceType": "Ebs",
"size": 20,
"subResourceType": "HDD"
}, {
"attr": ["Root"],
"originPrice": 2.0,
"resourceType": "Ebs",
"size": 20,
"subResourceType": "HDD"
}],
"originPrice": 4.1
}
}
返回内容说明
属性名 | 属性类型 | 说明 |
---|---|---|
code | Integer | 返回码。正常返回 200,异常返回500或其他业务错误码 |
message | String | 返回信息 |
data | InquiryPriceResponse | 返回询价结果 |
InquiryPriceResponse说明
属性名 | 属性类型 | 说明 |
---|---|---|
cashBalance | Decimal | 用户账户当前余额 |
originPrice | Decimal | 询价总额 |
items | InquirePriceItem | 询价明细 |
InquirePriceItem说明
属性名 | 属性类型 | 说明 |
---|---|---|
resourceType | String | 资源类型 |
subResourceType | String | 资源规格 |
size | Integer | 资源大小 |
attr | String | 资源属性 |
originPrice | BigDecimal | 资源价格 |