查询路由关联列表
功能介绍
查询路由关联列表。
接口约束
-
支持分页查询, 支持过滤查询:state, resource_type, attachment_id。
-
支持单字段排序,排序字段有[id,created_at,updated_at],不支持多字段排序。
调用方法
请参见如何调用API。
URI
GET /v3/{project_id}/enterprise-router/{er_id}/route-tables/{route_table_id}/associations
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
project_id |
是 |
String |
项目ID |
er_id |
是 |
String |
企业路由器实例ID |
route_table_id |
是 |
String |
路由表ID |
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
limit |
否 |
Integer |
每页返回的个数。 取值范围:0~2000。 最小值:0 最大值:2000 |
marker |
否 |
String |
查询的页码id,为空时为查询第一页。 使用说明:必须与limit一起使用。 最小长度:1 最大长度:128 |
attachment_id |
否 |
Array |
连接ID |
resource_type |
否 |
Array |
|
state |
否 |
Array |
状态:pending|available|modifying|deleting|deleted|failed |
sort_key |
否 |
Array |
按关键字排序,默认按照id排序,可选值:id|name|state |
sort_dir |
否 |
Array |
返回结果按照升序或降序排列,默认为asc,降序为desc |
请求参数
无
响应参数
状态码: 200
参数 |
参数类型 |
描述 |
---|---|---|
associations |
Array of Association objects |
路由表关联列表 数组长度:0 - 2000 |
request_id |
String |
请求ID |
page_info |
PageInfo object |
分页查询的信息 |
参数 |
参数类型 |
描述 |
---|---|---|
id |
String |
关联唯一标识 最大长度:36 |
route_table_id |
String |
路由表唯一标识 最大长度:36 |
attachment_id |
String |
连接唯一标识 最大长度:36 |
resource_type |
String |
|
resource_id |
String |
连接的资源唯一标识 |
state |
String |
状态:pending|available|modifying|deleting|deleted|failed |
created_at |
String |
资源创建时间 采用UTC时间 格式:YYYY-MM-DDTHH:mm:ss.sssZ |
updated_at |
String |
资源更新时间 采用UTC时间 格式:YYYY-MM-DDTHH:mm:ss.sssZ |
route_policy |
ExportRoutePolicy object |
出方向路由策略 |
请求示例
查询路由表的关联信息
GET https://{erouter_endpoint}/v3/08d5a9564a704afda6039ae2babbef3c/enterprise-router/915a14a6-867b-4af7-83d1-70efceb146f5/route-tables/915a14a6-867b-4af7-83d1-70efceb146f9/associations
响应示例
状态码: 200
OK
{ "associations" : [ { "id" : "915a14a6-867b-4af7-83d1-70efceb146f9", "route_table_id" : "91c013e2-d65a-474e-9177-c3e1799ca726", "attachment_id" : "a5b7d209-dc02-4c46-a51f-805eadd3de64", "resource_type" : "vpc", "resource_id" : "4e5fe97c-82bc-432e-87d8-06d7e157dffa", "state" : "pending", "created_at" : "2020-03-11T15:13:31", "updated_at" : "2020-03-11T15:13:31", "route_policy" : { "export_policy_id" : "" } } ], "page_info" : { "next_marker" : "1", "current_count" : 1 }, "request_id" : "915a14a6-867b-4af7-83d1-70efceb146f9" }
状态码
状态码 |
描述 |
---|---|
200 |
OK |
错误码
请参见错误码。