1. 创建云盘询价
本接口用于创建云盘询价。
- 本接口为同步接口。
1.1. 接口说明
本接口所属服务类型为 ebs
本接口操作类型为 InquirePriceCreateDisks
1.1.1. 请求路径
POST {baseUrl}/v3/ebs/InquirePriceCreateDisks
1.1.2. 请求体
云盘创建前询价请求体和创建请求体一致
请参考CreateDisks
1.1.3. 返回内容
{
"code": 200,
"data": {
"cashBalance": 5714.14019,
"items": [{
"originPrice": 3.0,
"resourceType": "Ebs",
"size": 30,
"subResourceType": "HDD"
}],
"originPrice": 3.0
},
"message": "询价成功"
}
返回内容说明
属性名 | 属性类型 | 说明 |
---|---|---|
code | Integer | 返回码。正常返回 200,异常返回500或其他业务错误码 |
message | String | 返回信息。 |
data | InquiryPriceResponse | 询价结果 |
InquiryPriceResponse说明
属性名 | 属性类型 | 说明 |
---|---|---|
cashBalance | Decimal | 用户账户当前余额 |
originPrice | Decimal | 询价总额 |
items | InquirePriceItem | 询价明细 |
InquirePriceItem说明
属性名 | 属性类型 | 说明 |
---|---|---|
resourceType | String | 资源类型 |
subResourceType | String | 资源规格 |
size | Integer | 资源大小 |
originPrice | BigDecimal | 资源价格 |