查询路由规则
更新时间:2023-02-01
描述
查询路由表或VPC下的路由规则。
请求结构
GET /v{version}/route/rule?routeTableId={routeTableId}&maker={maker}&maxkeys={maxkeys} HTTP/1.1
Host: bcc.bj.baidubce.com
Authorization: authorization string
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必选 | 参数位置 | 描述 |
---|---|---|---|---|
version | String | 是 | URL参数 | API版本号 |
routeTableId | String | 否 | Query参数 | 路由表ID,该参数和vpcId两者之间需要二选一 |
vpcId | String | 否 | Query参数 | VPC的ID,该参数和routeTableId两者之间需要二选一 |
marker | String | 否 | Query参数 | 批量获取列表的查询的起始位置,是一个由系统生成的字符串 |
maxKeys | Integer | 否 | Query参数 | 每页包含的最大数量,最大数量不超过1000,缺省值为1000 |
说明:
请求参数routeTableId和vpcId二选一。
返回头域
除公共头域,无其它特殊头域。
返回参数
参数名称 | 类型 | 描述 |
---|---|---|
marker | String | 标记查询的起始位置 |
isTruncated | boolean | true表示后面还有数据,false表示已经是最后一页 |
nextMarker | String | 获取下一页所需要传递的marker值。当isTruncated为false时,该域不出现 |
maxKeys | Integer | 每页包含的最大数量 |
routeRules | List<RouteRule> | 路由规则列表 |
请求示例
GET /v1/route/rule?routeTableId=rt-q1zg3i8mx8p6&maker=rr-dvq3cxpghw5e&maxKeys=1000 HTTP/1.1
Host: bcc.bj.baidubce.com
Authorization: bce-auth-v1/5a6f0606bf5e48f29dd132aa76aa5182/2017-06-12T11:57:26Z/1800/content-type;host;x-bce-date/fd0ba5a693691a50352cb77f4b41cd845ac1a29176398035612a4dde43502982
返回示例
HTTP/1.1 200 OK
x-bce-request-id: 6607c593-0628-4a6f-a10f-d7747312538b
Date: Mon, 12 Jun 2017 11:57:32 GMT
Content-Type: application/json;charset=UTF-8
Server: BWS
{
"nextMarker": "rr-rbn5yyz6rtn8",
"marker": "rr-y43tr5disam1",
"maxKeys": 1000,
"isTruncated": true,
"routeRules": [{
"routeTableId": "rt-q1zg3i8mx8p6",
"description": "",
"nexthopId": "vpn-snx074964j9d",
"destinationAddress": "10.0.0.1/32",
"sourceAddress": "192.168.0.0/20",
"routeRuleId": "rr-dvq3cxpghw5e",
"nexthopType": "vpn"
},
{
"routeTableId": "rt-q1zg3i8mx8p6",
"description": "",
"nexthopId": "",
"destinationAddress": "192.168.0.0/20",
"sourceAddress": "0.0.0.0/0",
"routeRuleId": "rt-2e9fi8chbxvh",
"nexthopType": "sys"
},
{
"routeTableId": "rt-q1zg3i8mx8p6",
"description": "",
"nexthopId": "",
"destinationAddress": "192.168.0.0/20",
"sourceAddress": "0.0.0.0/0",
"routeRuleId": "rr-rbn5yyz6rtn8",
"nexthopType": "sys"
}
]
}