查询TGW路由条目
更新时间:2022-08-22
描述
查询指定TGW的路由条目。
请求结构
GET /v{version}/csn/{csnId}/tgw/{tgwId}/rule?marker={marker}&maxKeys={maxKeys} HTTP/1.1
Host: csn.baidubce.com
Authorization: authorization string
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必选 | 参数位置 | 描述 |
---|---|---|---|---|
version | String | 是 | URL参数 | API版本号,当前取值1 |
csnId | String | 是 | URL参数 | 云智能网的ID |
tgwId | String | 是 | URL参数 | TGW的ID |
marker | String | 否 | Query参数 | 批量获取列表的查询的起始位置,是一个由系统生成的字符串 |
maxKeys | int | 否 | Query参数 | 每页包含的最大数量,最大数量不超过1000,缺省值为1000 |
返回头域
除公共头域外,无其他特殊头域。
返回参数
参数名称 | 类型 | 描述 |
---|---|---|
tgwRtRules | List <TgwRtRule> | TGW路由条目列表 |
marker | String | 标记查询的起始位置,若结果列表为空,此项不存在 |
isTruncated | boolean | true表示后面还有数据,false表示已经是最后一页 |
nextMarker | String | 获取下一页所需要传递的marker值。当isTruncated为false时,该域不出现 |
maxKeys | int | 每页包含的最大数量 |
请求示例
GET /v1/csn/csn-c5s0isempeiscgyc/tgw/tgw-2vz7tre06hxei9rj/rule?marker=tgw-qhxx0kmm0t86vmpk&maxKeys=1 HTTP/1.1
Host: csn.baidubce.com
Authorization: bce-auth-v1/5e5a8adf11ae475ba95f1bd38228b44f/2016-04-10T08:26:52Z/1800/host;x-bce-date/ec3c0069f9abb1e247773a62707224124b2b31b4c171133677f9042969791f02
返回示例
HTTP/1.1 200 OK
x-bce-request-id: 1214cca7-4ad5-451d-9215-71cb844c0a50
Date: Thu, 16 Mar 2017 06:29:48 GMT
Content-Type: application/json;charset=UTF-8
Server: BWS
{
"nextMarker": "tgw-jkxx0kmm0t86vkfk",
"marker": "tgw-qhxx0kmm0t86vmpk",
"maxKeys": 1,
"isTruncated": true,
"tgwRtRules": [
{
"ruleId": "cnrr-1db26d78-1781",
"routeType": "custom",
"csnId": "csn-m3dwj6tfysnmxmcy",
"csnRtId": "csnRt-w3x16fk8nr5kpxkx",
"fromAttachId": "tgwAttach-wg3z1z5baq3ry1a6",
"status": "conflicted",
"destAddress": "192.168.0.0/20",
"nextHopId": "vpc-fh43ygs8yp0d",
"nextHopName": "默认私有网络",
"nextHopRegion": "su",
"nextHopType": "vpc",
"asPath": "",
"community": "",
"blackHole": false
}
]
}