创建实例资源自动续费规则
更新时间:2024-12-23
接口描述
本接口用于创建实例资源自动续费规则。
鉴权说明
调用本文API,使用“基于安全认证AK/SK”进行签名计算鉴权,即使用安全认证中的Access Key ID 和 Secret Access Key进行鉴权,具体鉴权认证机制参考HTTP调用鉴权说明。
请求结构
POST /v2/charge?Action=CreateAutoRenewRules HTTP/1.1
Host: qianfan.baidubce.com
Authorization: authorization string
Content-Type: application/json
{
"instanceId":"unit-Re****Y",
"instanceType":"ComputingUnit",
"autoRenewTimeUnit":"Month",
"autoRenewTime":1
}
请求头域
除公共头域外,无其它特殊头域。
请求参数
- Query参数
名称 | 类型 | 必填 | 描述 |
---|---|---|---|
Action | string | 是 | 方法名称,固定值CreateAutoRenewRules |
- Body参数
名称 | 类型 | 必填 | 描述 |
---|---|---|---|
instanceId | string | 是 | 实例ID,该字段值可以通过以下任一方式获取: · 方式一,通过调用购买TPM配额接口,返回的instanceId字段获取 · 方式二,通过调用购买算力单元实例接口,返回的instanceId字段获取 |
instanceType | string | 是 | 实例类型,可选值如下: · ComputingUnit:算力单元 · TPM:TPM配额 |
autoRenewTimeUnit | string | 否 | 自动续费周期时间单位,默认值为 Month,可选值如下: · Month:月 |
autoRenewTime | int | 否 | 自动续费时长,说明: (1)单位:月 (2)取值范围[1-6],默认值为1 |
响应头域
除公共头域外,无其它特殊头域。
响应参数
名称 | 类型 | 描述 |
---|---|---|
requestId | string | 请求ID |
result | bool | 请求结果 |
请求示例
curl --location 'https://qianfan.baidubce.com/v2/charge?Action=CreateAutoRenewRules' \
--header 'Authorization: bce-auth-v1/f0ee7a1****79702c13/2023-09-19T13:42:13Z/180000/host;x-bce-date/9a8cfb8ee58a8f44a21*****16e374525543' \
--header 'x-bce-date: 2023-09-19T13:37:10Z' \
--header 'Content-Type: application/json' \
--data '{
"instanceId":"unit-Re****Y",
"instanceType":"ComputingUnit",
"autoRenewTimeUnit":"Month",
"autoRenewTime":1
}'
响应示例
{
"requestId":"1bef3f87-c5b2-4419-936b-50f9884f10d4",
"result":true
}
错误码
若请求错误,服务器将返回的JSON文本包含以下参数:
名称 | 描述 |
---|---|
requestId | 请求ID |
code | 错误码 |
message | 错误描述信息,帮助理解和解决发生的错误 |
例如错误返回:
{
"requestId":"1bef3f87-xxx-50f9884f10d4",
"code":"AccessDenied",
"message":"Access denied."
}
更多其他错误码,也可以查看错误码说明。