1. 创建容器实例询价
本接口用于创建容器实例询价。
- 本接口为同步接口。
1.1. 接口说明
本接口所属服务类型为 ackcs
本接口操作类型为 InquiryPriceCreateServices
1.1.1. 请求路径
POST {baseUrl}/v3/ackcs/InquiryPriceCreateServices
1.1.2. 请求体
容器实例创建前询价请求体和创建请求体一致
1.1.3. 返回内容
{
"code": 200,
"message": "询价成功",
"data": {
"cashBalance": 5673.10550,
"originPrice": 50.0,
"items": [{
"resourceType": "ACKCS",
"subResourceType": "rtx3090.epyc7402.xlarge",
"originPrice": 50.0
}]
}
}
返回内容说明
属性名 | 属性类型 | 说明 |
---|---|---|
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 | 资源价格 |