Querying the Route Associations
Function
This API is used to query route associations.
Constraints
There are some constraints:
-
Pagination query is supported. The supported query criteria include state, resource_type, and attachment_id.
-
Only sorting by a single field (id, created_at, or updated_at) is supported.
Calling Method
For details, see Calling APIs.
URI
GET /v3/{project_id}/enterprise-router/{er_id}/route-tables/{route_table_id}/associations
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID |
er_id |
Yes |
String |
Enterprise router ID |
route_table_id |
Yes |
String |
Route table ID |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
limit |
No |
Integer |
Number of records on each page. Value range: 0 to 2000 Minimum: 0 Maximum: 2000 |
marker |
No |
String |
ID of the last enterprise router on the previous page. If this parameter is left blank, the first page is queried. This parameter must be used together with limit. Minimum: 1 Maximum: 128 |
attachment_id |
No |
Array of strings |
Attachment ID |
resource_type |
No |
Array of strings |
Attachment type. |
state |
No |
Array of strings |
Status. Value options: pending, available, modifying, deleting, deleted, and failed |
sort_key |
No |
Array of strings |
Keyword for sorting. The keyword can be id, name, or state. By default, id is used. |
sort_dir |
No |
Array of strings |
Sorting order. There are two value options: asc (ascending order) and desc (descending order). The default value is asc. |
Request Parameters
None
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
associations |
Array of Association objects |
Route table associations Array Length: 0 - 2000 |
request_id |
String |
Request ID |
page_info |
PageInfo object |
Pagination query information |
Parameter |
Type |
Description |
---|---|---|
id |
String |
Unique association ID Maximum: 36 |
route_table_id |
String |
Unique ID of the route table Maximum: 36 |
attachment_id |
String |
Unique ID of the attachment Maximum: 36 |
resource_type |
String |
Attachment type. |
resource_id |
String |
Unique ID of the attachment |
state |
String |
Status. Value options: pending, available, modifying, deleting, deleted, and failed |
created_at |
String |
Creation time. It is UTC time in the format of YYYY-MM-DDTHH:MM:SS. |
updated_at |
String |
Update time. It is UTC time in the format of YYYY-MM-DDTHH:MM:SS. |
Example Requests
Querying route table associations
GET https://{erouter_endpoint}/v3/08d5a9564a704afda6039ae2babbef3c/enterprise-router/915a14a6-867b-4af7-83d1-70efceb146f5/route-tables/915a14a6-867b-4af7-83d1-70efceb146f9/associations
Example Responses
Status code: 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" }
Status Codes
Status Code |
Description |
---|---|
200 |
OK |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot