接口功能介绍
创建路由表规则。
接口约束
无。
URI
POST /v4/vpc/route-table/create-rules
请求参数
请求体body参数
参数 | 参数类型 | 是否必填 | 示例 | 说明 |
---|---|---|---|---|
clientToken | String | 是 | 123e4567-e89b-12d3-a456-426655440000 | 保证请求幂等性。从您的客户端生成一个参数值,确保不同请求间该参数值唯一。ClientToken只支持ASCII字符,且不能超过64个字符 |
regionID | String | 是 | 区域 id | |
routeTableID | String | 是 | rtb-xxxxx | 路由表 id |
routeRules | Object of Array | 是 | 参考下表格式 | 路由表规则列表 |
表 routeRules
参数 | 参数类型 | 是否必填 | 示例 | 说明 |
---|---|---|---|---|
nextHopID | String | 是 | port-xxxx | 下一跳设备 id |
nextHopType | String | 是 | havip | vpcpeering(对等连接) / havip(虚拟IP) / bm(弹性裸金属服务器)/ vm(云主机) / natgw(NAT网关)/ igw6(IPv6网关) / dc(专线网关) / ticc(云间高速) / vpngw(VPN网关) / enic(弹性网卡) |
destination | String | 是 | 192.168.0.1/32 | 无类别域间路由 |
ipVersion | Int | 是 | 4 | 4 标识 ipv4, 6 标识 ipv6 |
description | String | 是 | test | 规则描述 |
响应参数
参数 | 参数类型 | 示例 | 说明 |
---|---|---|---|
statusCode | Integer | 800 | 返回状态码(800为成功,900为失败) |
descritption | String | statusCode为900时的错误信息,中文 | |
returnObj | String of Array | ['route-rule-xxxx'] | 路由规则 id 列表 |
errCode | String | SUCCESS | 错误描述 |
message | String | success | 错误信息的英文描述 |
请求示例
POST /v4/vpc/route-table/create-rules
请求体body
{
"clientToken": "xxxxx"
"regionID": "81f7728662dd11ec810800155d307d5b",
"routeTableID": "rtb-xxxxxx",
"routeRules": [{
"nextHopID": "Xxx",
"nextHopType": "havip",
"ipVersion": 4,
"description": "xxxx",
"destination": "192.168.0.1/32"
}]
}
响应示例
{
"statusCode": 800,
"errorCode": "SUCCESS",
"message": "success",
"description": "",
"returnObj": [
"route-rule-xxx"
]
}
状态码
状态码 | 描述 |
---|---|
200 | 表示请求成功。 |
错误码
请参考 错误码说明。