获取物理机价格-GetPHostPrice

获取物理机价格列表

Request Parameters

Parameter nameTypeDescriptionRequired
Regionstring数据中心, 参见 数据中心列表Yes
Zonestring可用区,参见 可用区列表No
ProjectIdstring组织IDNo
Countint购买数量,范围[1-5]Yes
Typestring默认为:DB(数据库型)No
ChargeTypestring计费模式,枚举值为: Year/Month/Trial/DynamicYes
Quantityint购买时长,1-10个月或1-10年Yes

Response Elements

Parameter nameTypeDescriptionRequired
RetCodeint操作返回码Yes
Actionstring操作名称Yes
PriceSetarray价格列表 见 PHostPriceSetNo

PHostPriceSet

Parameter nameTypeDescriptionRequired
ChargeTypestringYear/Month/Trial/DynamicNo
Pricefloat价格, 单位:元, 保留小数点后两位有效数字No

Request Example

http://api.ucloud.cn/?Action=GetPHostPrice
&ProjectId=562
&Region=cn-bj2
&Zone=cn-bj2-04
&Count=1
&Type=DB
&ChargeType=Month
&Quantity=1

Response Example

{
    "Action": "GetPHostPriceResponse",
    "PriceSet": [
        {
            "Price": 4000,
            "ChargeType": "Month"
        }
    ],
    "RetCode": 0
}